diff --git a/public/bike-sharing-london-dashboard-nodejs-react/README.md b/public/bike-sharing-london-dashboard-nodejs-react/README.md new file mode 100644 index 0000000000000000000000000000000000000000..cd076880b9d50e0c5dc1ec027a0e1c296d6636ef --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/README.md @@ -0,0 +1,36 @@ +# Visualization of bike sharing data in London + + + +## Project structure: +| path | explanation | +| --------------- | ----------- | +| `app/backend` | A node.js server, storing bike trip and bike point documents and providing dynamic statistics about those at several endpoints | +| `app/frontend` | A React.js Web Frontend, visualizing statistics provided by backend in diagrams and map view | +| `data` | Information where to download the source data and preprocessing to prepare data for storage in MongoDB | + +## Prerequisites +- node and npm must be installed +- docker and docker-compose must be installed + +## Run +1. Go into `app/backend/database` and run `docker-compose up -d` to start the database (available on port 27017) +2. Go into `app/backend` and run `npm start` to start the backend (available on port 8081) +3. Go into `app/frontend` and run `npm start` to start the frontend (available on port 3000) + +Please note: At first startup, the server will store bike trip documents from a sample json file into the database. This might take a few seconds. + +## More bike trip data +The sample bike trips (`app/backend/src/shared/data/bike-sharing-trip-data-4-january-28-february-reduced.json`) range from 4. January to 28. February, with many trips removed to reduce the file size. If you want to use more bike trips of a larger time range, follow these steps: + +1. Download the bike trip CSV-files [for 2015](https://cycling.data.tfl.gov.uk/usage-stats/2015TripDatazip.zip) and [for 2016](https://cycling.data.tfl.gov.uk/usage-stats/2016TripDataZip.zip). More csv files are available [here](https://cycling.data.tfl.gov.uk/), in the folder 'usage-stats'. +2. Go into `data/trips/preprocessing` and follow instructions in README there. It will result in a single json file. +3. Copy the json of step 2 into `app/backend/src/shared/data` +4. Open the file `app/backend/src/Server.ts` and adjust the path in 'createReadStream(...)' to match your newly created json file. +5. If you've used the server in the past, delete the folder `app/backend/database/db`. +6. Start the database and then the server, it will load all the documents from your new json into the database. In subsequent runs it won't do that again, only if you clear your database again. + +## Bike point data +We don't use live data of bike points in our visualizations, so we just downloaded all bike point documents once and added them to the repository (`app/backend/src/shared/data/bike-point-data.json`), to be used by the server. + +If you want, you can download the most up to date bike-point documents [here](https://api.tfl.gov.uk/BikePoint/) and use those instead. diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/.gitignore b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..79d1997b3137602bb5065c1e08c9cecd99a044ed --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/.gitignore @@ -0,0 +1,5 @@ +node_modules +dist +jet-logger.log +database/db +./src/shared/data/bike-sharing-trip-data.json \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/README.md b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/README.md new file mode 100644 index 0000000000000000000000000000000000000000..6c93ed8c5c0451d3fb06573df790a97e6082dad5 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/README.md @@ -0,0 +1,30 @@ +# Server providing data for dashboard frontend + +## Start server locally +Before you start the backend itself, go into the database directory and execute `docker-compose up -d`. On first startup of the app, data will be written to this database. + +Run `npm install` to download all dependencies. + +Run `npm start` to start the server locally. It will listen on port 8081. + +Please note: The script 'start:prod' in the package.json is only for production environment. It will also build and serve the frontend. + +## Endpoints +The endpoints of our api are defined in the folder `src/routes`. + +Please note: All query parameters 'from' and 'to' are considered unix timestamps. + +Endpoint to get all bike points: +- `/api/bike-points/all` + +Endpoint for landing page: +- `/api/bike-trip-durations` +- query params: from, to, classSize (in seconds) + +Endpoint for bike point details page: +- `/api/bike-point-details/:bikePointId` +- query params: from, to, selectedDay (0=Monday to 6=Sunday) + +Endpoint for map page: +- `/api/bike-points-activity` +- query params: from, to \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/build.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/build.ts new file mode 100644 index 0000000000000000000000000000000000000000..c8b332bc1cabd057ed0baaf11af9cf141153e666 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/build.ts @@ -0,0 +1,70 @@ +/** + * Remove old files, build frontend and copy files to dist and build backend and copy files to dist. + */ + +import fs from 'fs-extra'; +import Logger from 'jet-logger'; +import childProcess from 'child_process'; + +// Setup logger +const logger = new Logger(); +logger.timestamp = false; + + +(async () => { + try { + // Remove current build + await remove('./dist/') + + // build frontend and copy the build files to dist folder in order to serve them from there + await exec('npm run build', './../frontend/') + await move('./../frontend/build', './dist/frontend-build') + + // Copy production env file + await copy('./src/pre-start/env/production.env', './dist/pre-start/env/production.env') + // Copy back-end files + await exec('tsc --build tsconfig.prod.json', './') + } catch (err) { + logger.err(err) + } +})() + + +function remove(loc: string): Promise<void> { + return new Promise((res, rej) => { + return fs.remove(loc, (err) => { + return (!!err ? rej(err) : res()) + }) + }) +} + + +function copy(src: string, dest: string): Promise<void> { + return new Promise((res, rej) => { + return fs.copy(src, dest, (err) => { + return (!!err ? rej(err) : res()) + }) + }) +} + +function move(src: string, dest: string): Promise<void> { + return new Promise((res, rej) => { + return fs.move(src, dest, (err) => { + return (!!err ? rej(err) : res()) + }) + }) +} + +function exec(cmd: string, loc: string): Promise<void> { + return new Promise((res, rej) => { + return childProcess.exec(cmd, {cwd: loc}, (err, stdout, stderr) => { + if (!!stdout) { + logger.info(stdout) + } + if (!!stderr) { + logger.warn(stderr) + } + return (!!err ? rej(err) : res()) + }) + }) +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/database/docker-compose.yml b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/database/docker-compose.yml new file mode 100644 index 0000000000000000000000000000000000000000..f0d4e9a38b30bbdffd541db393e5f4a9991d9f0b --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/database/docker-compose.yml @@ -0,0 +1,11 @@ +version: '3' + +services: + mongodb: + image: mongo:4.4.3 + hostname: mongodb + container_name: bikesharing-data-mongodb + ports: + - "27017:27017" + volumes: + - ./db:/data/db \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/package-lock.json b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..38b6e92654b2952e13681436854ea12b058e80c9 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/package-lock.json @@ -0,0 +1,3054 @@ +{ + "name": "bike-sharing-data-server", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", + "dev": true + }, + "@babel/highlight": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + } + } + }, + "@eslint/eslintrc": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz", + "integrity": "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", + "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.4", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", + "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", + "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.4", + "fastq": "^1.6.0" + } + }, + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "dev": true + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dev": true, + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "@types/body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==", + "dev": true, + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/bson": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/bson/-/bson-4.0.3.tgz", + "integrity": "sha512-mVRvYnTOZJz3ccpxhr3wgxVmSeiYinW+zlzQz3SXWaJmD1DuL05Jeq7nKw3SnbKmbleW5qrLG5vdyWe/A9sXhw==", + "requires": { + "@types/node": "*" + } + }, + "@types/command-line-args": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@types/command-line-args/-/command-line-args-5.0.0.tgz", + "integrity": "sha512-4eOPXyn5DmP64MCMF8ePDvdlvlzt2a+F8ZaVjqmh2yFCpGjc1kI3kGnCFYX9SCsGTjQcWIyVZ86IHCEyjy/MNg==", + "dev": true + }, + "@types/connect": { + "version": "3.4.34", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.34.tgz", + "integrity": "sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/cookie-parser": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@types/cookie-parser/-/cookie-parser-1.4.2.tgz", + "integrity": "sha512-uwcY8m6SDQqciHsqcKDGbo10GdasYsPCYkH3hVegj9qAah6pX5HivOnOuI3WYmyQMnOATV39zv/Ybs0bC/6iVg==", + "dev": true, + "requires": { + "@types/express": "*" + } + }, + "@types/cors": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.9.tgz", + "integrity": "sha512-zurD1ibz21BRlAOIKP8yhrxlqKx6L9VCwkB5kMiP6nZAhoF5MvC7qS1qPA7nRcr1GJolfkQC7/EAL4hdYejLtg==", + "dev": true + }, + "@types/express": { + "version": "4.17.9", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.9.tgz", + "integrity": "sha512-SDzEIZInC4sivGIFY4Sz1GG6J9UObPwCInYJjko2jzOf/Imx/dlpume6Xxwj1ORL82tBbmN4cPDIDkLbWHk9hw==", + "dev": true, + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "*", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.17.tgz", + "integrity": "sha512-YYlVaCni5dnHc+bLZfY908IG1+x5xuibKZMGv8srKkvtul3wUuanYvpIj9GXXoWkQbaAdR+kgX46IETKUALWNQ==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "@types/find": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@types/find/-/find-0.2.1.tgz", + "integrity": "sha512-qUrCBlWoo9ij6ZEMx8G2WEjkdpofFks37/eZSDce7e0BY8lCYS2u7dVAoBy6AKRGX8z/ukllrUAyQ8h+/zlW9w==", + "dev": true + }, + "@types/fs-extra": { + "version": "9.0.6", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.6.tgz", + "integrity": "sha512-ecNRHw4clCkowNOBJH1e77nvbPxHYnWIXMv1IAoG/9+MYGkgoyr3Ppxr7XYFNL41V422EDhyV4/4SSK8L2mlig==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/json-schema": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz", + "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==", + "dev": true + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", + "dev": true + }, + "@types/jsonfile": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@types/jsonfile/-/jsonfile-6.0.0.tgz", + "integrity": "sha512-mUHbRieyluPtL3c466K7oUGua1lAVlz45PV4U3bHs5CXdBlDIeXJI5xQXa6IZYnrgmcJzJp/CiTZB4zfShAi6w==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/mime": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-2.0.3.tgz", + "integrity": "sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q==", + "dev": true + }, + "@types/mongodb": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-3.6.3.tgz", + "integrity": "sha512-6YNqGP1hk5bjUFaim+QoFFuI61WjHiHE1BNeB41TA00Xd2K7zG4lcWyLLq/XtIp36uMavvS5hoAUJ+1u/GcX2Q==", + "requires": { + "@types/bson": "*", + "@types/node": "*" + } + }, + "@types/morgan": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@types/morgan/-/morgan-1.9.2.tgz", + "integrity": "sha512-edtGMEdit146JwwIeyQeHHg9yID4WSolQPxpEorHmN3KuytuCHyn2ELNr5Uxy8SerniFbbkmgKMrGM933am5BQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/node": { + "version": "14.14.17", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.17.tgz", + "integrity": "sha512-G0lD1/7qD60TJ/mZmhog76k7NcpLWkPVGgzkRy3CTlnFu4LUQh5v2Wa661z6vnXmD8EQrnALUyf0VRtrACYztw==" + }, + "@types/qs": { + "version": "6.9.5", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.5.tgz", + "integrity": "sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ==", + "dev": true + }, + "@types/range-parser": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz", + "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==", + "dev": true + }, + "@types/serve-static": { + "version": "1.13.8", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.8.tgz", + "integrity": "sha512-MoJhSQreaVoL+/hurAZzIm8wafFR6ajiTM1m4A0kv6AGeVBl4r4pOV8bGFrjjq1sGxDTnCoF8i22o0/aE5XCyA==", + "dev": true, + "requires": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "@types/stream-chain": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/stream-chain/-/stream-chain-2.0.0.tgz", + "integrity": "sha512-O3IRJcZi4YddlS8jgasH87l+rdNmad9uPAMmMZCfRVhumbWMX6lkBWnIqr9kokO5sx8LHp8peQ1ELhMZHbR0Gg==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/stream-json": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@types/stream-json/-/stream-json-1.5.1.tgz", + "integrity": "sha512-Blg6GJbKVEB1J/y/2Tv+WrYiMzPTIqyuZ+zWDJtAF8Mo8A2XQh/lkSX4EYiM+qtS+GY8ThdGi6gGA9h4sjvL+g==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/stream-chain": "*" + } + }, + "@typescript-eslint/eslint-plugin": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.11.1.tgz", + "integrity": "sha512-fABclAX2QIEDmTMk6Yd7Muv1CzFLwWM4505nETzRHpP3br6jfahD9UUJkhnJ/g2m7lwfz8IlswcwGGPGiq9exw==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "4.11.1", + "@typescript-eslint/scope-manager": "4.11.1", + "debug": "^4.1.1", + "functional-red-black-tree": "^1.0.1", + "regexpp": "^3.0.0", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "@typescript-eslint/experimental-utils": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.11.1.tgz", + "integrity": "sha512-mAlWowT4A6h0TC9F+J5pdbEhjNiEMO+kqPKQ4sc3fVieKL71dEqfkKgtcFVSX3cjSBwYwhImaQ/mXQF0oaI38g==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/scope-manager": "4.11.1", + "@typescript-eslint/types": "4.11.1", + "@typescript-eslint/typescript-estree": "4.11.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.11.1.tgz", + "integrity": "sha512-BJ3jwPQu1jeynJ5BrjLuGfK/UJu6uwHxJ/di7sanqmUmxzmyIcd3vz58PMR7wpi8k3iWq2Q11KMYgZbUpRoIPw==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "4.11.1", + "@typescript-eslint/types": "4.11.1", + "@typescript-eslint/typescript-estree": "4.11.1", + "debug": "^4.1.1" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.11.1.tgz", + "integrity": "sha512-Al2P394dx+kXCl61fhrrZ1FTI7qsRDIUiVSuN6rTwss6lUn8uVO2+nnF4AvO0ug8vMsy3ShkbxLu/uWZdTtJMQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.11.1", + "@typescript-eslint/visitor-keys": "4.11.1" + } + }, + "@typescript-eslint/types": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.11.1.tgz", + "integrity": "sha512-5kvd38wZpqGY4yP/6W3qhYX6Hz0NwUbijVsX2rxczpY6OXaMxh0+5E5uLJKVFwaBM7PJe1wnMym85NfKYIh6CA==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.11.1.tgz", + "integrity": "sha512-tC7MKZIMRTYxQhrVAFoJq/DlRwv1bnqA4/S2r3+HuHibqvbrPcyf858lNzU7bFmy4mLeIHFYr34ar/1KumwyRw==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.11.1", + "@typescript-eslint/visitor-keys": "4.11.1", + "debug": "^4.1.1", + "globby": "^11.0.1", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.11.1.tgz", + "integrity": "sha512-IrlBhD9bm4bdYcS8xpWarazkKXlE7iYb1HzRuyBP114mIaj5DJPo11Us1HgH60dTt41TCZXMaTCAW+OILIYPOg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.11.1", + "eslint-visitor-keys": "^2.0.0" + } + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", + "dev": true + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-align": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz", + "integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==", + "dev": true, + "requires": { + "string-width": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-back": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", + "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==" + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "binary-extensions": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz", + "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==", + "dev": true + }, + "bl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/bl/-/bl-2.2.1.tgz", + "integrity": "sha512-6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g==", + "requires": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + } + }, + "boxen": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", + "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", + "dev": true, + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^5.3.1", + "chalk": "^3.0.0", + "cli-boxes": "^2.2.0", + "string-width": "^4.1.0", + "term-size": "^2.1.0", + "type-fest": "^0.8.1", + "widest-line": "^3.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "bson": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/bson/-/bson-1.1.5.tgz", + "integrity": "sha512-kDuEzldR21lHciPQAIulLs1LZlCXdLziXI6Mb/TDkwXhb//UORJNPXgcRs2CuO4H0DcMkpfT3/ySsP3unoZjBg==" + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dev": true, + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true + } + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "chokidar": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", + "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.1.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + } + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" + }, + "command-line-args": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.1.1.tgz", + "integrity": "sha512-hL/eG8lrll1Qy1ezvkant+trihbGnaKaeEjj6Scyr3DN+RC7iQ5Rz84IeLERfAWDGo0HBSNAakczwgCilDXnWg==", + "requires": { + "array-back": "^3.0.1", + "find-replace": "^3.0.0", + "lodash.camelcase": "^4.3.0", + "typical": "^4.0.0" + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + } + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + }, + "cookie-parser": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.5.tgz", + "integrity": "sha512-f13bPUj/gG/5mDr+xLmSxxDsB9DQiTIfhJS/sqjrmfAWiAN+x2O4i/XguTL9yDZ+/IFDanJ+5x7hC4CXT9Tdzw==", + "requires": { + "cookie": "0.4.0", + "cookie-signature": "1.0.6" + } + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "requires": { + "object-assign": "^4", + "vary": "^1" + } + }, + "create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true + }, + "denque": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-1.5.0.tgz", + "integrity": "sha512-CYiCSgIF1p6EUByQPlGkKnP1M9g0ZV3qMIrqMqZqdwazygIA/YP2vrbcyl1h/WppKJTdl1F85cXIle+394iDAQ==" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, + "dotenv": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "dev": true + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.16.0.tgz", + "integrity": "sha512-iVWPS785RuDA4dWuhhgXTNrGxHHK3a8HLSMBgbbU59ruJDubUraXN8N5rn7kb8tG6sjg74eE0RA3YWT51eusEw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@eslint/eslintrc": "^0.2.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.2.0", + "esutils": "^2.0.2", + "file-entry-cache": "^6.0.0", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.4", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", + "dev": true + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz", + "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "express-async-errors": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/express-async-errors/-/express-async-errors-3.1.1.tgz", + "integrity": "sha512-h6aK1da4tpqWSbyCa3FxB/V6Ehd4EEB15zyQq9qe75OZBp0krinNKuH4rAY+S/U/2I36vdLAUFSjQJ+TFmODng==" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz", + "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fastq": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.10.0.tgz", + "integrity": "sha512-NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "file-entry-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz", + "integrity": "sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + } + }, + "find": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/find/-/find-0.3.0.tgz", + "integrity": "sha512-iSd+O4OEYV/I36Zl8MdYJO0xD82wH528SaCieTVHhclgiYNe9y+yPKSwK+A7/WsmHL1EZ+pYUJBXWTL5qofksw==", + "dev": true, + "requires": { + "traverse-chain": "~0.1.0" + } + }, + "find-replace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", + "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", + "requires": { + "array-back": "^3.0.1" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz", + "integrity": "sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA==", + "dev": true + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "fs-extra": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz", + "integrity": "sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^1.0.0" + }, + "dependencies": { + "universalify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz", + "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==", + "dev": true + } + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", + "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", + "dev": true, + "optional": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.1.0.tgz", + "integrity": "sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ==", + "dev": true, + "requires": { + "ini": "1.3.7" + } + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + }, + "globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "dev": true, + "requires": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", + "dev": true + }, + "helmet": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/helmet/-/helmet-4.3.1.tgz", + "integrity": "sha512-WsafDyKsIexB0+pUNkq3rL1rB5GVAghR68TP8ssM9DPEMzfBiluEQlVzJ/FEj6Vq2Ag3CNuxf7aYMjXrN0X49Q==" + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "dev": true + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + } + }, + "http-status-codes": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/http-status-codes/-/http-status-codes-2.1.4.tgz", + "integrity": "sha512-MZVIsLKGVOVE1KEnldppe6Ij+vmemMuApDfjhVSLzyYP+td0bREEYyAoIw9yFePoBXManCuBqmiNP5FqJS5Xkg==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true + }, + "ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", + "dev": true + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "ini": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.7.tgz", + "integrity": "sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ==", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-installed-globally": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz", + "integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==", + "dev": true, + "requires": { + "global-dirs": "^2.0.1", + "is-path-inside": "^3.0.1" + } + }, + "is-npm": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz", + "integrity": "sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, + "is-path-inside": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz", + "integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==", + "dev": true + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "jet-logger": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/jet-logger/-/jet-logger-1.0.4.tgz", + "integrity": "sha512-vvMb1d9XNpfAsnL+7VpYbkba+jNWWpn/0emm/wF3iD64gWiXXKVjBemnCDVox8M6XXAgzGcSdH3IEqkf5y63gA==", + "requires": { + "colors": "^1.4.0" + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dev": true, + "requires": { + "json-buffer": "3.0.0" + } + }, + "latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "dev": true, + "requires": { + "package-json": "^6.3.0" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==", + "dev": true + }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", + "optional": true + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", + "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==" + }, + "mime-types": { + "version": "2.1.27", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", + "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "requires": { + "mime-db": "1.44.0" + } + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "module-alias": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/module-alias/-/module-alias-2.2.2.tgz", + "integrity": "sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==" + }, + "mongodb": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-3.6.3.tgz", + "integrity": "sha512-rOZuR0QkodZiM+UbQE5kDsJykBqWi0CL4Ec2i1nrGrUI3KO11r6Fbxskqmq3JK2NH7aW4dcccBuUujAP0ERl5w==", + "requires": { + "bl": "^2.2.1", + "bson": "^1.1.4", + "denque": "^1.4.1", + "require_optional": "^1.0.1", + "safe-buffer": "^5.1.2", + "saslprep": "^1.0.0" + } + }, + "morgan": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", + "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", + "requires": { + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" + }, + "dependencies": { + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "nodemon": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.6.tgz", + "integrity": "sha512-4I3YDSKXg6ltYpcnZeHompqac4E6JeAMpGm8tJnB9Y3T0ehasLa4139dJOcCrB93HHrUMsCrKtoAlXTqT5n4AQ==", + "dev": true, + "requires": { + "chokidar": "^3.2.2", + "debug": "^3.2.6", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.0.4", + "pstree.remy": "^1.1.7", + "semver": "^5.7.1", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.3", + "update-notifier": "^4.1.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "nopt": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", + "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", + "dev": true, + "requires": { + "abbrev": "1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-url": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", + "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "dev": true + }, + "package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "dev": true, + "requires": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "proxy-addr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", + "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "requires": { + "forwarded": "~0.1.2", + "ipaddr.js": "1.9.1" + } + }, + "pstree.remy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "dev": true, + "requires": { + "escape-goat": "^2.0.0" + } + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true + } + } + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "regexpp": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", + "dev": true + }, + "registry-auth-token": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz", + "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==", + "dev": true, + "requires": { + "rc": "^1.2.8" + } + }, + "registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "dev": true, + "requires": { + "rc": "^1.2.8" + } + }, + "require_optional": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require_optional/-/require_optional-1.0.1.tgz", + "integrity": "sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g==", + "requires": { + "resolve-from": "^2.0.0", + "semver": "^5.1.0" + }, + "dependencies": { + "resolve-from": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz", + "integrity": "sha1-lICrIOlP+h2egKgEx+oUdhGWa1c=" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dev": true, + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "run-parallel": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz", + "integrity": "sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==", + "dev": true + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "saslprep": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", + "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", + "optional": true, + "requires": { + "sparse-bitfield": "^3.0.3" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "dev": true, + "requires": { + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha1-/0rm5oZWBWuks+eSqzM004JzyhE=", + "optional": true, + "requires": { + "memory-pager": "^1.0.2" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "stream-chain": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/stream-chain/-/stream-chain-2.2.4.tgz", + "integrity": "sha512-9lsl3YM53V5N/I1C2uJtc3Kavyi3kNYN83VkKb/bMWRk7D9imiFyUPYa0PoZbLohSVOX1mYE9YsmwObZUsth6Q==" + }, + "stream-json": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/stream-json/-/stream-json-1.7.1.tgz", + "integrity": "sha512-I7g0IDqvdJXbJ279/D3ZoTx0VMhmKnEF7u38CffeWdF8bfpMPsLo+5fWnkNjO2GU/JjWaRjdH+zmH03q+XGXFw==", + "requires": { + "stream-chain": "^2.2.3" + } + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "table": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/table/-/table-6.0.4.tgz", + "integrity": "sha512-sBT4xRLdALd+NFBvwOz8bw4b15htyythha+q+DVZqy2RS08PPC8O2sZFgJYEY7bJvbCFKccs+WIZ/cd+xxTWCw==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "lodash": "^4.17.20", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.0" + } + }, + "term-size": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", + "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", + "dev": true + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "touch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", + "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", + "dev": true, + "requires": { + "nopt": "~1.0.10" + } + }, + "traverse-chain": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/traverse-chain/-/traverse-chain-0.1.0.tgz", + "integrity": "sha1-YdvC1Ttp/2CRoSoWj9fUMxB+QPE=", + "dev": true + }, + "ts-node": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz", + "integrity": "sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==", + "dev": true, + "requires": { + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "source-map-support": "^0.5.17", + "yn": "3.1.1" + } + }, + "tsconfig-paths": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz", + "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==", + "dev": true, + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "tsutils": { + "version": "3.17.1", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz", + "integrity": "sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.3.tgz", + "integrity": "sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==", + "dev": true + }, + "typical": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", + "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==" + }, + "undefsafe": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.3.tgz", + "integrity": "sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A==", + "dev": true, + "requires": { + "debug": "^2.2.0" + } + }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "requires": { + "crypto-random-string": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "update-notifier": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.3.tgz", + "integrity": "sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A==", + "dev": true, + "requires": { + "boxen": "^4.2.0", + "chalk": "^3.0.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.3.1", + "is-npm": "^4.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.0.0", + "pupa": "^2.0.1", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "uri-js": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", + "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "dev": true, + "requires": { + "prepend-http": "^2.0.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "v8-compile-cache": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz", + "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==", + "dev": true + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dev": true, + "requires": { + "string-width": "^4.0.0" + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true + } + } +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/package.json b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/package.json new file mode 100644 index 0000000000000000000000000000000000000000..f225c85f3e491e1953b2330a5852c664b21df96b --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/package.json @@ -0,0 +1,101 @@ +{ + "name": "bike-sharing-data-server", + "version": "1.0.0", + "scripts": { + "build": "ts-node build.ts", + "lint": "eslint . --ext .ts", + "start:prod": "node -r module-alias/register ./dist --env=production", + "start": "nodemon", + "test": "nodemon --config ./spec/nodemon.json" + }, + "nodemonConfig": { + "watch": [ + "src" + ], + "ext": "ts, html", + "ignore": [ + "src/public" + ], + "exec": "ts-node -r tsconfig-paths/register ./src" + }, + "_moduleAliases": { + "@daos": "dist/daos", + "@entities": "dist/entities", + "@shared": "dist/shared", + "@server": "dist/Server" + }, + "eslintConfig": { + "parser": "@typescript-eslint/parser", + "plugins": [ + "@typescript-eslint" + ], + "extends": [ + "eslint:recommended", + "plugin:@typescript-eslint/recommended", + "plugin:@typescript-eslint/recommended-requiring-type-checking" + ], + "parserOptions": { + "project": "./tsconfig.json" + }, + "rules": { + "max-len": [ + "error", + { + "code": 500 + } + ], + "no-console": 1, + "no-extra-boolean-cast": 0, + "@typescript-eslint/restrict-plus-operands": 0, + "@typescript-eslint/explicit-module-boundary-types": 0, + "@typescript-eslint/no-explicit-any": 0, + "@typescript-eslint/no-floating-promises": 0, + "@typescript-eslint/no-unsafe-member-access": 0, + "@typescript-eslint/no-unsafe-assignment": 0 + } + }, + "eslintIgnore": [ + "src/public/", + "build.ts" + ], + "dependencies": { + "@types/mongodb": "^3.6.3", + "command-line-args": "^5.1.1", + "cookie-parser": "^1.4.5", + "cors": "^2.8.5", + "dotenv": "^8.2.0", + "express": "^4.17.1", + "express-async-errors": "^3.1.1", + "helmet": "^4.3.1", + "http-status-codes": "^2.1.4", + "jet-logger": "^1.0.4", + "jsonfile": "^6.1.0", + "module-alias": "^2.2.2", + "mongodb": "^3.6.3", + "morgan": "^1.10.0", + "stream-chain": "^2.2.4", + "stream-json": "^1.7.1" + }, + "devDependencies": { + "@types/command-line-args": "^5.0.0", + "@types/cookie-parser": "^1.4.2", + "@types/cors": "^2.8.9", + "@types/express": "^4.17.9", + "@types/find": "^0.2.1", + "@types/fs-extra": "^9.0.6", + "@types/jsonfile": "^6.0.0", + "@types/morgan": "^1.9.2", + "@types/node": "^14.14.17", + "@types/stream-chain": "^2.0.0", + "@types/stream-json": "^1.5.1", + "@typescript-eslint/eslint-plugin": "^4.11.1", + "@typescript-eslint/parser": "^4.11.1", + "eslint": "^7.16.0", + "find": "^0.3.0", + "fs-extra": "^9.0.1", + "nodemon": "^2.0.6", + "ts-node": "^9.1.1", + "tsconfig-paths": "^3.9.0", + "typescript": "^4.1.3" + } +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/Server.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/Server.ts new file mode 100644 index 0000000000000000000000000000000000000000..7379694c451eda9c735be9ba96532eb7c34798f5 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/Server.ts @@ -0,0 +1,142 @@ +import cookieParser from 'cookie-parser' +import morgan from 'morgan' +import path from 'path' +import helmet from 'helmet' +import cors from 'cors' + +import express, { NextFunction, Request, Response } from 'express' +import StatusCodes from 'http-status-codes' +import 'express-async-errors' + +import BaseRouter from './routes' +import logger from '@shared/Logger' + +import { MongoClient } from 'mongodb' +import { chain } from 'stream-chain' +import * as fs from 'fs' +import { parser } from 'stream-json' +import { streamArray } from 'stream-json/streamers/StreamArray' +import { IBikeTrip } from '@entities/BikeTrip' + + +/************************************************************************************ + * Fill database and open connection + ***********************************************************************************/ + +export const dbName = 'bikesharing' +const url = `mongodb://localhost:27017/${dbName}` + +export const dbClient = new MongoClient(url, { useNewUrlParser: true, useUnifiedTopology: true }) + +export const bikeTripsCollectionName = 'biketrips'; + +(async () => { + try { + console.log("Attempting to connect to MongoDB server.") + await dbClient.connect() + console.log("Connected to MongoDB server.") + + const db = dbClient.db(dbName) + const bikeTripCollection = await db.collection(bikeTripsCollectionName) + const stats = await bikeTripCollection.stats() + + if(stats.count === 0){ + // create ascending index on fields startDate and endDate + bikeTripCollection.createIndex({ startDate : 1 }) + bikeTripCollection.createIndex({ endDate : 1 }) + + const dataStreamFromFile = fs.createReadStream('src/shared/data/bike-sharing-trip-data-4-january-28-february-reduced.json') + + const pipeline = chain([ + dataStreamFromFile, + parser(), + streamArray(), + ]) + + let bikeTripsTemp: IBikeTrip[] = [] + + const startTime = Date.now() + console.log('Inserting bike trips into database, please wait...') + + pipeline.on('data', async bikeTripsChunk => { + bikeTripsTemp.push(bikeTripsChunk.value) + + if(bikeTripsTemp.length === 50000){ + dataStreamFromFile.pause() + await bikeTripCollection.insertMany(bikeTripsTemp) + bikeTripsTemp = [] + console.log(`...${(await bikeTripCollection.stats()).count} documents in database...`) + dataStreamFromFile.resume() + } + }) + + pipeline.on('end', async () => { + await bikeTripCollection.insertMany(bikeTripsTemp) + + const bikeTripCollectionStats = await bikeTripCollection.stats() + console.log(`Database inserts done! Added ${bikeTripCollectionStats.count} bike trip documents to database, in ${(Date.now() - startTime)/1000} seconds.`) + }) + + } else { + console.log(`Found ${stats.count} bike trip documents in database`) + } + } catch (err) { + console.log(err.stack) + } +})() + + +/************************************************************************************ + * Set basic express settings + ***********************************************************************************/ + +const app = express() +const { BAD_REQUEST } = StatusCodes + +app.use(express.json()) +app.use(express.urlencoded({extended: true})) +app.use(cookieParser()) + +// Show routes called in console during development +if (process.env.NODE_ENV === 'development') { + app.use(morgan('dev')) +} + +// Allow cors +// eslint-disable-next-line @typescript-eslint/no-unsafe-call +app.use(cors()) + +// Security +if (process.env.NODE_ENV === 'production') { + app.use(helmet()) +} + +// Add APIs +app.use('/api', BaseRouter) + +// Print API errors +// eslint-disable-next-line @typescript-eslint/no-unused-vars +app.use((err: Error, req: Request, res: Response, next: NextFunction) => { + logger.err(err, true) + return res.status(BAD_REQUEST).json({ + error: err.message, + }) +}) + + +/************************************************************************************ + * Serve front-end content + ***********************************************************************************/ + +const dir = path.join(__dirname, 'frontend-build') +app.set('views', dir) + +// middleware is needed to make express serve static CSS and Javascript files +app.use(express.static(dir)) + +app.get('/*', (req: Request, res: Response) => { + res.sendFile('index.html', {root: dir}) +}) + +// Export express instance +export default app diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/daos/BikePoint.ts/BikePointDao.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/daos/BikePoint.ts/BikePointDao.ts new file mode 100644 index 0000000000000000000000000000000000000000..a1482cf17ce55b270a2c84af8c5a4b7b56b894bf --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/daos/BikePoint.ts/BikePointDao.ts @@ -0,0 +1,36 @@ +import bikePointsData from '../../shared/data/bike-point-data.json' +import { IBikePoint } from '@entities/BikePoint' + +const bikePoints = bikePointsData as IBikePoint[] + +export interface IBikePointDao { + getById: (bikePointId: string) => Promise<IBikePoint | null> + getAll: (bikePointId: string) => Promise<IBikePoint[]> +} + +class BikePointDao implements IBikePointDao { + + /** + * @param bikePointId (without Prefix 'BikePoints_', only the numbers behind) + */ + public getById(bikePointId: string): Promise<IBikePoint | null> { + return Promise.resolve(getBikePointById(bikePoints, bikePointId)) + } + + public getAll(): Promise<IBikePoint[]> { + return Promise.resolve(bikePoints.map(bikePoint => removeBikePointIdPrefix(bikePoint))) + } +} + +export const getBikePointById = (bikePoints: IBikePoint[], bikePointId: string) => { + for (const bikePoint of bikePoints) { + if (bikePoint.id.replace('BikePoints_', '') === bikePointId) { + return removeBikePointIdPrefix(bikePoint) + } + } + return null +} + +const removeBikePointIdPrefix = (bikePoint: IBikePoint) => ({...bikePoint, id: bikePoint.id.replace('BikePoints_', '')}) + +export default BikePointDao diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikePoint.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikePoint.ts new file mode 100644 index 0000000000000000000000000000000000000000..382708b7b08e13a159f1c99bff801c44636bda5c --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikePoint.ts @@ -0,0 +1,20 @@ +// all dates are unix timestamps +export interface IBikePoint { + id: string, + url: string, + commonName: string, + placeType: string, + additionalProperties: BikePointProperty[], + children: any[], + childrenUrls: string[], + lat: number, + lon: number, +} + +export interface BikePointProperty { + category: string, + key: string, + sourceSystemKey: string, + value: string, + modified: string +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikePointDetails.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikePointDetails.ts new file mode 100644 index 0000000000000000000000000000000000000000..df17dc2965a1158488b425050bbd30d2e7c47f76 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikePointDetails.ts @@ -0,0 +1,17 @@ +// all dates are unix timestamps +export interface IBikePointDetails { + id: string, + commonName: string, + diagrammData: IBikePointActivityMap, + installDate: number, + nbDocks: number + +} + +export interface IBikePointActivityAtHourOfDay { + avgNbRentals: number, + avgNbReturns: number, + avgNbTotal: number + +} +export type IBikePointActivityMap = {[hourOfDay: number]: IBikePointActivityAtHourOfDay} \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikeTrip.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikeTrip.ts new file mode 100644 index 0000000000000000000000000000000000000000..89dacb3bcd6aafc03570c10feb6f8ced88f9b3b8 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikeTrip.ts @@ -0,0 +1,12 @@ +// all dates are unix timestamps +export interface IBikeTrip { + rentalId: string + duration: number + bikeId: string + endDate: number + endStationId: string + endStationName: string + startDate: number + startStationId: string + startStationName: string +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikeTripDurationCount.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikeTripDurationCount.ts new file mode 100644 index 0000000000000000000000000000000000000000..062164db97504140f27b9b4a4f56fe5a0723b529 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/entities/BikeTripDurationCount.ts @@ -0,0 +1,4 @@ +export interface IBikeTripDurationCount { + classLabel: string, + count: number +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/index.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..30d54c067b0567a11aa33916a8000136ef6e48c6 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/index.ts @@ -0,0 +1,10 @@ +import './pre-start' // Must be the first import +import app from '@server' +import logger from '@shared/Logger' + + +// Start the server +const port = Number(process.env.PORT || 3000) +app.listen(port, () => { + logger.info('Bike sharing data server started on port: ' + port) +}) diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/pre-start/env/development.env b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/pre-start/env/development.env new file mode 100644 index 0000000000000000000000000000000000000000..61d58c8deac66cfd075bb71e00ff7cc00bca64aa --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/pre-start/env/development.env @@ -0,0 +1,14 @@ +## Environment ## +NODE_ENV=development + + +## Server ## +PORT=8081 +HOST=localhost + + +## Setup jet-logger ## +JET_LOGGER_MODE=CONSOLE +JET_LOGGER_FILEPATH=jet-logger.log +JET_LOGGER_TIMESTAMP=TRUE +JET_LOGGER_FORMAT=LINE diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/pre-start/env/production.env b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/pre-start/env/production.env new file mode 100644 index 0000000000000000000000000000000000000000..fc99b75f328a04f459fe5fad73ee315d870d723d --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/pre-start/env/production.env @@ -0,0 +1,14 @@ +## Environment ## +NODE_ENV=production + + +## Server ## +PORT=8081 +HOST=localhost + + +## Setup jet-logger ## +JET_LOGGER_MODE=FILE +JET_LOGGER_FILEPATH=jet-logger.log +JET_LOGGER_TIMESTAMP=TRUE +JET_LOGGER_FORMAT=LINE diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/pre-start/index.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/pre-start/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..289bad3728cb5e8cf7791c4fb86d33fc59d573e5 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/pre-start/index.ts @@ -0,0 +1,29 @@ +/** + * Pre-start is where we want to place things that must run BEFORE the express server is started. + * This is useful for environment variables, command-line arguments, and cron-jobs. + */ + +import path from 'path' +import dotenv from 'dotenv' +import commandLineArgs from 'command-line-args' + + + +(() => { + // Setup command line options + const options = commandLineArgs([ + { + name: 'env', + alias: 'e', + defaultValue: 'development', + type: String, + }, + ]) + // Set the env file + const result2 = dotenv.config({ + path: path.join(__dirname, `env/${options.env}.env`), + }) + if (result2.error) { + throw result2.error + } +})() diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikePointDetails.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikePointDetails.ts new file mode 100644 index 0000000000000000000000000000000000000000..f0bd0e75d5a0819b859508ab2dc851afd6d0c696 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikePointDetails.ts @@ -0,0 +1,125 @@ +import StatusCodes from 'http-status-codes' +import { Request, Response, Router } from 'express' +import { ApiError, notFoundError, paramMissingError } from '@shared/responseTypes' +import BikePointDao from '@daos/BikePoint.ts/BikePointDao' +import { IBikePointActivityMap, IBikePointDetails } from '@entities/BikePointDetails' +import { bikeTripsCollectionName, dbClient, dbName } from '@server' + +const router = Router() +const bikePointDao = new BikePointDao() +const {NOT_FOUND, OK} = StatusCodes + +interface QueryParams { + from: string + to: string + day: string +} + +interface PathParam { + bikePointId: string +} + +interface IBikePointDetailsResponse { + bikePointDetails: IBikePointDetails +} + + +/****************************************************************************** + * Get Details about single Bike Point by id - "GET /api/bike-point-details/:bikePointId" /api/bike-point-details/311?from=1420329660&to=1421538420&selectedDay=0 + ******************************************************************************/ + + +router.get('/:bikePointId', async (req: Request<PathParam, any, any, QueryParams>, res: Response<IBikePointDetailsResponse | ApiError>) => { + const bikePointId = req.params.bikePointId + const from = Number(req.query.from) + const to = Number(req.query.to) + /*0=Monday, 1=Tuesday, etc...*/ + const selectedDay = Number(req.query.day) + + if (!bikePointId || (selectedDay === undefined) || !from || !to) { + return res.status(StatusCodes.BAD_REQUEST).json({error: paramMissingError}) + } + + const bikePoint = await bikePointDao.getById(bikePointId) + + if (!bikePoint) { + return res.status(NOT_FOUND).json({error: notFoundError}) + } + + const [rentalsAtHoursOfDay, returnsAtHoursOfDay] = await Promise.all([ + dbClient.db(dbName).collection(bikeTripsCollectionName).aggregate<{ _id: number, count: number }>([ + // check if trip was started at the desired bikepoint + {$match: {startStationId: {$eq: bikePointId}}}, + // check if trip was started within the time range + {$match: {startDate: {$gte: from, $lt: to}}}, + // convert unixtimestaamp to mongoDB-Date + {$set: {startDate: {$toDate: {$multiply: ['$startDate', 1000]}}}}, + {$set: {dayofWeek: {$dayOfWeek: '$startDate'}}}, + //check if trip was started at desired day (e.g. Monday) + {$match: {dayofWeek: {$eq: selectedDay + 1}}}, + //group rentals by hour of day (0-23) + { + $group: { + _id: {$hour: {date: '$startDate'}}, + count: {$sum: 1} + } + }, + {$sort: {_id: 1}}, + ]).toArray(), + dbClient.db(dbName).collection(bikeTripsCollectionName).aggregate<{ _id: number, count: number }>([ + // check if trip was ended at the desired bikepoint + {$match: {endStationId: {$eq: bikePointId}}}, + // check if trip was started within the time range + {$match: {endDate: {$gte: from, $lt: to}}}, + // convert unixtimestaamp to mongoDB-Date + {$set: {endDate: {$toDate: {$multiply: ['$endDate', 1000]}}}}, + {$set: {dayofWeek: {$dayOfWeek: '$endDate'}}}, + //check if trip was ended at desired day (e.g. Monday) + {$match: {dayofWeek: {$eq: selectedDay + 1}}}, + //group returns by hour of day (0-23) + { + $group: { + _id: {$hour: {date: '$endDate'}}, + count: {$sum: 1} + } + }, + {$sort: {_id: 1}}, + ]).toArray() + ]) + + const countOfSelectedDay = countCertainDay(selectedDay, new Date(from * 1000), new Date(to * 1000)) + + const combinedData: IBikePointActivityMap = {} + for (let i = 0; i < 24; i++) { + const nbRentals = (rentalsAtHoursOfDay.find(entry => entry._id === i)?.count ?? 0) + const nbReturns = (returnsAtHoursOfDay.find(entry => entry._id === i)?.count ?? 0) + combinedData[i] = { + avgNbRentals: nbRentals / countOfSelectedDay, + avgNbReturns: nbReturns / countOfSelectedDay, + avgNbTotal: (nbRentals + nbReturns) / countOfSelectedDay + } + } + + const bikePointDetails: IBikePointDetails = { + commonName: bikePoint.commonName, + id: bikePoint.id, + installDate: Number(bikePoint.additionalProperties.find(additionalProperty => additionalProperty.key === 'InstallDate')?.value) / 1000, + nbDocks: Number(bikePoint.additionalProperties.find(additionalProperty => additionalProperty.key === 'NbDocks')?.value), + diagrammData: combinedData + } + + return res.status(OK).json({bikePointDetails}) +}) + +// count how often a certain day of week appears in given time range, where day can be 0 (Monday) up to 6 (Sunday) +function countCertainDay(day: number, startDate: Date, endDate: Date) { + const numberOfDays = 1 + Math.round((endDate.getTime() - startDate.getTime()) / (24 * 3600 * 1000)) + return Math.floor((numberOfDays + (startDate.getDay() + 6 - day) % 7) / 7) +} + + +/****************************************************************************** + * Export + ******************************************************************************/ + +export default router diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikePoints.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikePoints.ts new file mode 100644 index 0000000000000000000000000000000000000000..e841b47007092b4e4740079e59535bebe0a6d4ff --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikePoints.ts @@ -0,0 +1,58 @@ +import StatusCodes from 'http-status-codes' +import { Request, Response, Router } from 'express' +import { ApiError, notFoundError, paramMissingError } from '@shared/responseTypes' +import { IBikePoint } from '@entities/BikePoint' +import BikePointDao from '@daos/BikePoint.ts/BikePointDao' + +const router = Router() +const bikePointDao = new BikePointDao() +const { NOT_FOUND, OK } = StatusCodes + +interface IBikePointsResponse { + bikePoints: IBikePoint[] +} + +interface IBikePointResponse { + bikePoint: IBikePoint +} + + + +/****************************************************************************** + * Get Bike Points - "GET /api/bike-points/all" + ******************************************************************************/ + +router.get('/all', async (req: Request, res: Response<IBikePointsResponse | ApiError>) => { + const bikePoints = await bikePointDao.getAll() + return res.status(OK).json({bikePoints}) +}) + + + +/****************************************************************************** + * Get single Bike Point by id - "GET /api/bike-points/:bikePointId" + ******************************************************************************/ + +router.get('/:bikePointId', async (req: Request, res: Response<IBikePointResponse | ApiError>) => { + const { bikePointId } = req.params + + if (!bikePointId) { + return res.status(StatusCodes.BAD_REQUEST).json({error: paramMissingError}) + } + + const bikePoint = await bikePointDao.getById(bikePointId) + + if (!bikePoint) { + return res.status(NOT_FOUND).json({error: notFoundError}) + } + + return res.status(OK).json({bikePoint}) +}) + + + +/****************************************************************************** + * Export + ******************************************************************************/ + +export default router diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikePointsActivity.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikePointsActivity.ts new file mode 100644 index 0000000000000000000000000000000000000000..1c8950aa027c63b8a6919f745eab2a009163fe9b --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikePointsActivity.ts @@ -0,0 +1,101 @@ +import StatusCodes from 'http-status-codes' +import { Request, Response, Router } from 'express' +import { ApiError, paramMissingError } from '@shared/responseTypes' +import { bikeTripsCollectionName, dbClient, dbName } from '@server' +import BikePointDao from '@daos/BikePoint.ts/BikePointDao' + +const router = Router() +const bikePointDao = new BikePointDao() +const { OK } = StatusCodes + +interface QueryParams { + from: string + to: string +} + +interface IBikePointActivity { + rentals: number + returns: number + rentalsReturnsImbalance: number +} + +interface IBikePointsActivity { + [bikePointId: string]: IBikePointActivity +} + +interface INumberRange { + min: number + max: number +} + +interface IBikePointsActivityResponse { + bikePointsActivity: IBikePointsActivity + rentalsRange: INumberRange + returnsRange: INumberRange + rentalsReturnsImbalanceRange: INumberRange +} + + +/********************************************************************************************** + * Get Bike Point Activity Statistics in time frame - "GET /api/bike-points-activity" + **********************************************************************************************/ + +router.get('/', async (req: Request<any, any, any, QueryParams>, res: Response<IBikePointsActivityResponse | ApiError>) => { + // read query params + const from = Number(req.query.from) + const to = Number(req.query.to) + if (!from || !to) { + return res.status(StatusCodes.BAD_REQUEST).json({error: paramMissingError}) + } + + // read from database efficiently with custom aggregation query (consists of multiple 'stages') + const [rentalsPerBikePoint, returnsPerBikePoint] = await Promise.all([ + dbClient.db(dbName).collection(bikeTripsCollectionName).aggregate<{_id: string, count: number}>([ + // only use data of correct time range + {$match: {startDate: {$gte: from, $lt: to}}}, + // count how often each station appears as startStationId in trips + {$group: {_id: '$startStationId', count: {$sum: 1}}} + ]).toArray(), + dbClient.db(dbName).collection(bikeTripsCollectionName).aggregate<{_id: string, count: number}>([ + // only use data of correct time range + {$match: {startDate: {$gte: from, $lt: to}}}, + // count how often each station appears as startStationId in trips + {$group: {_id: '$endStationId', count: {$sum: 1}}} + ]).toArray(), + ]) + + // map data base result to a more useful object structure for frontend, adding in all possible bikePoint ids + const bikePoints = await bikePointDao.getAll() + const bikePointActivity: IBikePointsActivity = {} + + bikePoints.forEach(bikePoint => { + const rentals = rentalsPerBikePoint.find(a => a._id === bikePoint.id)?.count ?? 0 + const returns = returnsPerBikePoint.find(a => a._id === bikePoint.id)?.count ?? 0 + + bikePointActivity[bikePoint.id] = { + rentals: rentals, + returns: returns, + rentalsReturnsImbalance: returns - rentals, + } + }) + + + // serialize and send bike point activity data + return res.status(OK).json({ + bikePointsActivity: bikePointActivity, + rentalsRange: getRange(Object.values(bikePointActivity).map(activity => activity.rentals)), + returnsRange: getRange(Object.values(bikePointActivity).map(activity => activity.returns)), + rentalsReturnsImbalanceRange: getRange(Object.values(bikePointActivity).map(activity => activity.rentalsReturnsImbalance)), + }) +}) + +const getRange = (list: number[]): INumberRange => ({ + min: Math.min(...list), + max: Math.max(...list), +}) + +/****************************************************************************** + * Export + ******************************************************************************/ + +export default router diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikeTripDurations.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikeTripDurations.ts new file mode 100644 index 0000000000000000000000000000000000000000..fdd87e2f5ee44f78d017ac98cd29be5f43c63b4a --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikeTripDurations.ts @@ -0,0 +1,105 @@ +import StatusCodes from 'http-status-codes' +import { Request, Response, Router } from 'express' +import { ApiError, paramMissingError } from '@shared/responseTypes' +import { IBikeTripDurationCount } from '@entities/BikeTripDurationCount' +import { bikeTripsCollectionName, dbClient, dbName } from '@server' + +const router = Router() +const {OK} = StatusCodes + +interface IBikeTripDurationsResponse { + bikeTripDurationCounts: IBikeTripDurationCount[] +} + +interface QueryParams { + classSize: string + from: string + to: string +} + +/*************************************************************************************** + * Get Bike Trip Duration Statistics in range - "GET /api/bike-trip-durations" + ***************************************************************************************/ + +router.get('/', async (req: Request<any, any, any, QueryParams>, res: Response<IBikeTripDurationsResponse | ApiError>) => { + // class size in seconds + const durationClassSize = Number(req.query.classSize) + const from = Number(req.query.from) + const to = Number(req.query.to) + + if (!durationClassSize || !from || !to) { + return res.status(StatusCodes.BAD_REQUEST).json({error: paramMissingError}) + } + + // create classes between 0 and 90 minutes + const maxInterestingDuration = 90 * 60 + const numberOfDurationClasses = Math.floor(maxInterestingDuration / durationClassSize) + + // efficient mongodb aggregation query, consists of multiple 'stages' + // _id will be the max duration (exclusive) of the according class after the aggregation + const durationClassCountsFromDB = await dbClient.db(dbName).collection(bikeTripsCollectionName).aggregate<{ _id: number, count: number }>([ + // only use data of correct time range + {$match: {startDate: {$gte: from, $lt: to}}}, + {$match: {duration: {$gte: 0}}}, + // count for different trip duration intervals, how many trips fall into them + // _id will container the upper limit of the respective duration interval + {$group: { + _id: { + $switch: { + branches: range(durationClassSize, maxInterestingDuration, durationClassSize).map(maxDurationOfClass => ({ + case: {$lt: ['$duration', maxDurationOfClass]}, + then: maxDurationOfClass + })), + default: (numberOfDurationClasses + 1) * durationClassSize + } + }, + count: {$sum: 1} + }}, + {$sort: {_id: 1}}, + ]).toArray() + + // MongoDB query result might not contain all duration classes, if there were no bike trips with that duration + const necessaryClasses: { _id: number, count: number }[] = [] + + // add values to all duration classes, if none set to 0 + for (let i = 0; i < numberOfDurationClasses + 1; i++) { + const currentClassToCheck = (i + 1) * durationClassSize + necessaryClasses[i] = {_id: currentClassToCheck, count: 0} + + for (let n = 0; n < durationClassCountsFromDB.length; n++) { + if (durationClassCountsFromDB[n]._id == currentClassToCheck) { + necessaryClasses[i].count = durationClassCountsFromDB[n].count + break + } + } + } + + // prepare output or diagram, with duration class labels + const bikeTripDurationCounts = necessaryClasses.map((durationClassCount, index) => { + const fromValue = durationClassCount._id - durationClassSize + const toValue = durationClassCount._id + + let classLabel = `${fromValue / 60}-${toValue / 60}` + + if (index === necessaryClasses.length - 1) { + classLabel = `${fromValue / 60}+` + } + + return { + classLabel: classLabel, + count: durationClassCount.count + } as IBikeTripDurationCount + }) + + return res.status(OK).json({bikeTripDurationCounts}) +}) + +// Sequence generator function +const range = (start: number, stop: number, step: number) => Array.from({length: (stop - start) / step + 1}, (_, i) => start + (i * step)) + + +/****************************************************************************** + * Export + ******************************************************************************/ + +export default router diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikeTrips.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikeTrips.ts new file mode 100644 index 0000000000000000000000000000000000000000..9d0dc24a7655b837b3bd4810acd86cfa6fe302a8 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/BikeTrips.ts @@ -0,0 +1,70 @@ +import StatusCodes from 'http-status-codes' +import { Request, Response, Router } from 'express' +import { ApiError, notFoundError, paramMissingError } from '@shared/responseTypes' +import { IBikeTrip } from '@entities/BikeTrip' +import { bikeTripsCollectionName, dbClient, dbName } from '@server' + +const router = Router() +const { NOT_FOUND, OK } = StatusCodes + +interface QueryParams { + from: string + to: string +} + +interface IBikeTripsInRangeResponse { + bikeTrips: IBikeTrip[] +} + +interface IBikeTripResponse { + bikeTrip: IBikeTrip +} + +/****************************************************************************** + * Get Bike Trips in range - "GET /api/bike-trips/all-in-range" + ******************************************************************************/ + +router.get('/all-in-range', async (req: Request, res: Response<IBikeTripsInRangeResponse | ApiError>) => { + const from = Number(req.query.from) + const to = Number(req.query.to) + + if (!from || !to) { + return res.status(StatusCodes.BAD_REQUEST).json({error: paramMissingError}) + } + + const bikeTripsCursor = dbClient.db(dbName).collection(bikeTripsCollectionName).aggregate<IBikeTrip>([ + {$match: {startDate: {$gte: from, $lt: to}}} + ]) + + return res.status(OK).json({bikeTrips: await bikeTripsCursor.toArray()}) +}) + + + +/****************************************************************************** + * Get single Bike Trip by rentalId - "GET /api/bike-trips/:rentalId" + ******************************************************************************/ + +router.get('/:rentalId', async (req: Request, res: Response<IBikeTripResponse | ApiError>) => { + const { rentalId } = req.params + + if (!rentalId) { + return res.status(StatusCodes.BAD_REQUEST).json({error: paramMissingError}) + } + + const bikeTrip = await dbClient.db(dbName).collection(bikeTripsCollectionName).findOne({_id: rentalId}) + + if (!bikeTrip) { + return res.status(NOT_FOUND).json({error: notFoundError}) + } + + return res.status(OK).json({bikeTrip: bikeTrip}) +}) + + + +/****************************************************************************** + * Export + ******************************************************************************/ + +export default router diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/index.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..7f842465c55f2d7a727c48ee02397d19c7d53e14 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/routes/index.ts @@ -0,0 +1,20 @@ +import { Router } from 'express' +import BikeTripRouter from './BikeTrips' +import BikePointRouter from './BikePoints' +import BikeTripDurationRouter from './BikeTripDurations' +import BikePointsActivityRouter from './BikePointsActivity' +import BikePointDetailsRouter from './BikePointDetails' + +// Init router and path +const router = Router() + +// Add sub-routes +router.use('/bike-trips', BikeTripRouter) +router.use('/bike-points', BikePointRouter) +router.use('/bike-trip-durations', BikeTripDurationRouter) +router.use('/bike-points-activity', BikePointsActivityRouter) +router.use('/bike-point-details', BikePointDetailsRouter) + + +// Export the base-router +export default router diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/Logger.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/Logger.ts new file mode 100644 index 0000000000000000000000000000000000000000..218ae93a0a036443713a92daf0208287f3f360a7 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/Logger.ts @@ -0,0 +1,12 @@ +/** + * Setup the jet-logger. + * + * Documentation: https://github.com/seanpmaxwell/jet-logger + */ + +import Logger from 'jet-logger' + + +const logger = new Logger() + +export default logger diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/data/bike-point-data.json b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/data/bike-point-data.json new file mode 100644 index 0000000000000000000000000000000000000000..db2b2debfec204c54a15a4bd6906b7654667f732 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/data/bike-point-data.json @@ -0,0 +1 @@ +[{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_1","url":"/Place/BikePoints_1","commonName":"River Street , Clerkenwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001023","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278947280000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.529163,"lon":-0.10997},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_2","url":"/Place/BikePoints_2","commonName":"Phillimore Gardens, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001018","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278585780000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.499606,"lon":-0.197574},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_3","url":"/Place/BikePoints_3","commonName":"Christopher Street, Liverpool Street","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001012","modified":"2020-12-31T15:22:53.013Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2020-12-31T15:22:53.013Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2020-12-31T15:22:53.013Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278240360000","modified":"2020-12-31T15:22:53.013Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2020-12-31T15:22:53.013Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2020-12-31T15:22:53.013Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2020-12-31T15:22:53.013Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2020-12-31T15:22:53.013Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2020-12-31T15:22:53.013Z"}],"children":[],"childrenUrls":[],"lat":51.521283,"lon":-0.084605},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_4","url":"/Place/BikePoints_4","commonName":"St. Chad's Street, King's Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001013","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278241080000","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.530059,"lon":-0.120973},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_5","url":"/Place/BikePoints_5","commonName":"Sedding Street, Sloane Square","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003420","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278241440000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.49313,"lon":-0.156876},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_6","url":"/Place/BikePoints_6","commonName":"Broadcasting House, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003424","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278241680000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.518117,"lon":-0.144228},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_7","url":"/Place/BikePoints_7","commonName":"Charlbert Street, St. John's Wood","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003422","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278241800000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.5343,"lon":-0.168074},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_8","url":"/Place/BikePoints_8","commonName":"Maida Vale, Maida Vale","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003423","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1540984560000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"39","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.529857,"lon":-0.183486},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_9","url":"/Place/BikePoints_9","commonName":"New Globe Walk, Bankside","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001015","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278242340000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.507385,"lon":-0.09644},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_10","url":"/Place/BikePoints_10","commonName":"Park Street, Bankside","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001024","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278242460000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.505974,"lon":-0.092754},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_11","url":"/Place/BikePoints_11","commonName":"Brunswick Square, Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001022","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278340440000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.523951,"lon":-0.122502},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_12","url":"/Place/BikePoints_12","commonName":"Malet Street, Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000980","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278340620000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"39","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"49","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.52168,"lon":-0.130431},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_13","url":"/Place/BikePoints_13","commonName":"Scala Street, Fitzrovia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000970","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278340800000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.519914,"lon":-0.136039},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_14","url":"/Place/BikePoints_14","commonName":"Belgrove Street , King's Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001011","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278341040000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"38","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"48","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.529943,"lon":-0.123616},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_15","url":"/Place/BikePoints_15","commonName":"Great Russell Street, Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000988","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278341220000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.517727,"lon":-0.127854},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_16","url":"/Place/BikePoints_16","commonName":"Cartwright Gardens , Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001010","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278341400000","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:16:34.933Z"}],"children":[],"childrenUrls":[],"lat":51.526357,"lon":-0.125979},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_17","url":"/Place/BikePoints_17","commonName":"Hatton Wall, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001008","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278423720000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.521661,"lon":-0.109006},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_18","url":"/Place/BikePoints_18","commonName":"Drury Lane, Covent Garden","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001007","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278426300000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.51477,"lon":-0.122219},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_19","url":"/Place/BikePoints_19","commonName":"Taviton Street, Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001009","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278426720000","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T12:41:03.86Z"}],"children":[],"childrenUrls":[],"lat":51.52505,"lon":-0.131161},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_20","url":"/Place/BikePoints_20","commonName":"Drummond Street , Euston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000993","modified":"2021-01-01T11:28:32.403Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-01T11:28:32.403Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T11:28:32.403Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1544659200000","modified":"2021-01-01T11:28:32.403Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-01T11:28:32.403Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T11:28:32.403Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-01T11:28:32.403Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-01T11:28:32.403Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-01T11:28:32.403Z"}],"children":[],"childrenUrls":[],"lat":51.527326,"lon":-0.136052},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_22","url":"/Place/BikePoints_22","commonName":"Northington Street , Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003425","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278428880000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.522264,"lon":-0.114079},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_23","url":"/Place/BikePoints_23","commonName":"Red Lion Square, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003421","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278429300000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.519435,"lon":-0.119123},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_24","url":"/Place/BikePoints_24","commonName":"British Museum, Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000981","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278430140000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.51908,"lon":-0.124678},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_25","url":"/Place/BikePoints_25","commonName":"Doric Way , Somers Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001004","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278433200000","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"50","modified":"2021-01-02T13:15:33.327Z"}],"children":[],"childrenUrls":[],"lat":51.528833,"lon":-0.13225},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_26","url":"/Place/BikePoints_26","commonName":"Ampton Street , Clerkenwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001019","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278434160000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.52728,"lon":-0.118295},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_27","url":"/Place/BikePoints_27","commonName":"Bouverie Street, Temple","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001021","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278500160000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.513821,"lon":-0.107927},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_28","url":"/Place/BikePoints_28","commonName":"Bolsover Street, Fitzrovia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001025","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278500460000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.523518,"lon":-0.143613},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_29","url":"/Place/BikePoints_29","commonName":"Hereford Road, Bayswater","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001016","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278501180000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.513735,"lon":-0.193487},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_30","url":"/Place/BikePoints_30","commonName":"Windsor Terrace, Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001029","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278501420000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.529154,"lon":-0.093421},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_31","url":"/Place/BikePoints_31","commonName":"Fanshaw Street, Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003427","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278501600000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.529537,"lon":-0.083353},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_32","url":"/Place/BikePoints_32","commonName":"Leonard Circus , Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001020","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278506700000","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"40","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"43","modified":"2021-01-02T13:26:35.367Z"}],"children":[],"childrenUrls":[],"lat":51.524696,"lon":-0.084439},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_33","url":"/Place/BikePoints_33","commonName":"Central House, Aldgate","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003430","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278506940000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.5156,"lon":-0.070056},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_34","url":"/Place/BikePoints_34","commonName":"Pancras Road, King's Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003428","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278507060000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.534123,"lon":-0.129386},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_36","url":"/Place/BikePoints_36","commonName":"De Vere Gardens, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003446","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278519900000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.501737,"lon":-0.18498},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_37","url":"/Place/BikePoints_37","commonName":"Penywern Road, Earl's Court","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003444","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278520020000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.491593,"lon":-0.192369},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_38","url":"/Place/BikePoints_38","commonName":"Abingdon Villas, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003442","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278584880000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.497387,"lon":-0.197245},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_39","url":"/Place/BikePoints_39","commonName":"Shoreditch High Street, Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003445","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278601740000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.526377,"lon":-0.07813},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_40","url":"/Place/BikePoints_40","commonName":"Commercial Street, Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001083","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278601980000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.52127,"lon":-0.075578},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_41","url":"/Place/BikePoints_41","commonName":"Pindar Street, Liverpool Street","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001084","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278602280000","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T12:21:02.07Z"}],"children":[],"childrenUrls":[],"lat":51.520955,"lon":-0.083493},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_42","url":"/Place/BikePoints_42","commonName":"Wenlock Road , Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000979","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278602700000","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:10:54.343Z"}],"children":[],"childrenUrls":[],"lat":51.530991,"lon":-0.093903},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_43","url":"/Place/BikePoints_43","commonName":"Crawford Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001036","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278687720000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.52026,"lon":-0.157183},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_44","url":"/Place/BikePoints_44","commonName":"Bruton Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001034","modified":"2021-01-02T12:44:05.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:44:05.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:44:05.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278687900000","modified":"2021-01-02T12:44:05.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:44:05.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:44:05.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T12:44:05.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T12:44:05.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T12:44:05.45Z"}],"children":[],"childrenUrls":[],"lat":51.510736,"lon":-0.144165},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_45","url":"/Place/BikePoints_45","commonName":"Boston Place, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001035","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278691320000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.522511,"lon":-0.162298},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_46","url":"/Place/BikePoints_46","commonName":"Nesham Street, Wapping","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001031","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278691800000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.507131,"lon":-0.06691},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_47","url":"/Place/BikePoints_47","commonName":"Warwick Avenue Station, Maida Vale","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001027","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278749160000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.523344,"lon":-0.183846},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_48","url":"/Place/BikePoints_48","commonName":"Godliman Street, St. Paul's","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000971","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278749460000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.512484,"lon":-0.099141},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_49","url":"/Place/BikePoints_49","commonName":"Curzon Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003437","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278749940000","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T12:21:02.07Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T12:21:02.07Z"}],"children":[],"childrenUrls":[],"lat":51.507069,"lon":-0.145904},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_50","url":"/Place/BikePoints_50","commonName":"East Road, Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001054","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278750240000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.528673,"lon":-0.087459},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_51","url":"/Place/BikePoints_51","commonName":"Finsbury Library , Finsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000986","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278750540000","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:22:34.65Z"}],"children":[],"childrenUrls":[],"lat":51.526717,"lon":-0.104298},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_52","url":"/Place/BikePoints_52","commonName":"Roscoe Street, St. Luke's","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001026","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278750840000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.522954,"lon":-0.094934},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_53","url":"/Place/BikePoints_53","commonName":"Grafton Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003431","modified":"2021-01-02T11:39:50.35Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:39:50.35Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:39:50.35Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278752580000","modified":"2021-01-02T11:39:50.35Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:39:50.35Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:39:50.35Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T11:39:50.35Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T11:39:50.35Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T11:39:50.35Z"}],"children":[],"childrenUrls":[],"lat":51.509992,"lon":-0.143495},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_54","url":"/Place/BikePoints_54","commonName":"Golden Lane, Barbican","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000967","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278766740000","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:02:50.527Z"}],"children":[],"childrenUrls":[],"lat":51.521747,"lon":-0.094475},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_55","url":"/Place/BikePoints_55","commonName":"Finsbury Circus, Liverpool Street","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000984","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278766980000","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:19:34.44Z"}],"children":[],"childrenUrls":[],"lat":51.517075,"lon":-0.086685},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_56","url":"/Place/BikePoints_56","commonName":"Paddington Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001033","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278767220000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.520583,"lon":-0.154701},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_57","url":"/Place/BikePoints_57","commonName":"Guilford Street , Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000974","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278767460000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.523346,"lon":-0.120202},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_58","url":"/Place/BikePoints_58","commonName":"New Inn Yard, Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001032","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278767700000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.524526,"lon":-0.079248},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_60","url":"/Place/BikePoints_60","commonName":"Lisson Grove, St. John's Wood","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001030","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278769140000","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:14:08.13Z"}],"children":[],"childrenUrls":[],"lat":51.526448,"lon":-0.17219},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_61","url":"/Place/BikePoints_61","commonName":"Great Dover Street, The Borough","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001017","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278773820000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.497382,"lon":-0.089446},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_62","url":"/Place/BikePoints_62","commonName":"Cotton Garden Estate, Kennington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000990","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278773940000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.490757,"lon":-0.106323},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_63","url":"/Place/BikePoints_63","commonName":"Murray Grove , Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000989","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278774120000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.53089,"lon":-0.089782},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_64","url":"/Place/BikePoints_64","commonName":"William IV Street, Strand","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001028","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278774300000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.509462,"lon":-0.124749},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_66","url":"/Place/BikePoints_66","commonName":"Holborn Circus, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000982","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278845280000","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"40","modified":"2021-01-02T13:31:36.54Z"}],"children":[],"childrenUrls":[],"lat":51.51795,"lon":-0.108657},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_67","url":"/Place/BikePoints_67","commonName":"Hatton Garden, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000985","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278847440000","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:03:50.123Z"}],"children":[],"childrenUrls":[],"lat":51.518825,"lon":-0.108028},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_68","url":"/Place/BikePoints_68","commonName":"Theobald's Road , Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000975","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278857040000","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:17:33.217Z"}],"children":[],"childrenUrls":[],"lat":51.520596,"lon":-0.116688},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_69","url":"/Place/BikePoints_69","commonName":"Euston Road, Euston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000983","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278861540000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.526236,"lon":-0.134407},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_70","url":"/Place/BikePoints_70","commonName":"Calshot Street , King's Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001066","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278863340000","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:29:35.213Z"}],"children":[],"childrenUrls":[],"lat":51.53136,"lon":-0.117069},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_71","url":"/Place/BikePoints_71","commonName":"Newgate Street , St. Paul's","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001074","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278924900000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.515418,"lon":-0.09885},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_72","url":"/Place/BikePoints_72","commonName":"Farringdon Lane, Clerkenwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003432","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1276948860000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.52352,"lon":-0.10834},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_73","url":"/Place/BikePoints_73","commonName":"Old Street Station, St. Luke's","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001064","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278941040000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.525726,"lon":-0.088486},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_74","url":"/Place/BikePoints_74","commonName":"Vauxhall Cross, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278941160000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.485917,"lon":-0.124469},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_75","url":"/Place/BikePoints_75","commonName":"Torrens Street, Angel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001060","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278945180000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.532199,"lon":-0.10548},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_76","url":"/Place/BikePoints_76","commonName":"Longford Street, The Regent's Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000976","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278946560000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.525595,"lon":-0.144083},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_77","url":"/Place/BikePoints_77","commonName":"Russell Square Station, Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000978","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278946860000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.523418,"lon":-0.124121},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_78","url":"/Place/BikePoints_78","commonName":"Sadlers Sports Centre, Finsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003433","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278948480000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.524868,"lon":-0.099489},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_79","url":"/Place/BikePoints_79","commonName":"Arundel Street, Temple","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003455","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1509018360000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.511726,"lon":-0.113855},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_80","url":"/Place/BikePoints_80","commonName":"Webber Street , Southwark","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003448","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1278952440000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"45","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.500693,"lon":-0.102091},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_81","url":"/Place/BikePoints_81","commonName":"Great Titchfield Street, Fitzrovia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003450","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279012980000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.520253,"lon":-0.141327},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_82","url":"/Place/BikePoints_82","commonName":"Chancery Lane, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003453","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279015680000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.514274,"lon":-0.111257},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_83","url":"/Place/BikePoints_83","commonName":"Panton Street, West End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003452","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279015800000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.509639,"lon":-0.13151},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_84","url":"/Place/BikePoints_84","commonName":"Breams Buildings, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003449","modified":"2021-01-02T11:27:52.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:27:52.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:27:52.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279020240000","modified":"2021-01-02T11:27:52.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:27:52.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:27:52.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T11:27:52.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T11:27:52.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T11:27:52.42Z"}],"children":[],"childrenUrls":[],"lat":51.515937,"lon":-0.111778},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_85","url":"/Place/BikePoints_85","commonName":"Tanner Street, Bermondsey","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000994","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279026060000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.500647,"lon":-0.0786},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_86","url":"/Place/BikePoints_86","commonName":"Sancroft Street, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003434","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279027140000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.489479,"lon":-0.115156},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_87","url":"/Place/BikePoints_87","commonName":"Devonshire Square, Liverpool Street","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003438","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279027680000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.516468,"lon":-0.079684},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_88","url":"/Place/BikePoints_88","commonName":"Bayley Street , Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001006","modified":"2021-01-02T12:27:03.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:27:03.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:27:03.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279028280000","modified":"2021-01-02T12:27:03.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:27:03.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:27:03.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T12:27:03.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T12:27:03.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T12:27:03.91Z"}],"children":[],"childrenUrls":[],"lat":51.518587,"lon":-0.132053},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_89","url":"/Place/BikePoints_89","commonName":"Tavistock Place, Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003439","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279029360000","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:12:56.2Z"}],"children":[],"childrenUrls":[],"lat":51.52625,"lon":-0.123509},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_90","url":"/Place/BikePoints_90","commonName":"Harrington Square 1, Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001038","modified":"2021-01-02T12:33:03.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:33:03.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:33:03.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279030020000","modified":"2021-01-02T12:33:03.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:33:03.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:33:03.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T12:33:03.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T12:33:03.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T12:33:03.51Z"}],"children":[],"childrenUrls":[],"lat":51.533019,"lon":-0.139174},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_91","url":"/Place/BikePoints_91","commonName":"Walnut Tree Walk, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001076","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279036740000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.493686,"lon":-0.111014},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_92","url":"/Place/BikePoints_92","commonName":"Borough Road, Elephant & Castle","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001082","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279037040000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.498898,"lon":-0.10044},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_93","url":"/Place/BikePoints_93","commonName":"Cloudesley Road, Angel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002586","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279037760000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.534408,"lon":-0.109025},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_94","url":"/Place/BikePoints_94","commonName":"Bricklayers Arms, Borough","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001070","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279038420000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.495061,"lon":-0.085814},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_95","url":"/Place/BikePoints_95","commonName":"Aldersgate Street, Barbican","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001065","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279096560000","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.520841,"lon":-0.09734},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_96","url":"/Place/BikePoints_96","commonName":"Falkirk Street, Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001047","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279096980000","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:06:51.99Z"}],"children":[],"childrenUrls":[],"lat":51.53095,"lon":-0.078505},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_97","url":"/Place/BikePoints_97","commonName":"Gloucester Road (North), Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003447","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279097580000","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.497924,"lon":-0.183834},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_98","url":"/Place/BikePoints_98","commonName":"Hampstead Road, Euston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000972","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279099080000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"54","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.525542,"lon":-0.138231},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_99","url":"/Place/BikePoints_99","commonName":"Old Quebec Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001085","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279099680000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.514577,"lon":-0.158264},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_100","url":"/Place/BikePoints_100","commonName":"Albert Embankment, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001059","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279099860000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.490435,"lon":-0.122806},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_101","url":"/Place/BikePoints_101","commonName":"Queen Street 1, Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000999","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279102680000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.511553,"lon":-0.09294},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_102","url":"/Place/BikePoints_102","commonName":"Jewry Street, Aldgate","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001045","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279102860000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.513406,"lon":-0.076793},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_103","url":"/Place/BikePoints_103","commonName":"Vicarage Gate, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003441","modified":"2021-01-02T11:38:52.663Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:38:52.663Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:38:52.663Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279103520000","modified":"2021-01-02T11:38:52.663Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:38:52.663Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:38:52.663Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T11:38:52.663Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T11:38:52.663Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T11:38:52.663Z"}],"children":[],"childrenUrls":[],"lat":51.504723,"lon":-0.192538},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_104","url":"/Place/BikePoints_104","commonName":"Crosswall, Tower","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000991","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279103760000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.511594,"lon":-0.077121},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_105","url":"/Place/BikePoints_105","commonName":"Westbourne Grove, Bayswater","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001041","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279105320000","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:24:36.08Z"}],"children":[],"childrenUrls":[],"lat":51.515529,"lon":-0.19024},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_106","url":"/Place/BikePoints_106","commonName":"Woodstock Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001042","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279106880000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.514105,"lon":-0.147301},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_107","url":"/Place/BikePoints_107","commonName":"Finsbury Leisure Centre, St. Luke's","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001049","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279107480000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.526008,"lon":-0.096317},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_108","url":"/Place/BikePoints_108","commonName":"Abbey Orchard Street, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003429","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279107720000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.498125,"lon":-0.132102},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_109","url":"/Place/BikePoints_109","commonName":"Soho Square , Soho","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001052","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279108320000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"42","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"57","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.515631,"lon":-0.132328},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_110","url":"/Place/BikePoints_110","commonName":"Wellington Road, St. John's Wood","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001055","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279108920000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.533043,"lon":-0.172528},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_111","url":"/Place/BikePoints_111","commonName":"Park Lane , Hyde Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001037","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279109160000","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:27:35.71Z"}],"children":[],"childrenUrls":[],"lat":51.510017,"lon":-0.157275},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_112","url":"/Place/BikePoints_112","commonName":"Stonecutter Street, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001061","modified":"2021-01-02T06:27:03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T06:27:03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T06:27:03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279115460000","modified":"2021-01-02T06:27:03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T06:27:03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T06:27:03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T06:27:03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T06:27:03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T06:27:03Z"}],"children":[],"childrenUrls":[],"lat":51.515809,"lon":-0.10527},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_113","url":"/Place/BikePoints_113","commonName":"Gloucester Road (Central), South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003435","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279116600000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.496462,"lon":-0.183289},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_114","url":"/Place/BikePoints_114","commonName":"Park Road (Baker Street), The Regent's Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001050","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279119900000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.524517,"lon":-0.158963},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_115","url":"/Place/BikePoints_115","commonName":"Braham Street, Aldgate","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001062","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279120680000","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:21:34.133Z"}],"children":[],"childrenUrls":[],"lat":51.514233,"lon":-0.073537},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_116","url":"/Place/BikePoints_116","commonName":"Little Argyll Street, West End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000995","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279122360000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.514499,"lon":-0.141423},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_117","url":"/Place/BikePoints_117","commonName":"Lollard Street, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000998","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279124220000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.49288,"lon":-0.114934},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_118","url":"/Place/BikePoints_118","commonName":"Rochester Row, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003457","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279124520000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.495827,"lon":-0.135478},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_119","url":"/Place/BikePoints_119","commonName":"Bath Street, St. Luke's","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000964","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279124760000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.525893,"lon":-0.090847},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_120","url":"/Place/BikePoints_120","commonName":"The Guildhall, Guildhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001044","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279187040000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.515735,"lon":-0.09308},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_121","url":"/Place/BikePoints_121","commonName":"Baker Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001086","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279189200000","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:28:39.097Z"}],"children":[],"childrenUrls":[],"lat":51.518913,"lon":-0.156166},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_122","url":"/Place/BikePoints_122","commonName":"Norton Folgate, Liverpool Street","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001068","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279190040000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.521113,"lon":-0.078869},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_123","url":"/Place/BikePoints_123","commonName":"St. John Street, Finsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000992","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279191300000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.52836,"lon":-0.104724},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_124","url":"/Place/BikePoints_124","commonName":"Eaton Square, Belgravia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001069","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279191540000","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:10:54.343Z"}],"children":[],"childrenUrls":[],"lat":51.496544,"lon":-0.150905},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_125","url":"/Place/BikePoints_125","commonName":"Borough High Street, The Borough","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000996","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279192200000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.500694,"lon":-0.094524},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_126","url":"/Place/BikePoints_126","commonName":"Museum of London, Barbican","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001043","modified":"2021-01-02T11:03:45.287Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:03:45.287Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:03:45.287Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279193340000","modified":"2021-01-02T11:03:45.287Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:03:45.287Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:03:45.287Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T11:03:45.287Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"51","modified":"2021-01-02T11:03:45.287Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"52","modified":"2021-01-02T11:03:45.287Z"}],"children":[],"childrenUrls":[],"lat":51.517821,"lon":-0.096496},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_127","url":"/Place/BikePoints_127","commonName":"Wood Street, Guildhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001063","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279193520000","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:01:46.06Z"}],"children":[],"childrenUrls":[],"lat":51.517008,"lon":-0.093885},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_128","url":"/Place/BikePoints_128","commonName":"Emperor's Gate, South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001116","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279194060000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.495362,"lon":-0.185296},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_129","url":"/Place/BikePoints_129","commonName":"Golden Square, Soho","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003451","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279198500000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.511897,"lon":-0.137043},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_130","url":"/Place/BikePoints_130","commonName":"Tower Gardens , Tower","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001071","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279198800000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.509506,"lon":-0.075459},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_131","url":"/Place/BikePoints_131","commonName":"Eversholt Street , Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001005","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279199280000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.533005,"lon":-0.136792},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_132","url":"/Place/BikePoints_132","commonName":"Bethnal Green Road, Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000973","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279199520000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"38","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.523648,"lon":-0.074754},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_133","url":"/Place/BikePoints_133","commonName":"Derry Street, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003436","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279200240000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.501364,"lon":-0.191462},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_134","url":"/Place/BikePoints_134","commonName":"Wapping High Street, Wapping","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001039","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279200900000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.504904,"lon":-0.06797},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_135","url":"/Place/BikePoints_135","commonName":"Clerkenwell Green, Clerkenwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001053","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279201080000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.52326,"lon":-0.104708},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_136","url":"/Place/BikePoints_136","commonName":"Queen Victoria Street, St. Paul's","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001048","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279201200000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.511961,"lon":-0.097441},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_138","url":"/Place/BikePoints_138","commonName":"Green Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003464","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279205220000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.512276,"lon":-0.157436},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_139","url":"/Place/BikePoints_139","commonName":"Lambeth Road, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001078","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279205460000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.494881,"lon":-0.117974},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_140","url":"/Place/BikePoints_140","commonName":"Finsbury Square , Moorgate","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001056","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279205580000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.520962,"lon":-0.085634},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_141","url":"/Place/BikePoints_141","commonName":"Chapel Place, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001003","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279210980000","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:12:56.2Z"}],"children":[],"childrenUrls":[],"lat":51.515308,"lon":-0.147203},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_142","url":"/Place/BikePoints_142","commonName":"West Cromwell Road, Earl's Court","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001001","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279211220000","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:21:34.133Z"}],"children":[],"childrenUrls":[],"lat":51.493724,"lon":-0.198286},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_143","url":"/Place/BikePoints_143","commonName":"Pont Street, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001114","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279211400000","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T12:09:00.893Z"}],"children":[],"childrenUrls":[],"lat":51.496886,"lon":-0.161203},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_144","url":"/Place/BikePoints_144","commonName":"Kennington Cross, Kennington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001093","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279211580000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"47","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.48894,"lon":-0.111435},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_145","url":"/Place/BikePoints_145","commonName":"Ilchester Place, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001115","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279212180000","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:24:36.08Z"}],"children":[],"childrenUrls":[],"lat":51.500743,"lon":-0.202759},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_146","url":"/Place/BikePoints_146","commonName":"Vauxhall Bridge , Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001046","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279212360000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.488365,"lon":-0.129361},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_148","url":"/Place/BikePoints_148","commonName":"Tachbrook Street, Victoria","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000965","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.492111,"lon":-0.138364},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_149","url":"/Place/BikePoints_149","commonName":"Kennington Road Post Office, Oval","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001073","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279215360000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.484788,"lon":-0.110683},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_150","url":"/Place/BikePoints_150","commonName":"Holy Trinity Brompton, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001002","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279215540000","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:20:34.75Z"}],"children":[],"childrenUrls":[],"lat":51.497056,"lon":-0.168917},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_151","url":"/Place/BikePoints_151","commonName":"Chepstow Villas, Notting Hill","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001120","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279215720000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.512136,"lon":-0.201554},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_152","url":"/Place/BikePoints_152","commonName":"Hampton Street, Walworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001118","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279215900000","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:22:34.65Z"}],"children":[],"childrenUrls":[],"lat":51.49217,"lon":-0.101536},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_153","url":"/Place/BikePoints_153","commonName":"Bayswater Road, Hyde Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001096","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279216080000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.511933,"lon":-0.174411},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_154","url":"/Place/BikePoints_154","commonName":"Waterloo Station 3, Waterloo","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001072","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.503791,"lon":-0.112824},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_155","url":"/Place/BikePoints_155","commonName":"Lexham Gardens, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001121","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279272660000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.495866,"lon":-0.191933},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_156","url":"/Place/BikePoints_156","commonName":"New Kent Road, The Borough","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000966","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279273080000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.494436,"lon":-0.092921},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_157","url":"/Place/BikePoints_157","commonName":"Wright's Lane, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001094","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279273200000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.500397,"lon":-0.193068},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_158","url":"/Place/BikePoints_158","commonName":"Trebovir Road, Earl's Court","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001113","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279273320000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.490853,"lon":-0.19617},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_159","url":"/Place/BikePoints_159","commonName":"Great Marlborough Street, Soho","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001125","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279273560000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"39","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.514619,"lon":-0.137841},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_160","url":"/Place/BikePoints_160","commonName":"Waterloo Place, St. James's","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003458","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279274280000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.506633,"lon":-0.131773},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_161","url":"/Place/BikePoints_161","commonName":"Guildhouse Street, Victoria","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003478","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279286940000","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:27:35.71Z"}],"children":[],"childrenUrls":[],"lat":51.492345,"lon":-0.141334},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_162","url":"/Place/BikePoints_162","commonName":"Southampton Place, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001123","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279287120000","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:01:46.06Z"}],"children":[],"childrenUrls":[],"lat":51.517606,"lon":-0.121328},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_163","url":"/Place/BikePoints_163","commonName":"Sloane Avenue, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003461","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279287300000","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:22:34.65Z"}],"children":[],"childrenUrls":[],"lat":51.493184,"lon":-0.167894},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_164","url":"/Place/BikePoints_164","commonName":"Cleveland Gardens, Bayswater","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001178","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279287600000","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:08:55.69Z"}],"children":[],"childrenUrls":[],"lat":51.515607,"lon":-0.183118},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_165","url":"/Place/BikePoints_165","commonName":"Orsett Terrace, Bayswater","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002585","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279287960000","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:09:56.113Z"}],"children":[],"childrenUrls":[],"lat":51.517932,"lon":-0.183716},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_166","url":"/Place/BikePoints_166","commonName":"Seville Street, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001177","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279288140000","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:16:34.933Z"}],"children":[],"childrenUrls":[],"lat":51.501855,"lon":-0.159237},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_167","url":"/Place/BikePoints_167","commonName":"Eccleston Place, Victoria","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003465","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.49395,"lon":-0.147624},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_168","url":"/Place/BikePoints_168","commonName":"Argyll Road, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003463","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279289400000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.500401,"lon":-0.195455},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_169","url":"/Place/BikePoints_169","commonName":"Porchester Place, Paddington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003477","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279289760000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.514746,"lon":-0.165164},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_170","url":"/Place/BikePoints_170","commonName":"Hardwick Street, Clerkenwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001057","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279290180000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.527842,"lon":-0.108068},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_171","url":"/Place/BikePoints_171","commonName":"Collingham Gardens, Earl's Court","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003459","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279291200000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.491615,"lon":-0.186753},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_172","url":"/Place/BikePoints_172","commonName":"Sumner Place, South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001124","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279291500000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.491211,"lon":-0.173715},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_173","url":"/Place/BikePoints_173","commonName":"Waterloo Road, South Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001176","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279292700000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.50486,"lon":-0.113001},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_174","url":"/Place/BikePoints_174","commonName":"Strand, Strand","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001100","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279295940000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.512529,"lon":-0.115163},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_175","url":"/Place/BikePoints_175","commonName":"Worship Street, Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000997","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1529674980000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"46","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"51","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.521668,"lon":-0.079608},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_176","url":"/Place/BikePoints_176","commonName":"Gloucester Terrace, Bayswater","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001173","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279297560000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.517919,"lon":-0.188098},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_177","url":"/Place/BikePoints_177","commonName":"Ashley Place, Victoria","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001122","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279297740000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.49616,"lon":-0.140947},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_178","url":"/Place/BikePoints_178","commonName":"Warwick Square, Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003460","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279297920000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.489856,"lon":-0.141923},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_180","url":"/Place/BikePoints_180","commonName":"North Audley Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001126","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279298220000","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:10:54.343Z"}],"children":[],"childrenUrls":[],"lat":51.512911,"lon":-0.153645},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_181","url":"/Place/BikePoints_181","commonName":"Belgrave Square, Belgravia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003473","modified":"2021-01-02T12:00:01.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:00:01.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:00:01.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279298460000","modified":"2021-01-02T12:00:01.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:00:01.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:00:01.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T12:00:01.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T12:00:01.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T12:00:01.09Z"}],"children":[],"childrenUrls":[],"lat":51.499412,"lon":-0.152317},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_182","url":"/Place/BikePoints_182","commonName":"Bell Street , Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001166","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279363140000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.522029,"lon":-0.165842},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_183","url":"/Place/BikePoints_183","commonName":"Riverlight North, Nine Elms","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001165","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279364160000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.482362,"lon":-0.136123},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_184","url":"/Place/BikePoints_184","commonName":"Portland Place, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001164","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279364280000","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.520715,"lon":-0.145211},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_185","url":"/Place/BikePoints_185","commonName":"Alderney Street, Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001174","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279365360000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.488057,"lon":-0.140741},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_186","url":"/Place/BikePoints_186","commonName":"South Wharf Road, Paddington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001167","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279365480000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.517335,"lon":-0.17581},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_187","url":"/Place/BikePoints_187","commonName":"Queen's Gate (South), South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001172","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279365720000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.492479,"lon":-0.178433},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_188","url":"/Place/BikePoints_188","commonName":"Nutford Place, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001112","modified":"2021-01-02T12:07:59.457Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:07:59.457Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:07:59.457Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279376760000","modified":"2021-01-02T12:07:59.457Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:07:59.457Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:07:59.457Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T12:07:59.457Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T12:07:59.457Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T12:07:59.457Z"}],"children":[],"childrenUrls":[],"lat":51.516517,"lon":-0.164393},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_189","url":"/Place/BikePoints_189","commonName":"Claremont Square, Angel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001104","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279377180000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.531666,"lon":-0.109914},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_190","url":"/Place/BikePoints_190","commonName":"Rampayne Street, Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001106","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279381080000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.489975,"lon":-0.132845},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_191","url":"/Place/BikePoints_191","commonName":"Hyde Park Corner, Hyde Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001075","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279383120000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.503117,"lon":-0.15352},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_192","url":"/Place/BikePoints_192","commonName":"Wardour Street, Soho","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001163","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279383300000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.512515,"lon":-0.133201},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_193","url":"/Place/BikePoints_193","commonName":"Bankside Mix, Bankside","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000963","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279392479356","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"45","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"60","modified":"2021-01-02T13:20:34.75Z"}],"children":[],"childrenUrls":[],"lat":51.505817,"lon":-0.100186},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_194","url":"/Place/BikePoints_194","commonName":"Hop Exchange, The Borough","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000960","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279392479395","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"53","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"56","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.504627,"lon":-0.091773},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_195","url":"/Place/BikePoints_195","commonName":"Milroy Walk, South Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000959","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279392479432","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.507244,"lon":-0.106237},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_196","url":"/Place/BikePoints_196","commonName":"Union Street, The Borough","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000961","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279392479471","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.503688,"lon":-0.098497},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_197","url":"/Place/BikePoints_197","commonName":"Stamford Street, South Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000962","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279392479520","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.505569,"lon":-0.111606},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_199","url":"/Place/BikePoints_199","commonName":"Great Tower Street, Monument","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001080","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279441800000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.510484,"lon":-0.082989},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_200","url":"/Place/BikePoints_200","commonName":"LMU Commercial Road, Whitechapel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001105","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279441920000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.514924,"lon":-0.066078},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_201","url":"/Place/BikePoints_201","commonName":"Dorset Square, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001162","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279444080000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.522596,"lon":-0.161113},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_202","url":"/Place/BikePoints_202","commonName":"Leman Street, Aldgate","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001102","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279444320000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.512363,"lon":-0.069542},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_203","url":"/Place/BikePoints_203","commonName":"West Smithfield Rotunda, Farringdon","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001040","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279445580000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.518218,"lon":-0.100791},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_204","url":"/Place/BikePoints_204","commonName":"Margery Street, Clerkenwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003468","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279466640000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.526599,"lon":-0.112432},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_206","url":"/Place/BikePoints_206","commonName":"New Road 1 , Whitechapel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001171","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279471380000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.518154,"lon":-0.062697},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_207","url":"/Place/BikePoints_207","commonName":"Grosvenor Crescent, Belgravia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001169","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279558140000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.501352,"lon":-0.153194},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_208","url":"/Place/BikePoints_208","commonName":"Mallory Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001175","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279472580000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.525051,"lon":-0.166304},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_209","url":"/Place/BikePoints_209","commonName":"Denyer Street, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003454","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279529160000","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:25:35.09Z"}],"children":[],"childrenUrls":[],"lat":51.493583,"lon":-0.165101},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_210","url":"/Place/BikePoints_210","commonName":"Hinde Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003476","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279535160000","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T12:41:03.86Z"}],"children":[],"childrenUrls":[],"lat":51.516814,"lon":-0.151926},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_211","url":"/Place/BikePoints_211","commonName":"Cadogan Place, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003469","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279535820000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.494645,"lon":-0.158105},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_212","url":"/Place/BikePoints_212","commonName":"Campden Hill Road, Notting Hill","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003487","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279536840000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.506584,"lon":-0.199004},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_213","url":"/Place/BikePoints_213","commonName":"Wellington Arch, Hyde Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001109","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279537020000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.50274,"lon":-0.149569},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_214","url":"/Place/BikePoints_214","commonName":"Endsleigh Gardens, Euston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001079","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279537200000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.526838,"lon":-0.130504},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_215","url":"/Place/BikePoints_215","commonName":"Moorfields, Moorgate","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001092","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279537380000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"47","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"54","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.519069,"lon":-0.088285},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_216","url":"/Place/BikePoints_216","commonName":"Old Brompton Road, South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003479","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279537920000","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:21:34.133Z"}],"children":[],"childrenUrls":[],"lat":51.490945,"lon":-0.18119},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_217","url":"/Place/BikePoints_217","commonName":"Wormwood Street, Liverpool Street","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002587","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279538040000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.516154,"lon":-0.082422},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_218","url":"/Place/BikePoints_218","commonName":"St. Luke's Church, Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003486","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279543740000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.489716,"lon":-0.170194},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_219","url":"/Place/BikePoints_219","commonName":"Bramham Gardens, Earl's Court","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001183","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279545900000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.490163,"lon":-0.190393},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_220","url":"/Place/BikePoints_220","commonName":"Chelsea Green, Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001179","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279546320000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.490664,"lon":-0.166485},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_221","url":"/Place/BikePoints_221","commonName":"Horseferry Road, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001170","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279552200000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.494816,"lon":-0.130458},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_222","url":"/Place/BikePoints_222","commonName":"Knightsbridge, Hyde Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001101","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279614120000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"42","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"43","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.502757,"lon":-0.155349},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_223","url":"/Place/BikePoints_223","commonName":"Rodney Road , Walworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003481","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279614420000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.491484,"lon":-0.09022},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_224","url":"/Place/BikePoints_224","commonName":"Queensway, Kensington Gardens","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001150","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279615020000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.51031,"lon":-0.187402},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_225","url":"/Place/BikePoints_225","commonName":"Notting Hill Gate Station, Notting Hill","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001182","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279616280000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.509353,"lon":-0.196422},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_226","url":"/Place/BikePoints_226","commonName":"Charles II Street, West End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003488","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279616520000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.508446,"lon":-0.131961},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_227","url":"/Place/BikePoints_227","commonName":"Great Percy Street, Clerkenwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003470","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279616700000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.528915,"lon":-0.11548},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_228","url":"/Place/BikePoints_228","commonName":"St. James's Square, St. James's","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001067","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279616880000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"40","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.507424,"lon":-0.134621},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_229","url":"/Place/BikePoints_229","commonName":"Whitehall Place, Strand","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001151","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279617780000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.506543,"lon":-0.123179},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_230","url":"/Place/BikePoints_230","commonName":"Poured Lines, Bankside","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001144","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279618020000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.506692,"lon":-0.103137},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_231","url":"/Place/BikePoints_231","commonName":"Queen's Gate (Central), South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001089","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279622820000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.493967,"lon":-0.178732},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_232","url":"/Place/BikePoints_232","commonName":"Carey Street, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001139","modified":"2021-01-02T08:36:34.877Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T08:36:34.877Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T08:36:34.877Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279623240000","modified":"2021-01-02T08:36:34.877Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T08:36:34.877Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T08:36:34.877Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T08:36:34.877Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T08:36:34.877Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T08:36:34.877Z"}],"children":[],"childrenUrls":[],"lat":51.51501,"lon":-0.112753},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_233","url":"/Place/BikePoints_233","commonName":"Pall Mall East, West End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001153","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279624260000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.50777,"lon":-0.130699},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_234","url":"/Place/BikePoints_234","commonName":"Liverpool Road (N1 Centre), Angel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001081","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279624680000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.534504,"lon":-0.106992},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_235","url":"/Place/BikePoints_235","commonName":"Kennington Road , Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001154","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279625640000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.495718,"lon":-0.110889},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_236","url":"/Place/BikePoints_236","commonName":"Fashion Street, Whitechapel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003483","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279625940000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.51838,"lon":-0.073438},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_237","url":"/Place/BikePoints_237","commonName":"Dock Street, Wapping","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003467","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279799040000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.509786,"lon":-0.068161},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_238","url":"/Place/BikePoints_238","commonName":"Frampton Street, Paddington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001099","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279627920000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.523353,"lon":-0.175116},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_239","url":"/Place/BikePoints_239","commonName":"Warren Street Station, Euston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001090","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279628160000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.524438,"lon":-0.138019},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_240","url":"/Place/BikePoints_240","commonName":"Colombo Street, Southwark","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003472","modified":"2021-01-02T12:03:57.94Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:03:57.94Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:03:57.94Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279628280000","modified":"2021-01-02T12:03:57.94Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:03:57.94Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:03:57.94Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T12:03:57.94Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T12:03:57.94Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T12:03:57.94Z"}],"children":[],"childrenUrls":[],"lat":51.505459,"lon":-0.105692},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_242","url":"/Place/BikePoints_242","commonName":"Beaumont Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003482","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279628640000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.522008,"lon":-0.151359},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_243","url":"/Place/BikePoints_243","commonName":"Gloucester Street, Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001103","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279628940000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.490962,"lon":-0.139625},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_244","url":"/Place/BikePoints_244","commonName":"Earnshaw Street , Covent Garden","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001145","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279629240000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.516118,"lon":-0.128585},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_245","url":"/Place/BikePoints_245","commonName":"Grosvenor Road, Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001140","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279629660000","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:22:34.65Z"}],"children":[],"childrenUrls":[],"lat":51.485357,"lon":-0.142207},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_246","url":"/Place/BikePoints_246","commonName":"Berry Street, Clerkenwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001159","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279639740000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.522853,"lon":-0.099994},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_247","url":"/Place/BikePoints_247","commonName":"St. John's Wood Church, The Regent's Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001091","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279639920000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"50","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.530529,"lon":-0.167515},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_248","url":"/Place/BikePoints_248","commonName":"Triangle Car Park, Hyde Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001088","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279640160000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.506451,"lon":-0.170279},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_249","url":"/Place/BikePoints_249","commonName":"Harper Road, The Borough","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001137","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279640400000","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"42","modified":"2021-01-02T13:21:34.133Z"}],"children":[],"childrenUrls":[],"lat":51.498597,"lon":-0.096191},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_250","url":"/Place/BikePoints_250","commonName":"Royal Avenue 1, Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003440","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279641000000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.489932,"lon":-0.162727},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_251","url":"/Place/BikePoints_251","commonName":"Brushfield Street, Liverpool Street","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001161","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279700160000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.518908,"lon":-0.079249},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_252","url":"/Place/BikePoints_252","commonName":"Jubilee Gardens, South Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001111","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279700640000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.504636,"lon":-0.116542},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_253","url":"/Place/BikePoints_253","commonName":"Shoreditch Park, Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001051","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279700820000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.534042,"lon":-0.086379},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_254","url":"/Place/BikePoints_254","commonName":"Chadwell Street, Angel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003471","modified":"2021-01-02T12:22:07.27Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:22:07.27Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:22:07.27Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279700940000","modified":"2021-01-02T12:22:07.27Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:22:07.27Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:22:07.27Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T12:22:07.27Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T12:22:07.27Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T12:22:07.27Z"}],"children":[],"childrenUrls":[],"lat":51.530515,"lon":-0.106408},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_255","url":"/Place/BikePoints_255","commonName":"Clifton Road, Maida Vale","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001147","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279702560000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.525575,"lon":-0.179592},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_256","url":"/Place/BikePoints_256","commonName":"Houghton Street, Strand","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003484","modified":"2021-01-01T18:21:10.77Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-01T18:21:10.77Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T18:21:10.77Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279708020000","modified":"2021-01-01T18:21:10.77Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-01T18:21:10.77Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T18:21:10.77Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-01T18:21:10.77Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-01T18:21:10.77Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-01T18:21:10.77Z"}],"children":[],"childrenUrls":[],"lat":51.51362,"lon":-0.116764},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_257","url":"/Place/BikePoints_257","commonName":"Westminster University, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001194","modified":"2021-01-02T11:05:57.193Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:05:57.193Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:05:57.193Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279708140000","modified":"2021-01-02T11:05:57.193Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:05:57.193Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:05:57.193Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T11:05:57.193Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T11:05:57.193Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T11:05:57.193Z"}],"children":[],"childrenUrls":[],"lat":51.522481,"lon":-0.154907},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_258","url":"/Place/BikePoints_258","commonName":"Kensington Gore, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001193","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279708380000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.501432,"lon":-0.178656},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_259","url":"/Place/BikePoints_259","commonName":"Bourne Street, Belgravia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001180","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279709100000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.490959,"lon":-0.153233},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_260","url":"/Place/BikePoints_260","commonName":"Broadwick Street, Soho","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003489","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279711020000","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T12:45:04.947Z"}],"children":[],"childrenUrls":[],"lat":51.513684,"lon":-0.13558},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_261","url":"/Place/BikePoints_261","commonName":"Princes Square, Bayswater","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003491","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279711200000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.513489,"lon":-0.191351},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_262","url":"/Place/BikePoints_262","commonName":"LSBU (Borough Road), Elephant & Castle","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001095","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279711620000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.498744,"lon":-0.103132},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_263","url":"/Place/BikePoints_263","commonName":"St. Mary Axe, Aldgate","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001184","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279712160000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.514225,"lon":-0.08066},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_264","url":"/Place/BikePoints_264","commonName":"Tysoe Street, Clerkenwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001146","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279712520000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.526443,"lon":-0.109256},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_265","url":"/Place/BikePoints_265","commonName":"Southwick Street, Paddington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003490","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279714320000","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:17:33.217Z"}],"children":[],"childrenUrls":[],"lat":51.515953,"lon":-0.169249},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_266","url":"/Place/BikePoints_266","commonName":"Queen's Gate (North), Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001204","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279714560000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.501026,"lon":-0.180246},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_267","url":"/Place/BikePoints_267","commonName":"Regency Street, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001155","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279714740000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.49206,"lon":-0.132224},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_268","url":"/Place/BikePoints_268","commonName":"Belgrave Road, Victoria","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001087","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279714920000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.493204,"lon":-0.144132},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_269","url":"/Place/BikePoints_269","commonName":"Empire Square, The Borough","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001209","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279715100000","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"46","modified":"2021-01-02T13:15:33.327Z"}],"children":[],"childrenUrls":[],"lat":51.500823,"lon":-0.08974},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_270","url":"/Place/BikePoints_270","commonName":"Kennington Lane Rail Bridge, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001190","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279720380000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.486343,"lon":-0.122492},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_271","url":"/Place/BikePoints_271","commonName":"London Zoo, The Regent's Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001136","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279720920000","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.535836,"lon":-0.156285},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_272","url":"/Place/BikePoints_272","commonName":"Baylis Road, Waterloo","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001133","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279721220000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.501444,"lon":-0.110699},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_273","url":"/Place/BikePoints_273","commonName":"Belvedere Road 1, South Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001186","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279721400000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"38","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.506133,"lon":-0.114686},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_274","url":"/Place/BikePoints_274","commonName":"Warwick Road, Olympia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001134","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279721580000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.496712,"lon":-0.205284},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_275","url":"/Place/BikePoints_275","commonName":"Barbican Centre, Barbican","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001191","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279721880000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.520044,"lon":-0.092176},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_276","url":"/Place/BikePoints_276","commonName":"Lower Thames Street, Monument","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001098","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279723200000","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.509301,"lon":-0.084985},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_277","url":"/Place/BikePoints_277","commonName":"Kensington Church Street, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001143","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279723320000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.503157,"lon":-0.191496},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_278","url":"/Place/BikePoints_278","commonName":"Tooley Street, Bermondsey","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001142","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279723500000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.503493,"lon":-0.07962},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_279","url":"/Place/BikePoints_279","commonName":"North Wharf Road, Paddington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001108","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279723740000","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T12:23:04.15Z"}],"children":[],"childrenUrls":[],"lat":51.518622,"lon":-0.176645},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_280","url":"/Place/BikePoints_280","commonName":"Royal Avenue 2, Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003462","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279726440000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.490083,"lon":-0.162418},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_281","url":"/Place/BikePoints_281","commonName":"Smith Square, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003480","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279726620000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.495805,"lon":-0.127575},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_283","url":"/Place/BikePoints_283","commonName":"Kingsway, Covent Garden","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001141","modified":"2021-01-02T09:24:20.46Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T09:24:20.46Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T09:24:20.46Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279727220000","modified":"2021-01-02T09:24:20.46Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T09:24:20.46Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T09:24:20.46Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T09:24:20.46Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T09:24:20.46Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T09:24:20.46Z"}],"children":[],"childrenUrls":[],"lat":51.514409,"lon":-0.118478},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_284","url":"/Place/BikePoints_284","commonName":"Lambeth North Station, Waterloo","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001117","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279727580000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.49914,"lon":-0.112031},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_286","url":"/Place/BikePoints_286","commonName":"St. John's Wood Road, St. John's Wood","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001187","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279727880000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.527294,"lon":-0.174653},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_287","url":"/Place/BikePoints_287","commonName":"Bedford Way, Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001156","modified":"2021-01-02T09:44:32.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T09:44:32.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T09:44:32.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279728060000","modified":"2021-01-02T09:44:32.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T09:44:32.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T09:44:32.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T09:44:32.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T09:44:32.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T09:44:32.48Z"}],"children":[],"childrenUrls":[],"lat":51.523673,"lon":-0.128377},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_288","url":"/Place/BikePoints_288","commonName":"Elizabeth Bridge, Victoria","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001138","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279793820000","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:28:39.097Z"}],"children":[],"childrenUrls":[],"lat":51.492369,"lon":-0.147478},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_289","url":"/Place/BikePoints_289","commonName":"South Audley Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003493","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279794060000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.50923,"lon":-0.151296},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_290","url":"/Place/BikePoints_290","commonName":"St Mary's Hospital, Paddington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003496","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279795140000","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:26:35.367Z"}],"children":[],"childrenUrls":[],"lat":51.518268,"lon":-0.171103},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_291","url":"/Place/BikePoints_291","commonName":"Claverton Street, Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001135","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279800420000","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T12:09:00.893Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T12:09:00.893Z"}],"children":[],"childrenUrls":[],"lat":51.484839,"lon":-0.138089},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_292","url":"/Place/BikePoints_292","commonName":"Montpelier Street, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001206","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279800600000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.498884,"lon":-0.165471},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_293","url":"/Place/BikePoints_293","commonName":"Kensington Olympia Station, Olympia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001214","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279800780000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.498157,"lon":-0.209494},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_294","url":"/Place/BikePoints_294","commonName":"St. George's Square, Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001195","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279800900000","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:29:35.213Z"}],"children":[],"childrenUrls":[],"lat":51.488226,"lon":-0.135635},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_295","url":"/Place/BikePoints_295","commonName":"Swan Street, The Borough","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001216","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279801080000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.500296,"lon":-0.092762},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_296","url":"/Place/BikePoints_296","commonName":"Knaresborough Place, Earl's Court","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200069","modified":"2021-01-02T12:26:05.833Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:26:05.833Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:26:05.833Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1377258960000","modified":"2021-01-02T12:26:05.833Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:26:05.833Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:26:05.833Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T12:26:05.833Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T12:26:05.833Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T12:26:05.833Z"}],"children":[],"childrenUrls":[],"lat":51.493631,"lon":-0.190603},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_297","url":"/Place/BikePoints_297","commonName":"Geraldine Street, Elephant & Castle","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003498","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279801560000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.496127,"lon":-0.106},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_298","url":"/Place/BikePoints_298","commonName":"Curlew Street, Shad Thames","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001213","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279805640000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.502279,"lon":-0.074189},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_299","url":"/Place/BikePoints_299","commonName":"Vincent Square, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001196","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279808160000","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:08:55.69Z"}],"children":[],"childrenUrls":[],"lat":51.493985,"lon":-0.136928},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_300","url":"/Place/BikePoints_300","commonName":"Serpentine Car Park, Hyde Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001217","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279808700000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.505014,"lon":-0.17306},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_301","url":"/Place/BikePoints_301","commonName":"Marylebone Lane, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001152","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279809000000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.514759,"lon":-0.148105},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_302","url":"/Place/BikePoints_302","commonName":"Putney Pier, Wandsworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003492","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279812360000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.466907,"lon":-0.216573},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_303","url":"/Place/BikePoints_303","commonName":"Albert Gate, Hyde Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001132","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279812720000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.502953,"lon":-0.158456},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_306","url":"/Place/BikePoints_306","commonName":"Rathbone Street, Fitzrovia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003497","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279816260000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.518162,"lon":-0.135025},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_307","url":"/Place/BikePoints_307","commonName":"Black Lion Gate, Kensington Gardens","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001157","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279816500000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.509908,"lon":-0.187842},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_308","url":"/Place/BikePoints_308","commonName":"Long Lane , Bermondsey","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001189","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279816740000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.499075,"lon":-0.085666},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_309","url":"/Place/BikePoints_309","commonName":"Embankment (Savoy), Strand","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001192","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279875060000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.509631,"lon":-0.119047},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_310","url":"/Place/BikePoints_310","commonName":"Black Prince Road, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001205","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279879560000","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:16:34.933Z"}],"children":[],"childrenUrls":[],"lat":51.490867,"lon":-0.116911},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_311","url":"/Place/BikePoints_311","commonName":"Foley Street, Fitzrovia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003494","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279880100000","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:06:51.99Z"}],"children":[],"childrenUrls":[],"lat":51.519181,"lon":-0.140485},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_312","url":"/Place/BikePoints_312","commonName":"Grove End Road, St. John's Wood","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001130","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279880340000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.530889,"lon":-0.17677},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_313","url":"/Place/BikePoints_313","commonName":"Wells Street, Fitzrovia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003495","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279880520000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"38","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.517344,"lon":-0.138072},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_314","url":"/Place/BikePoints_314","commonName":"Tyers Gate, Bermondsey","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003485","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279884480000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.500889,"lon":-0.083159},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_315","url":"/Place/BikePoints_315","commonName":"The Tennis Courts, The Regent's Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001199","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279884660000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.525367,"lon":-0.153463},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_316","url":"/Place/BikePoints_316","commonName":"Warwick Row, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"000968","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279884840000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"1539845760000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.497998,"lon":-0.14296},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_317","url":"/Place/BikePoints_317","commonName":"Dickens Square, Borough","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001208","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279885080000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.496791,"lon":-0.093913},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_318","url":"/Place/BikePoints_318","commonName":"Sackville Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001197","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279885320000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.510048,"lon":-0.138846},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_319","url":"/Place/BikePoints_319","commonName":"Baldwin Street, St. Luke's","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003500","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279890360000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.527025,"lon":-0.088542},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_320","url":"/Place/BikePoints_320","commonName":"Queen Mother Sports Centre, Victoria","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001148","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279890840000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.493573,"lon":-0.139956},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_321","url":"/Place/BikePoints_321","commonName":"Bermondsey Street, Bermondsey","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002637","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279891020000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.497855,"lon":-0.081608},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_322","url":"/Place/BikePoints_322","commonName":"Palissy Street, Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003502","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279891920000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.526293,"lon":-0.073955},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_323","url":"/Place/BikePoints_323","commonName":"Clifton Street, Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003501","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279892040000","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:21:34.133Z"}],"children":[],"childrenUrls":[],"lat":51.523196,"lon":-0.083067},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_324","url":"/Place/BikePoints_324","commonName":"Ontario Street, Elephant & Castle","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001200","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279894920000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.49652,"lon":-0.101384},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_325","url":"/Place/BikePoints_325","commonName":"St. Martin's Street, West End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001158","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279896660000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.509087,"lon":-0.129697},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_326","url":"/Place/BikePoints_326","commonName":"Graham Street, Angel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001131","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279896840000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.532661,"lon":-0.099981},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_327","url":"/Place/BikePoints_327","commonName":"New North Road 1, Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001128","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280133420000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.53095,"lon":-0.085603},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_328","url":"/Place/BikePoints_328","commonName":"New North Road 2, Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002641","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280133540000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.53114,"lon":-0.086016},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_329","url":"/Place/BikePoints_329","commonName":"Prince Albert Road, The Regent's Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002636","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280133720000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.535892,"lon":-0.160854},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_330","url":"/Place/BikePoints_330","commonName":"Eastbourne Mews, Paddington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001203","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280141280000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.516417,"lon":-0.179135},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_331","url":"/Place/BikePoints_331","commonName":"Bunhill Row, Moorgate","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001211","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280141460000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.520858,"lon":-0.089887},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_332","url":"/Place/BikePoints_332","commonName":"Nevern Place, Earl's Court","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001210","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280142360000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.493343,"lon":-0.194757},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_333","url":"/Place/BikePoints_333","commonName":"Palace Gardens Terrace, Notting Hill","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002633","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280142540000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.508605,"lon":-0.193764},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_334","url":"/Place/BikePoints_334","commonName":"Concert Hall Approach 1, South Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002635","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280147580000","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:29:35.213Z"}],"children":[],"childrenUrls":[],"lat":51.505044,"lon":-0.115851},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_335","url":"/Place/BikePoints_335","commonName":"Tavistock Street, Covent Garden","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001207","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280152560000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.511968,"lon":-0.120718},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_336","url":"/Place/BikePoints_336","commonName":"Concert Hall Approach 2, South Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001212","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280152800000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.504942,"lon":-0.115533},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_337","url":"/Place/BikePoints_337","commonName":"Pembridge Villas, Notting Hill","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002589","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280153100000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.511084,"lon":-0.197524},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_338","url":"/Place/BikePoints_338","commonName":"Wellington Street , Strand","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001202","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280158740000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.511756,"lon":-0.119643},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_339","url":"/Place/BikePoints_339","commonName":"Risinghill Street, Angel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001127","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280160600000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.533319,"lon":-0.111781},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_340","url":"/Place/BikePoints_340","commonName":"Bank of England Museum, Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001201","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280248620000","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:28:39.097Z"}],"children":[],"childrenUrls":[],"lat":51.514441,"lon":-0.087587},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_341","url":"/Place/BikePoints_341","commonName":"Craven Street, Strand","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001160","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280222160000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.508103,"lon":-0.126021},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_343","url":"/Place/BikePoints_343","commonName":"London Zoo Car Park, The Regent's Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001188","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280224260000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.536922,"lon":-0.150181},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_344","url":"/Place/BikePoints_344","commonName":"Goswell Road (City Uni), Finsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001222","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280226120000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.528246,"lon":-0.101026},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_345","url":"/Place/BikePoints_345","commonName":"Flood Street, Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001218","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1280229720000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.488023,"lon":-0.166878},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_347","url":"/Place/BikePoints_347","commonName":"Lower Marsh, Waterloo","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001219","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1283762460000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.500139,"lon":-0.113936},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_348","url":"/Place/BikePoints_348","commonName":"Grosvenor Square, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"010627","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1284540540000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.51217,"lon":-0.150481},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_349","url":"/Place/BikePoints_349","commonName":"St. George Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001221","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1284543120000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.51196,"lon":-0.142783},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_350","url":"/Place/BikePoints_350","commonName":"Queen's Gate, Kensington Gardens","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001231","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1285756260000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.501715,"lon":-0.179854},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_351","url":"/Place/BikePoints_351","commonName":"Macclesfield Rd, St Lukes","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001226","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1286790480000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.529423,"lon":-0.097122},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_352","url":"/Place/BikePoints_352","commonName":"Vauxhall Street, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001224","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1286796360000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.486965,"lon":-0.116625},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_353","url":"/Place/BikePoints_353","commonName":"Greycoat Street , Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"010623","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1287652080000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.494591,"lon":-0.134234},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_354","url":"/Place/BikePoints_354","commonName":"Northumberland Avenue, Strand","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001097","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.506767,"lon":-0.123702},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_356","url":"/Place/BikePoints_356","commonName":"South Kensington Station, South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002685","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1288009080000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.494412,"lon":-0.173881},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_357","url":"/Place/BikePoints_357","commonName":"Howland Street, Fitzrovia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002691","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1288092420000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.520994,"lon":-0.139016},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_358","url":"/Place/BikePoints_358","commonName":"High Holborn , Covent Garden","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001229","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1290079860000","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.516226,"lon":-0.124826},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_359","url":"/Place/BikePoints_359","commonName":"Butler Place, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002662","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1288950960000","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:04:50.03Z"}],"children":[],"childrenUrls":[],"lat":51.497829,"lon":-0.13544},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_360","url":"/Place/BikePoints_360","commonName":"Howick Place, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002666","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1288958160000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.496753,"lon":-0.138733},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_361","url":"/Place/BikePoints_361","commonName":"Waterloo Station 2, Waterloo","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002692","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1291902600000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"55","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.503919,"lon":-0.113426},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_362","url":"/Place/BikePoints_362","commonName":"Royal College Street, Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002686","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1290080220000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"44","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"57","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.536264,"lon":-0.133952},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_363","url":"/Place/BikePoints_363","commonName":"Lord's, St. John's Wood","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002665","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1289911800000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.529121,"lon":-0.171185},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_364","url":"/Place/BikePoints_364","commonName":"Store Street, Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003507","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1290080640000","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:28:39.097Z"}],"children":[],"childrenUrls":[],"lat":51.519572,"lon":-0.13214},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_365","url":"/Place/BikePoints_365","commonName":"City Road, Angel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002690","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1290603600000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"47","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.530344,"lon":-0.100168},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_366","url":"/Place/BikePoints_366","commonName":"Millennium Hotel, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001230","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1290686880000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.510919,"lon":-0.151126},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_367","url":"/Place/BikePoints_367","commonName":"Harrowby Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002680","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.517372,"lon":-0.164207},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_368","url":"/Place/BikePoints_368","commonName":"Harriet Street, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002681","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1291201680000","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:24:36.08Z"}],"children":[],"childrenUrls":[],"lat":51.500241,"lon":-0.15934},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_370","url":"/Place/BikePoints_370","commonName":"Paddington Green, Paddington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002670","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1291647300000","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:24:36.08Z"}],"children":[],"childrenUrls":[],"lat":51.520205,"lon":-0.174593},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_371","url":"/Place/BikePoints_371","commonName":"King Edward Walk, Waterloo","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002639","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1291712820000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.49775,"lon":-0.10988},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_372","url":"/Place/BikePoints_372","commonName":"Sardinia Street, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002649","modified":"2021-01-02T11:06:47.537Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:06:47.537Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:06:47.537Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1291713000000","modified":"2021-01-02T11:06:47.537Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:06:47.537Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:06:47.537Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T11:06:47.537Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T11:06:47.537Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T11:06:47.537Z"}],"children":[],"childrenUrls":[],"lat":51.515208,"lon":-0.117863},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_373","url":"/Place/BikePoints_373","commonName":"Prince Consort Road, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003499","modified":"2021-01-02T09:52:33.533Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T09:52:33.533Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T09:52:33.533Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1295428320000","modified":"2021-01-02T09:52:33.533Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T09:52:33.533Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T09:52:33.533Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T09:52:33.533Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T09:52:33.533Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T09:52:33.533Z"}],"children":[],"childrenUrls":[],"lat":51.499806,"lon":-0.176415},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_374","url":"/Place/BikePoints_374","commonName":"Waterloo Station 1, Waterloo","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002696","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1291725720000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.504027,"lon":-0.113864},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_375","url":"/Place/BikePoints_375","commonName":"Kensington Town Hall, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"010632","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1291805820000","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T12:31:02.38Z"}],"children":[],"childrenUrls":[],"lat":51.501945,"lon":-0.194392},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_376","url":"/Place/BikePoints_376","commonName":"Millbank Tower, Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002683","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1294660980000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.491884,"lon":-0.125674},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_377","url":"/Place/BikePoints_377","commonName":"Waterloo Bridge, South Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002648","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1295265420000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.505354,"lon":-0.113656},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_378","url":"/Place/BikePoints_378","commonName":"Natural History Museum, South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002677","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1296121500000","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"42","modified":"2021-01-02T13:24:36.08Z"}],"children":[],"childrenUrls":[],"lat":51.495592,"lon":-0.179077},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_379","url":"/Place/BikePoints_379","commonName":"Turquoise Island, Notting Hill","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002682","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1296121680000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.514311,"lon":-0.200838},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_380","url":"/Place/BikePoints_380","commonName":"Stanhope Gate, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003506","modified":"2021-01-02T08:00:27.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T08:00:27.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T08:00:27.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1296125400000","modified":"2021-01-02T08:00:27.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T08:00:27.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T08:00:27.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T08:00:27.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T08:00:27.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T08:00:27.367Z"}],"children":[],"childrenUrls":[],"lat":51.506864,"lon":-0.150666},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_381","url":"/Place/BikePoints_381","commonName":"Charlotte Street, Fitzrovia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002669","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1296203760000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.51953,"lon":-0.135777},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_382","url":"/Place/BikePoints_382","commonName":"Farm Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002678","modified":"2021-01-02T11:33:53.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:33:53.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:33:53.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1297159320000","modified":"2021-01-02T11:33:53.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:33:53.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:33:53.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T11:33:53.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T11:33:53.51Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T11:33:53.51Z"}],"children":[],"childrenUrls":[],"lat":51.509351,"lon":-0.147449},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_383","url":"/Place/BikePoints_383","commonName":"Frith Street, Soho","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002660","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1296649200000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.513103,"lon":-0.131213},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_384","url":"/Place/BikePoints_384","commonName":"Marloes Road, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003505","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1296731880000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.496481,"lon":-0.192404},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_386","url":"/Place/BikePoints_386","commonName":"Moor Street, Soho","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"003504","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1296732540000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.513527,"lon":-0.13011},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_387","url":"/Place/BikePoints_387","commonName":"Fire Brigade Pier, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002703","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1297077540000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.493699,"lon":-0.121394},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_388","url":"/Place/BikePoints_388","commonName":"Southampton Street, Strand","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001228","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1297182180000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.510701,"lon":-0.121723},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_389","url":"/Place/BikePoints_389","commonName":"Upper Grosvenor Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"010621","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1297347960000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.51013,"lon":-0.155757},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_390","url":"/Place/BikePoints_390","commonName":"Buxton Street 1, Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001223","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1297764360000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.521776,"lon":-0.068856},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_391","url":"/Place/BikePoints_391","commonName":"Clifford Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002688","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1297956480000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"1539846000000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.510662,"lon":-0.142345},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_392","url":"/Place/BikePoints_392","commonName":"Imperial College, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001220","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1297958700000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.499428,"lon":-0.179702},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_393","url":"/Place/BikePoints_393","commonName":"Snow Hill, Farringdon","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002699","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1298545440000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.517334,"lon":-0.103604},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_394","url":"/Place/BikePoints_394","commonName":"Aberdeen Place, St. John's Wood","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002698","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.524826,"lon":-0.176268},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_395","url":"/Place/BikePoints_395","commonName":"Cadogan Gardens, Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002695","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1298908800000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.492462,"lon":-0.159919},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_396","url":"/Place/BikePoints_396","commonName":"Shouldham Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002693","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1299075120000","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:08:55.69Z"}],"children":[],"childrenUrls":[],"lat":51.51809,"lon":-0.163609},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_397","url":"/Place/BikePoints_397","commonName":"Devonshire Terrace, Bayswater","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001227","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1299075900000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.51348,"lon":-0.17977},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_398","url":"/Place/BikePoints_398","commonName":"Holland Park, Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"010631","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1299076440000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.502319,"lon":-0.200742},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_399","url":"/Place/BikePoints_399","commonName":"Brick Lane Market, Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002687","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1299582900000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.522617,"lon":-0.071653},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_400","url":"/Place/BikePoints_400","commonName":"George Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001225","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1299583260000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.517703,"lon":-0.154106},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_401","url":"/Place/BikePoints_401","commonName":"Columbia Road, Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002701","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1299592500000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.528187,"lon":-0.075375},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_402","url":"/Place/BikePoints_402","commonName":"Penfold Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"010625","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1299592860000","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:03:50.123Z"}],"children":[],"childrenUrls":[],"lat":51.522892,"lon":-0.171681},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_403","url":"/Place/BikePoints_403","commonName":"George Place Mews, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"010630","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1299593640000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.516892,"lon":-0.158249},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_404","url":"/Place/BikePoints_404","commonName":"Palace Gate, Kensington Gardens","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001110","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1299669180000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.502042,"lon":-0.1844},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_405","url":"/Place/BikePoints_405","commonName":"Gloucester Road Station, South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001107","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1299669300000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.494185,"lon":-0.18267},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_409","url":"/Place/BikePoints_409","commonName":"Strata, Elephant & Castle","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"010624","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:31:36.54Z"}],"children":[],"childrenUrls":[],"lat":51.493146,"lon":-0.099828},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_410","url":"/Place/BikePoints_410","commonName":"Edgware Road Station, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001058","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"64","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.519968,"lon":-0.169774},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_411","url":"/Place/BikePoints_411","commonName":"Rotherhithe Roundabout, Rotherhithe","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"010629","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.499169,"lon":-0.055846},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_412","url":"/Place/BikePoints_412","commonName":"Cleaver Street, Kennington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"010628","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1302006180000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.488105,"lon":-0.110121},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_419","url":"/Place/BikePoints_419","commonName":"Chelsea Bridge, Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022160","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1308735300000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.485821,"lon":-0.149004},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_420","url":"/Place/BikePoints_420","commonName":"Southwark Station 1, Southwark","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022162","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1309258380000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.504043,"lon":-0.105312},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_421","url":"/Place/BikePoints_421","commonName":"Southwark Station 2, Southwark","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022163","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1309258440000","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"45","modified":"2021-01-02T13:27:35.71Z"}],"children":[],"childrenUrls":[],"lat":51.504044,"lon":-0.104778},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_423","url":"/Place/BikePoints_423","commonName":"Eaton Square (South), Belgravia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022164","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1309860240000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.494561,"lon":-0.153933},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_424","url":"/Place/BikePoints_424","commonName":"Ebury Bridge, Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022159","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1324551120000","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T12:41:03.86Z"}],"children":[],"childrenUrls":[],"lat":51.490491,"lon":-0.149186},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_425","url":"/Place/BikePoints_425","commonName":"Harrington Square 2, Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022181","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1310028420000","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"38","modified":"2021-01-02T13:28:39.097Z"}],"children":[],"childrenUrls":[],"lat":51.533379,"lon":-0.139159},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_426","url":"/Place/BikePoints_426","commonName":"Vincent Street, Pimlico","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022161","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1310463720000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.493072,"lon":-0.129925},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_427","url":"/Place/BikePoints_427","commonName":"Cheapside, Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022180","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1310725680000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"43","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.51397,"lon":-0.09294},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_428","url":"/Place/BikePoints_428","commonName":"Exhibition Road, Knightsbridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022179","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1318496100000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.499917,"lon":-0.174554},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_430","url":"/Place/BikePoints_430","commonName":"South Parade, Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022182","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1324549980000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.48902,"lon":-0.17524},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_431","url":"/Place/BikePoints_431","commonName":"Crinan Street, King's Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022183","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1323355020000","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.534474,"lon":-0.122203},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_432","url":"/Place/BikePoints_432","commonName":"Exhibition Road Museums 1, South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022158","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1319448720000","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T12:23:04.15Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T12:23:04.15Z"}],"children":[],"childrenUrls":[],"lat":51.496468,"lon":-0.173796},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_433","url":"/Place/BikePoints_433","commonName":"Wren Street, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022169","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1323361560000","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:31:36.54Z"}],"children":[],"childrenUrls":[],"lat":51.524564,"lon":-0.116279},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_435","url":"/Place/BikePoints_435","commonName":"Kennington Station, Kennington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022170","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1323346020000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.488852,"lon":-0.105593},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_436","url":"/Place/BikePoints_436","commonName":"Red Lion Street, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022171","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1323350220000","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T12:59:46.91Z"}],"children":[],"childrenUrls":[],"lat":51.51824,"lon":-0.11655},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_437","url":"/Place/BikePoints_437","commonName":"Vauxhall Walk, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200056","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325746380000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.488124,"lon":-0.120903},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_439","url":"/Place/BikePoints_439","commonName":"Killick Street, King's Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200053","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325705460000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.5338,"lon":-0.118677},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_440","url":"/Place/BikePoints_440","commonName":"Kennington Oval, Oval","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200032","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325708160000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.483145,"lon":-0.113134},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_441","url":"/Place/BikePoints_441","commonName":"Sail Street, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200039","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325711220000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.495656,"lon":-0.114605},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_442","url":"/Place/BikePoints_442","commonName":"Walmer Road, Avondale","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200035","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325940420000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.510101,"lon":-0.211358},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_443","url":"/Place/BikePoints_443","commonName":"Philpot Street, Whitechapel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200033","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325941800000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.515256,"lon":-0.058641},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_444","url":"/Place/BikePoints_444","commonName":"Bethnal Green Garden, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200047","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325944680000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.52568,"lon":-0.055312},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_445","url":"/Place/BikePoints_445","commonName":"Cheshire Street, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200003","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325945820000","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T12:36:03.217Z"}],"children":[],"childrenUrls":[],"lat":51.52388,"lon":-0.065076},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_446","url":"/Place/BikePoints_446","commonName":"York Hall, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200042","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325948880000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.528936,"lon":-0.055894},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_447","url":"/Place/BikePoints_447","commonName":"Jubilee Crescent, Cubitt Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200054","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325949000000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"43","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"54","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.493381,"lon":-0.007542},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_448","url":"/Place/BikePoints_448","commonName":"Fisherman's Walk West, Canary Wharf","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022165","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325952660000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.50623,"lon":-0.02296},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_449","url":"/Place/BikePoints_449","commonName":"Shadwell Station, Shadwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200020","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325952900000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.511088,"lon":-0.057159},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_450","url":"/Place/BikePoints_450","commonName":"Jubilee Street, Stepney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200002","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326105240000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.515975,"lon":-0.053177},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_451","url":"/Place/BikePoints_451","commonName":"Hermitage Court, Wapping","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200021","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1325501400000","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:08:55.69Z"}],"children":[],"childrenUrls":[],"lat":51.504719,"lon":-0.063531},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_452","url":"/Place/BikePoints_452","commonName":"St. Katharine's Way, Tower","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200049","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326109140000","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:22:34.65Z"}],"children":[],"childrenUrls":[],"lat":51.505697,"lon":-0.070542},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_453","url":"/Place/BikePoints_453","commonName":"Garnet Street, Shadwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200045","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326111060000","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:02:50.527Z"}],"children":[],"childrenUrls":[],"lat":51.508447,"lon":-0.055167},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_454","url":"/Place/BikePoints_454","commonName":"Napier Avenue, Millwall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200046","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326115380000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.487679,"lon":-0.021582},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_455","url":"/Place/BikePoints_455","commonName":"East Ferry Road, Cubitt Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200031","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326117780000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.49447,"lon":-0.014409},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_456","url":"/Place/BikePoints_456","commonName":"Parkway, Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200118","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326197580000","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:31:36.54Z"}],"children":[],"childrenUrls":[],"lat":51.538071,"lon":-0.144664},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_457","url":"/Place/BikePoints_457","commonName":"Castlehaven Road, Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200016","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326203280000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.542138,"lon":-0.145393},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_458","url":"/Place/BikePoints_458","commonName":"Wapping Lane, Wapping","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200034","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326294780000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.504749,"lon":-0.057544},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_459","url":"/Place/BikePoints_459","commonName":"Gunmakers Lane, Old Ford","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200014","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.535179,"lon":-0.03338},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_460","url":"/Place/BikePoints_460","commonName":"Burdett Road, Mile End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200123","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326284820000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.516196,"lon":-0.029138},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_461","url":"/Place/BikePoints_461","commonName":"Aston Street, Stepney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200013","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326293640000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.516,"lon":-0.038775},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_462","url":"/Place/BikePoints_462","commonName":"Bonny Street, Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200105","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326294600000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"45","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.541603,"lon":-0.138853},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_463","url":"/Place/BikePoints_463","commonName":"Thurtle Road, Haggerston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200093","modified":"2021-01-02T13:11:56.253Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:11:56.253Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:11:56.253Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:11:56.253Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:11:56.253Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:11:56.253Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:11:56.253Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:11:56.253Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:11:56.253Z"}],"children":[],"childrenUrls":[],"lat":51.534776,"lon":-0.071881},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_464","url":"/Place/BikePoints_464","commonName":"St. Mary & St. Michael Church, Stepney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200082","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326304980000","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:28:39.097Z"}],"children":[],"childrenUrls":[],"lat":51.51417,"lon":-0.052099},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_465","url":"/Place/BikePoints_465","commonName":"Pitfield Street North,Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200152","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1333613280000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.53558,"lon":-0.08249},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_466","url":"/Place/BikePoints_466","commonName":"Whiston Road, Haggerston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200158","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326360000000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.534464,"lon":-0.076341},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_467","url":"/Place/BikePoints_467","commonName":"Southern Grove, Bow","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200168","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326374040000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.523538,"lon":-0.030556},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_468","url":"/Place/BikePoints_468","commonName":"Cantrell Road, Bow","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200150","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326375720000","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:21:34.133Z"}],"children":[],"childrenUrls":[],"lat":51.521564,"lon":-0.022694},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_469","url":"/Place/BikePoints_469","commonName":"Lindfield Street, Poplar","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022178","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326381060000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"44","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.513757,"lon":-0.020467},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_470","url":"/Place/BikePoints_470","commonName":"Mostyn Grove, Bow","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200174","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326790620000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"46","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.530535,"lon":-0.025492},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_471","url":"/Place/BikePoints_471","commonName":"Hewison Street, Old Ford","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200006","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326790860000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.533283,"lon":-0.028155},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_472","url":"/Place/BikePoints_472","commonName":"Malmesbury Road, Bow","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200019","modified":"2021-01-01T15:20:29.067Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-01T15:20:29.067Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T15:20:29.067Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326791160000","modified":"2021-01-01T15:20:29.067Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-01T15:20:29.067Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T15:20:29.067Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-01T15:20:29.067Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-01T15:20:29.067Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-01T15:20:29.067Z"}],"children":[],"childrenUrls":[],"lat":51.529452,"lon":-0.027616},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_473","url":"/Place/BikePoints_473","commonName":"Millharbour, Millwall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022167","modified":"2021-01-01T20:11:32.61Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-01T20:11:32.61Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T20:11:32.61Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326816540000","modified":"2021-01-01T20:11:32.61Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-01T20:11:32.61Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T20:11:32.61Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-01T20:11:32.61Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-01T20:11:32.61Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-01T20:11:32.61Z"}],"children":[],"childrenUrls":[],"lat":51.496137,"lon":-0.019355},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_474","url":"/Place/BikePoints_474","commonName":"Gascoyne Road, Victoria Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200155","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326822960000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.541515,"lon":-0.038557},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_475","url":"/Place/BikePoints_475","commonName":"Lightermans Road, Millwall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200004","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326825480000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.499041,"lon":-0.020157},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_476","url":"/Place/BikePoints_476","commonName":"Stebondale Street, Cubitt Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200009","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326962100000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.489096,"lon":-0.009205},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_477","url":"/Place/BikePoints_477","commonName":"Spindrift Avenue, Millwall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200018","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326963780000","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:08:55.69Z"}],"children":[],"childrenUrls":[],"lat":51.49109,"lon":-0.018716},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_478","url":"/Place/BikePoints_478","commonName":"Stepney Green Station, Stepney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200012","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326965580000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.521889,"lon":-0.04667},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_479","url":"/Place/BikePoints_479","commonName":"Pott Street, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200156","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326966240000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.527152,"lon":-0.058005},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_480","url":"/Place/BikePoints_480","commonName":"Flamborough Street, Limehouse","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200115","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326975420000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.512871,"lon":-0.038986},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_481","url":"/Place/BikePoints_481","commonName":"Saunders Ness Road, Cubitt Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200022","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326996480000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.487129,"lon":-0.009001},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_482","url":"/Place/BikePoints_482","commonName":"Exhibition Road Museums 2, South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200052","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326996720000","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:24:36.08Z"}],"children":[],"childrenUrls":[],"lat":51.495947,"lon":-0.173689},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_483","url":"/Place/BikePoints_483","commonName":"Albert Gardens, Stepney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022166","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327088280000","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:07:54.87Z"}],"children":[],"childrenUrls":[],"lat":51.51328,"lon":-0.047784},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_484","url":"/Place/BikePoints_484","commonName":"Bromley High Street, Bow","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022172","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327339740000","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:19:34.44Z"}],"children":[],"childrenUrls":[],"lat":51.528828,"lon":-0.013258},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_485","url":"/Place/BikePoints_485","commonName":"Old Ford Road, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022173","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327255440000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.531127,"lon":-0.048017},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_486","url":"/Place/BikePoints_486","commonName":"Granby Street, Shoreditch","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022174","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327338660000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.525645,"lon":-0.069543},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_487","url":"/Place/BikePoints_487","commonName":"Canton Street, Poplar","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022175","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327936860000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.511811,"lon":-0.025626},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_488","url":"/Place/BikePoints_488","commonName":"Reardon Street, Wapping","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022176","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327254960000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.506946,"lon":-0.058681},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_489","url":"/Place/BikePoints_489","commonName":"Christian Street, Whitechapel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"022177","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327087920000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.513074,"lon":-0.064094},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_490","url":"/Place/BikePoints_490","commonName":"Pennington Street, Wapping","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200090","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"45","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.508622,"lon":-0.065006},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_491","url":"/Place/BikePoints_491","commonName":"Queen Mary's, Mile End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200249","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327256220000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"45","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.522507,"lon":-0.041378},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_492","url":"/Place/BikePoints_492","commonName":"Maplin Street, Mile End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200230","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327256520000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"39","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.525501,"lon":-0.032267},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_494","url":"/Place/BikePoints_494","commonName":"South Quay East, Canary Wharf","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200233","modified":"2021-01-01T16:55:05.143Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-01T16:55:05.143Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T16:55:05.143Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327433220000","modified":"2021-01-01T16:55:05.143Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-01T16:55:05.143Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T16:55:05.143Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-01T16:55:05.143Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-01T16:55:05.143Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-01T16:55:05.143Z"}],"children":[],"childrenUrls":[],"lat":51.50196,"lon":-0.016251},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_495","url":"/Place/BikePoints_495","commonName":"Bow Church Station, Bow","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200252","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327340460000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"39","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.528169,"lon":-0.018703},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_496","url":"/Place/BikePoints_496","commonName":"Devons Road, Bow","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200255","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327400820000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"39","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.52512,"lon":-0.015578},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_497","url":"/Place/BikePoints_497","commonName":"Merchant Street, Bow","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200242","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327398420000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.526149,"lon":-0.027396},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_498","url":"/Place/BikePoints_498","commonName":"Bow Road Station, Bow","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200251","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327398660000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.527058,"lon":-0.025296},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_499","url":"/Place/BikePoints_499","commonName":"Furze Green, Bow","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200011","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327407960000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.519265,"lon":-0.021345},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_500","url":"/Place/BikePoints_500","commonName":"Ansell House, Stepney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200148","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327430040000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"39","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.519806,"lon":-0.055731},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_501","url":"/Place/BikePoints_501","commonName":"Cephas Street, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200073","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327430220000","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:12:56.2Z"}],"children":[],"childrenUrls":[],"lat":51.522561,"lon":-0.054883},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_502","url":"/Place/BikePoints_502","commonName":"Bonner Gate, Victoria Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200241","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1563957840000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.53341,"lon":-0.049591},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_503","url":"/Place/BikePoints_503","commonName":"Cleveland Way, Stepney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200250","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327492920000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.520893,"lon":-0.051394},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_504","url":"/Place/BikePoints_504","commonName":"St. John's Park, Cubitt Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200243","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327937820000","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:24:36.08Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:24:36.08Z"}],"children":[],"childrenUrls":[],"lat":51.496454,"lon":-0.009506},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_505","url":"/Place/BikePoints_505","commonName":"Ackroyd Drive, Bow","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200038","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327937460000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.520398,"lon":-0.026768},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_506","url":"/Place/BikePoints_506","commonName":"Bell Lane, Liverpool Street","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200036","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327938660000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.517475,"lon":-0.075855},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_507","url":"/Place/BikePoints_507","commonName":"Clarkson Street, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200131","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327938420000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.528692,"lon":-0.059091},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_508","url":"/Place/BikePoints_508","commonName":"Fournier Street, Whitechapel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200157","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327938180000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.519362,"lon":-0.074431},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_509","url":"/Place/BikePoints_509","commonName":"Fore Street, Guildhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200253","modified":"2021-01-02T12:34:03.66Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:34:03.66Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:34:03.66Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327938120000","modified":"2021-01-02T12:34:03.66Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:34:03.66Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:34:03.66Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T12:34:03.66Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T12:34:03.66Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T12:34:03.66Z"}],"children":[],"childrenUrls":[],"lat":51.517842,"lon":-0.090075},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_510","url":"/Place/BikePoints_510","commonName":"Westferry DLR, Limehouse","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200238","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.509303,"lon":-0.025996},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_511","url":"/Place/BikePoints_511","commonName":"Sutton Street, Shadwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200256","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1327937940000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.511066,"lon":-0.053558},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_512","url":"/Place/BikePoints_512","commonName":"Pritchard's Road, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200083","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1328112600000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.532091,"lon":-0.06142},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_513","url":"/Place/BikePoints_513","commonName":"Watney Market, Stepney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200162","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"51","modified":"2021-01-02T13:19:34.44Z"}],"children":[],"childrenUrls":[],"lat":51.514222,"lon":-0.055656},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_514","url":"/Place/BikePoints_514","commonName":"Portman Square, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200008","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1328201520000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.516204,"lon":-0.155525},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_515","url":"/Place/BikePoints_515","commonName":"Russell Gardens, Olympia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200080","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:20:34.75Z"}],"children":[],"childrenUrls":[],"lat":51.500088,"lon":-0.211316},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_516","url":"/Place/BikePoints_516","commonName":"Chrisp Street Market, Poplar","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200089","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1328202420000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.5112,"lon":-0.014438},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_517","url":"/Place/BikePoints_517","commonName":"Ford Road, Old Ford","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200027","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1326790860000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.532513,"lon":-0.033085},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_518","url":"/Place/BikePoints_518","commonName":"Antill Road, Mile End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200041","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:21:34.133Z"}],"children":[],"childrenUrls":[],"lat":51.528224,"lon":-0.037471},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_519","url":"/Place/BikePoints_519","commonName":"Teviot Street, Poplar","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200254","modified":"2021-01-02T11:13:48.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:13:48.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:13:48.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:13:48.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:13:48.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:13:48.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T11:13:48.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T11:13:48.42Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T11:13:48.42Z"}],"children":[],"childrenUrls":[],"lat":51.518811,"lon":-0.011662},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_520","url":"/Place/BikePoints_520","commonName":"Bancroft Road, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200234","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.526041,"lon":-0.047218},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_521","url":"/Place/BikePoints_521","commonName":"Driffield Road, Old Ford","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200030","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.534137,"lon":-0.037366},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_522","url":"/Place/BikePoints_522","commonName":"Clinton Road, Mile End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200161","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.525941,"lon":-0.036017},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_523","url":"/Place/BikePoints_523","commonName":"Langdon Park, Poplar","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200160","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:25:35.09Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:25:35.09Z"}],"children":[],"childrenUrls":[],"lat":51.51549,"lon":-0.013475},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_524","url":"/Place/BikePoints_524","commonName":"Lancaster Gate , Bayswater","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200017","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1328515080000","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"38","modified":"2021-01-02T13:22:34.65Z"}],"children":[],"childrenUrls":[],"lat":51.511654,"lon":-0.179668},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_526","url":"/Place/BikePoints_526","commonName":"Lancaster Drive, Blackwall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200143","modified":"2021-01-02T11:23:50.323Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:23:50.323Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:23:50.323Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:23:50.323Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:23:50.323Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:23:50.323Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T11:23:50.323Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T11:23:50.323Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T11:23:50.323Z"}],"children":[],"childrenUrls":[],"lat":51.503143,"lon":-0.008428},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_527","url":"/Place/BikePoints_527","commonName":"Hansard Mews, Holland Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200154","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1328777280000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.503802,"lon":-0.215808},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_528","url":"/Place/BikePoints_528","commonName":"Clarges Street, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200088","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1328777880000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.507326,"lon":-0.145827},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_529","url":"/Place/BikePoints_529","commonName":"Manresa Road, Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200010","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:10:54.343Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:10:54.343Z"}],"children":[],"childrenUrls":[],"lat":51.486892,"lon":-0.170983},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_530","url":"/Place/BikePoints_530","commonName":"Newby Place, Poplar","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200146","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T12:31:02.38Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T12:31:02.38Z"}],"children":[],"childrenUrls":[],"lat":51.508896,"lon":-0.012413},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_531","url":"/Place/BikePoints_531","commonName":"Twig Folly Bridge, Mile End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200167","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1328778840000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.530326,"lon":-0.042744},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_532","url":"/Place/BikePoints_532","commonName":"Jubilee Plaza, Canary Wharf","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200163","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1328886360000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"50","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"63","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.50357,"lon":-0.020068},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_533","url":"/Place/BikePoints_533","commonName":"Wellington Row, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200165","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:20:34.75Z"}],"children":[],"childrenUrls":[],"lat":51.528222,"lon":-0.069743},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_534","url":"/Place/BikePoints_534","commonName":"Goldsmith's Row, Haggerston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200159","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.531864,"lon":-0.066035},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_535","url":"/Place/BikePoints_535","commonName":"Gloucester Avenue, Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200145","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.537349,"lon":-0.147154},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_536","url":"/Place/BikePoints_536","commonName":"Queensbridge Road, Haggerston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200024","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.53385,"lon":-0.06992},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_537","url":"/Place/BikePoints_537","commonName":"Old Montague Street, Whitechapel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200239","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1330352880000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.51793,"lon":-0.067937},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_538","url":"/Place/BikePoints_538","commonName":"Naval Row, Blackwall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200050","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.508981,"lon":-0.00699},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_539","url":"/Place/BikePoints_539","commonName":"Hoxton Station, Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200151","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.531091,"lon":-0.075901},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_540","url":"/Place/BikePoints_540","commonName":"Albany Street, The Regent's Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200134","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.528302,"lon":-0.144466},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_541","url":"/Place/BikePoints_541","commonName":"Green Park Station, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200096","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.506613,"lon":-0.142844},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_542","url":"/Place/BikePoints_542","commonName":"Salmon Lane, Limehouse","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200147","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.514115,"lon":-0.033828},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_543","url":"/Place/BikePoints_543","commonName":"Lansdowne Walk, Ladbroke Grove","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200065","modified":"2021-01-02T09:16:20.01Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T09:16:20.01Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T09:16:20.01Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T09:16:20.01Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T09:16:20.01Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T09:16:20.01Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T09:16:20.01Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T09:16:20.01Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T09:16:20.01Z"}],"children":[],"childrenUrls":[],"lat":51.509591,"lon":-0.204666},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_544","url":"/Place/BikePoints_544","commonName":"Percival Street, Finsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200051","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:17:33.217Z"}],"children":[],"childrenUrls":[],"lat":51.526153,"lon":-0.102208},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_545","url":"/Place/BikePoints_545","commonName":"Arlington Road, Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200070","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.539957,"lon":-0.145246},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_546","url":"/Place/BikePoints_546","commonName":"New Fetter Lane, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200044","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:16:34.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:16:34.933Z"}],"children":[],"childrenUrls":[],"lat":51.517428,"lon":-0.107987},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_547","url":"/Place/BikePoints_547","commonName":"East India DLR, Blackwall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200127","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"49","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"51","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.509474,"lon":-0.002275},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_548","url":"/Place/BikePoints_548","commonName":"Westminster Bridge Road, Elephant & Castle","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200076","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.498386,"lon":-0.107913},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_549","url":"/Place/BikePoints_549","commonName":"Gaywood Street, Elephant & Castle","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200132","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"45","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.49605,"lon":-0.104193},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_550","url":"/Place/BikePoints_550","commonName":"Harford Street, Mile End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200102","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.521564,"lon":-0.039264},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_551","url":"/Place/BikePoints_551","commonName":"Import Dock, Canary Wharf","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200066","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1330071720000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"39","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.505772,"lon":-0.01646},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_552","url":"/Place/BikePoints_552","commonName":"Watney Street, Shadwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200149","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.511542,"lon":-0.056667},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_553","url":"/Place/BikePoints_553","commonName":"Regent's Row , Haggerston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200064","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.535678,"lon":-0.062546},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_554","url":"/Place/BikePoints_554","commonName":"Aberfeldy Street, Poplar","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200078","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.513548,"lon":-0.005659},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_556","url":"/Place/BikePoints_556","commonName":"Heron Quays DLR, Canary Wharf","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200138","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.502661,"lon":-0.021596},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_557","url":"/Place/BikePoints_557","commonName":"King Edward Street, St Pauls","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200203","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.51601,"lon":-0.0985},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_558","url":"/Place/BikePoints_558","commonName":"Page Street, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200048","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1399635120000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.493978,"lon":-0.127554},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_559","url":"/Place/BikePoints_559","commonName":"Abbotsbury Road, Holland Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200111","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:20:34.75Z"}],"children":[],"childrenUrls":[],"lat":51.501391,"lon":-0.205991},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_560","url":"/Place/BikePoints_560","commonName":"Ladbroke Grove Central, Ladbroke Grove","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200015","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.511624,"lon":-0.205921},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_561","url":"/Place/BikePoints_561","commonName":"Rectory Square, Stepney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200037","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1330503540000","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T12:45:04.947Z"}],"children":[],"childrenUrls":[],"lat":51.518369,"lon":-0.043371},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_562","url":"/Place/BikePoints_562","commonName":"Bury Place, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200074","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1330503420000","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T12:36:03.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T12:36:03.217Z"}],"children":[],"childrenUrls":[],"lat":51.51746,"lon":-0.12335},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_563","url":"/Place/BikePoints_563","commonName":"Preston's Road, Cubitt Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200232","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.499286,"lon":-0.009152},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_564","url":"/Place/BikePoints_564","commonName":"Somerset House, Strand","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200068","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.509943,"lon":-0.117619},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_565","url":"/Place/BikePoints_565","commonName":"Selby Street, Whitechapel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200135","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:22:34.65Z"}],"children":[],"childrenUrls":[],"lat":51.521905,"lon":-0.063386},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_566","url":"/Place/BikePoints_566","commonName":"Westfield Ariel Way, White City","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200141","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1330937940000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"42","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.509158,"lon":-0.224103},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_568","url":"/Place/BikePoints_568","commonName":"Bishop's Bridge Road West, Bayswater","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200110","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.51616,"lon":-0.18697},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_569","url":"/Place/BikePoints_569","commonName":"Pitfield Street Central, Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200248","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.53213,"lon":-0.08299},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_570","url":"/Place/BikePoints_570","commonName":"Upper Bank Street, Canary Wharf","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200099","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1330773180000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.503083,"lon":-0.017676},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_571","url":"/Place/BikePoints_571","commonName":"Westfield Southern Terrace ,Shepherd's Bush","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200061","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1330620180000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.506256,"lon":-0.218337},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_572","url":"/Place/BikePoints_572","commonName":"Greenland Road, Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200026","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.539099,"lon":-0.141728},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_573","url":"/Place/BikePoints_573","commonName":"Limerston Street, West Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200001","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1331796060000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.485587,"lon":-0.18119},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_574","url":"/Place/BikePoints_574","commonName":"Eagle Wharf Road, Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200246","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1333618560000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"45","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.53356,"lon":-0.09315},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_576","url":"/Place/BikePoints_576","commonName":"Alpha Grove, Millwall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200109","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.497304,"lon":-0.022793},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_577","url":"/Place/BikePoints_577","commonName":"Globe Town Market, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200247","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:20:34.75Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:20:34.75Z"}],"children":[],"childrenUrls":[],"lat":51.528869,"lon":-0.047548},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_578","url":"/Place/BikePoints_578","commonName":"Hollybush Gardens, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200244","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1330444680000","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:14:08.13Z"}],"children":[],"childrenUrls":[],"lat":51.527607,"lon":-0.057133},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_579","url":"/Place/BikePoints_579","commonName":"Queen Street 2, Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200128","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.511246,"lon":-0.093051},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_580","url":"/Place/BikePoints_580","commonName":"Doddington Grove, Kennington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200084","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1392208500000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.486929,"lon":-0.102996},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_581","url":"/Place/BikePoints_581","commonName":"New Cavendish Street, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200005","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1331883540000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.519167,"lon":-0.147983},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_583","url":"/Place/BikePoints_583","commonName":"Abingdon Green, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200231","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.497622,"lon":-0.125978},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_584","url":"/Place/BikePoints_584","commonName":"Ilchester Gardens, Bayswater","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200086","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.51244,"lon":-0.19096},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_586","url":"/Place/BikePoints_586","commonName":"Mudchute DLR, Cubitt Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200092","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1331797200000","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:14:08.13Z"}],"children":[],"childrenUrls":[],"lat":51.490645,"lon":-0.014582},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_587","url":"/Place/BikePoints_587","commonName":"Monument Street, Monument","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200101","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1332406320000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.50964,"lon":-0.08497},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_588","url":"/Place/BikePoints_588","commonName":"Hoxton Street, Hoxton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200071","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1330937820000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.52959,"lon":-0.0801},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_589","url":"/Place/BikePoints_589","commonName":"Drayton Gardens, West Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200060","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.487196,"lon":-0.179369},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_590","url":"/Place/BikePoints_590","commonName":"Greenberry Street, St.John's Wood","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200236","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:12:56.2Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:12:56.2Z"}],"children":[],"childrenUrls":[],"lat":51.53256,"lon":-0.16862},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_592","url":"/Place/BikePoints_592","commonName":"Bishop's Bridge Road East, Bayswater","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200108","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T12:14:00.063Z"}],"children":[],"childrenUrls":[],"lat":51.5171,"lon":-0.18377},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_593","url":"/Place/BikePoints_593","commonName":"Northdown Street, King's Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200058","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T12:59:46.91Z"}],"children":[],"childrenUrls":[],"lat":51.531066,"lon":-0.11934},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_594","url":"/Place/BikePoints_594","commonName":"Kingsway Southbound, Strand","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200226","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1331710680000","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:28:39.097Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:28:39.097Z"}],"children":[],"childrenUrls":[],"lat":51.513875,"lon":-0.117774},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_595","url":"/Place/BikePoints_595","commonName":"Hammersmith Road, Hammersmith","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200142","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.493267,"lon":-0.21985},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_596","url":"/Place/BikePoints_596","commonName":"Parson's Green , Parson's Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200237","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.472817,"lon":-0.199783},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_597","url":"/Place/BikePoints_597","commonName":"Fulham Park Road, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200229","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.473471,"lon":-0.20782},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_598","url":"/Place/BikePoints_598","commonName":"Southerton Road, Hammersmith","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200166","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1501544700000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"38","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.494499,"lon":-0.228188},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_599","url":"/Place/BikePoints_599","commonName":"Manbre Road, Hammersmith","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200235","modified":"2021-01-02T11:17:50.5Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:17:50.5Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:17:50.5Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:17:50.5Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:17:50.5Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:17:50.5Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T11:17:50.5Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T11:17:50.5Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T11:17:50.5Z"}],"children":[],"childrenUrls":[],"lat":51.485743,"lon":-0.223616},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_600","url":"/Place/BikePoints_600","commonName":"South Lambeth Road, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200133","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.481747,"lon":-0.124642},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_601","url":"/Place/BikePoints_601","commonName":"BBC White City, White City","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200136","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.514767,"lon":-0.225787},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_602","url":"/Place/BikePoints_602","commonName":"Union Grove, Wandsworth Road","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200211","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"44","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"45","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.472993,"lon":-0.133972},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_603","url":"/Place/BikePoints_603","commonName":"Caldwell Street, Stockwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200137","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"44","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.477839,"lon":-0.116493},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_604","url":"/Place/BikePoints_604","commonName":"St Martins Close, Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200195","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.538792,"lon":-0.138535},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_605","url":"/Place/BikePoints_605","commonName":"Seymour Place, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200198","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.520331,"lon":-0.163667},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_606","url":"/Place/BikePoints_606","commonName":"Addison Road, Holland Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200218","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.504199,"lon":-0.210941},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_607","url":"/Place/BikePoints_607","commonName":"Putney Bridge Station, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200125","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.468814,"lon":-0.210279},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_608","url":"/Place/BikePoints_608","commonName":"Colet Gardens, Hammersmith","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200224","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.491093,"lon":-0.216493},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_609","url":"/Place/BikePoints_609","commonName":"Sugden Road, Clapham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200208","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380109980000","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:08:55.69Z"}],"children":[],"childrenUrls":[],"lat":51.465123,"lon":-0.157788},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_610","url":"/Place/BikePoints_610","commonName":"Danvers Street, West Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200222","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380113460000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.482567,"lon":-0.172078},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_611","url":"/Place/BikePoints_611","commonName":"Princedale Road , Holland Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200067","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380203940000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.506465,"lon":-0.208486},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_612","url":"/Place/BikePoints_612","commonName":"Wandsworth Rd, Isley Court, Wandsworth Road","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200175","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380294600000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.469259,"lon":-0.141812},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_613","url":"/Place/BikePoints_613","commonName":"Woodstock Grove, Shepherd's Bush","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200214","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380211860000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.504038,"lon":-0.2174},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_614","url":"/Place/BikePoints_614","commonName":"Bradmead, Battersea Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200025","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380795000000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"40","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.478172,"lon":-0.14469},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_615","url":"/Place/BikePoints_615","commonName":"Finlay Street, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200029","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380288900000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.476885,"lon":-0.215895},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_616","url":"/Place/BikePoints_616","commonName":"Aintree Street, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200098","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.481021,"lon":-0.209973},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_617","url":"/Place/BikePoints_617","commonName":"Elysium Place, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200028","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380531540000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.471079,"lon":-0.207842},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_618","url":"/Place/BikePoints_618","commonName":"Eel Brook Common, Walham Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300003","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380546540000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.476259,"lon":-0.193254},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_619","url":"/Place/BikePoints_619","commonName":"Irene Road, Parsons Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300012","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380552360000","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"43","modified":"2021-01-02T13:07:54.87Z"}],"children":[],"childrenUrls":[],"lat":51.473763,"lon":-0.19701},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_620","url":"/Place/BikePoints_620","commonName":"Surrey Lane, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300010","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380629040000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.47518,"lon":-0.16716},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_621","url":"/Place/BikePoints_621","commonName":"Wandsworth Town Station, Wandsworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200091","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380899280000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.460864,"lon":-0.187427},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_622","url":"/Place/BikePoints_622","commonName":"Lansdowne Road, Ladbroke Grove","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200172","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1380901680000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.507481,"lon":-0.205535},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_623","url":"/Place/BikePoints_623","commonName":"Nantes Close, Wandsworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200186","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381135320000","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:09:56.113Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:09:56.113Z"}],"children":[],"childrenUrls":[],"lat":51.46193,"lon":-0.180791},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_624","url":"/Place/BikePoints_624","commonName":"Courland Grove, Wandsworth Road","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200173","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381224240000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"40","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.472918,"lon":-0.132102},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_625","url":"/Place/BikePoints_625","commonName":"Queen's Circus, Battersea Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200190","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381227480000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.477619,"lon":-0.149551},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_626","url":"/Place/BikePoints_626","commonName":"Normand Park, West Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300008","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381920300000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.484386,"lon":-0.204815},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_627","url":"/Place/BikePoints_627","commonName":"Holden Street, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200007","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381931400000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.46879,"lon":-0.15823},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_628","url":"/Place/BikePoints_628","commonName":"William Morris Way, Sands End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200062","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381414980000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.468819,"lon":-0.184318},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_629","url":"/Place/BikePoints_629","commonName":"Morie Street, Wandsworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200187","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381479480000","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:15:33.327Z"}],"children":[],"childrenUrls":[],"lat":51.459953,"lon":-0.190184},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_630","url":"/Place/BikePoints_630","commonName":"Clarence Walk, Stockwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200194","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381487100000","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.470732,"lon":-0.126994},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_632","url":"/Place/BikePoints_632","commonName":"Sheepcote Lane, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200176","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381220700000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.470538,"lon":-0.163041},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_633","url":"/Place/BikePoints_633","commonName":"Vereker Road, West Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200116","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381402920000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.489591,"lon":-0.209378},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_634","url":"/Place/BikePoints_634","commonName":"Brook Green South, Brook Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300002","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381743780000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.494347,"lon":-0.215804},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_635","url":"/Place/BikePoints_635","commonName":"Greyhound Road, Hammersmith","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200215","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381756440000","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:17:33.217Z"}],"children":[],"childrenUrls":[],"lat":51.486062,"lon":-0.214428},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_636","url":"/Place/BikePoints_636","commonName":"South Park, Sands End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200180","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381846320000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.467064,"lon":-0.193502},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_637","url":"/Place/BikePoints_637","commonName":"Spencer Park, Wandsworth Common","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200191","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381933680000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.45787,"lon":-0.174691},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_638","url":"/Place/BikePoints_638","commonName":"Falcon Road, Clapham Junction","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300014","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381834020000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.466633,"lon":-0.169821},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_639","url":"/Place/BikePoints_639","commonName":"Coomer Place, West Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200081","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381835700000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.48357,"lon":-0.202038},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_640","url":"/Place/BikePoints_640","commonName":"Silverthorne Road, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200179","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382010420000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.472865,"lon":-0.148059},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_641","url":"/Place/BikePoints_641","commonName":"Archbishop's Park, Waterloo","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300025","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381926900000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.498241,"lon":-0.117495},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_642","url":"/Place/BikePoints_642","commonName":"Fawcett Close, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200192","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381934220000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.469161,"lon":-0.174485},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_643","url":"/Place/BikePoints_643","commonName":"All Saints' Road, Portobello","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300026","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382010720000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.519042,"lon":-0.204764},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_644","url":"/Place/BikePoints_644","commonName":"Rainville Road, Hammersmith","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200182","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382278560000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.483732,"lon":-0.223852},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_645","url":"/Place/BikePoints_645","commonName":"Great Suffolk Street, The Borough","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200200","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382110800000","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:02:50.527Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:02:50.527Z"}],"children":[],"childrenUrls":[],"lat":51.501732,"lon":-0.100292},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_646","url":"/Place/BikePoints_646","commonName":"Buckingham Gate, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200178","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382084340000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.498865,"lon":-0.137424},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_647","url":"/Place/BikePoints_647","commonName":"Richmond Way, Shepherd's Bush","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200181","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382347140000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.500353,"lon":-0.217515},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_648","url":"/Place/BikePoints_648","commonName":"Peterborough Road, Sands End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200171","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382352840000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.46904,"lon":-0.196274},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_649","url":"/Place/BikePoints_649","commonName":"World's End Place, West Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300009","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382348400000","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:17:33.217Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:17:33.217Z"}],"children":[],"childrenUrls":[],"lat":51.481805,"lon":-0.180274},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_650","url":"/Place/BikePoints_650","commonName":"St. Mark's Road, North Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300034","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382438520000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.51687,"lon":-0.213872},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_651","url":"/Place/BikePoints_651","commonName":"Thorndike Close, West Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300030","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382441580000","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T12:14:00.063Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T12:14:00.063Z"}],"children":[],"childrenUrls":[],"lat":51.480898,"lon":-0.183853},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_652","url":"/Place/BikePoints_652","commonName":"Evesham Street, Avondale","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300022","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1381848540000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.511486,"lon":-0.21819},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_653","url":"/Place/BikePoints_653","commonName":"Simpson Street, Clapham Junction","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200196","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382539860000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.470847,"lon":-0.170703},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_654","url":"/Place/BikePoints_654","commonName":"Ashmole Estate, Oval","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200223","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382520000000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.482678,"lon":-0.117661},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_655","url":"/Place/BikePoints_655","commonName":"Crabtree Lane, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200221","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382611200000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.482944,"lon":-0.219346},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_656","url":"/Place/BikePoints_656","commonName":"Broomhouse Lane, Parsons Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200040","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382614560000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.468418,"lon":-0.199135},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_657","url":"/Place/BikePoints_657","commonName":"Blythe Road West, Shepherd's Bush","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200220","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382621400000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.49968,"lon":-0.221791},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_658","url":"/Place/BikePoints_658","commonName":"Ethelburga Estate, Battersea Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300005","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383731100000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.477292,"lon":-0.164786},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_659","url":"/Place/BikePoints_659","commonName":"Blackfriars Station, St. Paul's","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200212","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382697060000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.511934,"lon":-0.103078},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_660","url":"/Place/BikePoints_660","commonName":"West Kensington Station, West Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300020","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382705340000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.49087,"lon":-0.206029},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_661","url":"/Place/BikePoints_661","commonName":"All Saints Church, Portobello","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300023","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382887680000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.51632,"lon":-0.202608},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_662","url":"/Place/BikePoints_662","commonName":"Phene Street, Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200189","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382866680000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.484984,"lon":-0.167919},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_663","url":"/Place/BikePoints_663","commonName":"Clarendon Road, Avondale","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200124","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382870040000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.51323,"lon":-0.211593},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_664","url":"/Place/BikePoints_664","commonName":"Austin Road, Battersea Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300013","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382964300000","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:21:34.133Z"}],"children":[],"childrenUrls":[],"lat":51.474376,"lon":-0.155442},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_665","url":"/Place/BikePoints_665","commonName":"Smugglers Way, Wandsworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200113","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1382975700000","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:15:33.327Z"}],"children":[],"childrenUrls":[],"lat":51.461083,"lon":-0.191722},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_667","url":"/Place/BikePoints_667","commonName":"Shepherd's Bush Road North, Shepherd's Bush","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200209","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383136140000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.501594,"lon":-0.222293},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_668","url":"/Place/BikePoints_668","commonName":"Ravenscourt Park Station, Hammersmith","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300037","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383143160000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.494223,"lon":-0.236769},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_669","url":"/Place/BikePoints_669","commonName":"Teversham Lane, Stockwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300036","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383147660000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"39","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.476149,"lon":-0.123258},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_670","url":"/Place/BikePoints_670","commonName":"Ashley Crescent, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200169","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383212640000","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:15:33.327Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:15:33.327Z"}],"children":[],"childrenUrls":[],"lat":51.467185,"lon":-0.152248},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_671","url":"/Place/BikePoints_671","commonName":"Parsons Green Station, Parsons Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300052","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383217920000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"56","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.475089,"lon":-0.201968},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_673","url":"/Place/BikePoints_673","commonName":"Hibbert Street, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300051","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383319500000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.46517,"lon":-0.180389},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_674","url":"/Place/BikePoints_674","commonName":"Carnegie Street, King's Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300035","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"40","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.535467,"lon":-0.116191},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_675","url":"/Place/BikePoints_675","commonName":"Usk Road, Clapham Junction","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200126","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383322320000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.463489,"lon":-0.182126},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_676","url":"/Place/BikePoints_676","commonName":"Hartington Road, Stockwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200207","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383584400000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.47787,"lon":-0.126874},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_677","url":"/Place/BikePoints_677","commonName":"Heath Road, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200023","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383476160000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.468669,"lon":-0.146544},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_678","url":"/Place/BikePoints_678","commonName":"Esmond Street, Putney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200170","modified":"2021-01-01T18:31:11.817Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-01T18:31:11.817Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T18:31:11.817Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383653580000","modified":"2021-01-01T18:31:11.817Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-01T18:31:11.817Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T18:31:11.817Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-01T18:31:11.817Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-01T18:31:11.817Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-01T18:31:11.817Z"}],"children":[],"childrenUrls":[],"lat":51.462312,"lon":-0.211468},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_679","url":"/Place/BikePoints_679","commonName":"Orbel Street, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200114","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383661200000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.474535,"lon":-0.17021},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_680","url":"/Place/BikePoints_680","commonName":"Westbridge Road, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200210","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383657480000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.477684,"lon":-0.170329},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_681","url":"/Place/BikePoints_681","commonName":"Bishop's Avenue, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200043","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383733440000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"46","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.473036,"lon":-0.214749},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_682","url":"/Place/BikePoints_682","commonName":"Crisp Road, Hammersmith","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200059","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383738240000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"46","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.488108,"lon":-0.226606},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_683","url":"/Place/BikePoints_683","commonName":"Dorothy Road, Clapham Junction","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200119","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383750420000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.465064,"lon":-0.16375},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_684","url":"/Place/BikePoints_684","commonName":"Neville Gill Close, Wandsworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200188","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383823380000","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:03:50.123Z"}],"children":[],"childrenUrls":[],"lat":51.454752,"lon":-0.195197},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_685","url":"/Place/BikePoints_685","commonName":"Osiers Road, Wandsworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200219","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383827400000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.46067,"lon":-0.198735},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_686","url":"/Place/BikePoints_686","commonName":"Beryl Road, Hammersmith","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200097","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383835560000","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:04:50.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:04:50.03Z"}],"children":[],"childrenUrls":[],"lat":51.488144,"lon":-0.222456},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_687","url":"/Place/BikePoints_687","commonName":"Maclise Road, Olympia","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200216","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383838440000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.497608,"lon":-0.211455},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_688","url":"/Place/BikePoints_688","commonName":"Northfields, Wandsworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200204","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383915240000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.460951,"lon":-0.200667},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_689","url":"/Place/BikePoints_689","commonName":"Spanish Road, Clapham Junction","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200106","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383918180000","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:26:35.367Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:26:35.367Z"}],"children":[],"childrenUrls":[],"lat":51.459225,"lon":-0.180884},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_690","url":"/Place/BikePoints_690","commonName":"Stanley Grove, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200199","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1383924660000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.470475,"lon":-0.15213},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_691","url":"/Place/BikePoints_691","commonName":"Erin Close, Walham Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200184","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384763520000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.479463,"lon":-0.195777},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_692","url":"/Place/BikePoints_692","commonName":"Cadogan Close, Victoria Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200112","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384166220000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.542118,"lon":-0.028941},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_693","url":"/Place/BikePoints_693","commonName":"Felsham Road, Putney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300019","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384001160000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.464786,"lon":-0.215618},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_694","url":"/Place/BikePoints_694","commonName":"Putney Rail Station, Putney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300033","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384004640000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.460717,"lon":-0.216526},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_695","url":"/Place/BikePoints_695","commonName":"Islington Green, Angel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300031","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384172820000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.536384,"lon":-0.102757},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_696","url":"/Place/BikePoints_696","commonName":"Charing Cross Hospital, Hammersmith","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300018","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384180020000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.487285,"lon":-0.217995},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_697","url":"/Place/BikePoints_697","commonName":"Charlotte Terrace, Angel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200129","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384251120000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.536392,"lon":-0.112721},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_698","url":"/Place/BikePoints_698","commonName":"Shoreditch Court, Haggerston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200121","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384254300000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.539083,"lon":-0.070329},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_699","url":"/Place/BikePoints_699","commonName":"Belford House, Haggerston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200057","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384256040000","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"39","modified":"2021-01-02T12:41:03.86Z"}],"children":[],"childrenUrls":[],"lat":51.536654,"lon":-0.07023},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_700","url":"/Place/BikePoints_700","commonName":"Battersea Church Road, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200201","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384343280000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.476964,"lon":-0.174347},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_701","url":"/Place/BikePoints_701","commonName":"Vicarage Crescent, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200077","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384345080000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.472876,"lon":-0.176267},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_702","url":"/Place/BikePoints_702","commonName":"Durant Street, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200213","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384345860000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.528681,"lon":-0.06555},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_703","url":"/Place/BikePoints_703","commonName":"St. Bride Street, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200094","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384357800000","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:07:54.87Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:07:54.87Z"}],"children":[],"childrenUrls":[],"lat":51.515059,"lon":-0.105344},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_704","url":"/Place/BikePoints_704","commonName":"Mexfield Road, East Putney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200063","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384443480000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.45682,"lon":-0.202802},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_705","url":"/Place/BikePoints_705","commonName":"Upper Richmond Road, Putney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300042","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384453020000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"1539845700000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.459715,"lon":-0.212145},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_706","url":"/Place/BikePoints_706","commonName":"Snowsfields, London Bridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200193","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384420920000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.502153,"lon":-0.083632},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_707","url":"/Place/BikePoints_707","commonName":"Barons Court Station, West Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200197","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384435680000","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:29:35.213Z"}],"children":[],"childrenUrls":[],"lat":51.490217,"lon":-0.215087},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_708","url":"/Place/BikePoints_708","commonName":"Disraeli Road, Putney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200217","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384530180000","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:22:34.65Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:22:34.65Z"}],"children":[],"childrenUrls":[],"lat":51.46161,"lon":-0.216145},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_709","url":"/Place/BikePoints_709","commonName":"Montserrat Road , Putney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200205","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384510140000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.463211,"lon":-0.21555},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_710","url":"/Place/BikePoints_710","commonName":"Albert Bridge Road, Battersea Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300045","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384520580000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.474392,"lon":-0.163347},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_711","url":"/Place/BikePoints_711","commonName":"Everington Street, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300028","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384791540000","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:53:07.687Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:53:07.687Z"}],"children":[],"childrenUrls":[],"lat":51.483356,"lon":-0.216305},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_712","url":"/Place/BikePoints_712","commonName":"Mile End Stadium, Mile End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300056","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384797120000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.518541,"lon":-0.034903},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_713","url":"/Place/BikePoints_713","commonName":"Hawley Crescent, Camden Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200122","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384774620000","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:03:50.123Z"}],"children":[],"childrenUrls":[],"lat":51.541007,"lon":-0.14326},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_714","url":"/Place/BikePoints_714","commonName":"Stewart's Road, Wandsworth Road","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300055","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384865400000","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:21:34.133Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:21:34.133Z"}],"children":[],"childrenUrls":[],"lat":51.473116,"lon":-0.137235},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_715","url":"/Place/BikePoints_715","commonName":"Aylward Street, Stepney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300049","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384868460000","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:14:08.13Z"}],"children":[],"childrenUrls":[],"lat":51.51563,"lon":-0.049067},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_716","url":"/Place/BikePoints_716","commonName":"Stainsby Road , Poplar","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300048","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384873500000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.515427,"lon":-0.023565},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_717","url":"/Place/BikePoints_717","commonName":"Dunston Road , Haggerston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300024","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384952400000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"43","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.536585,"lon":-0.075885},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_718","url":"/Place/BikePoints_718","commonName":"Ada Street, Hackney Central","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300040","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1384962840000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"45","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.535716,"lon":-0.060291},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_720","url":"/Place/BikePoints_720","commonName":"Star Road, West Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300038","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385025840000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.487244,"lon":-0.205279},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_721","url":"/Place/BikePoints_721","commonName":"Wendon Street, Old Ford","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300039","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385028480000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.536039,"lon":-0.026262},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_722","url":"/Place/BikePoints_722","commonName":"Finnis Street, Bethnal Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300041","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385028600000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.524583,"lon":-0.058631},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_723","url":"/Place/BikePoints_723","commonName":"Stephendale Road, Sands End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300053","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385035380000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"46","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"48","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.46822,"lon":-0.190346},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_724","url":"/Place/BikePoints_724","commonName":"Alma Road, Wandsworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300046","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385125380000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.457991,"lon":-0.184806},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_725","url":"/Place/BikePoints_725","commonName":"Walworth Square, Walworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300050","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1563352500000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.491327,"lon":-0.096518},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_726","url":"/Place/BikePoints_726","commonName":"Alfreda Street, Battersea Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300047","modified":"2021-01-01T22:09:10.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-01T22:09:10.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T22:09:10.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385128740000","modified":"2021-01-01T22:09:10.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-01T22:09:10.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-01T22:09:10.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-01T22:09:10.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-01T22:09:10.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-01T22:09:10.163Z"}],"children":[],"childrenUrls":[],"lat":51.47505,"lon":-0.150908},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_727","url":"/Place/BikePoints_727","commonName":"Chesilton Road, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300054","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385132160000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.475698,"lon":-0.205876},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_728","url":"/Place/BikePoints_728","commonName":"Putney Bridge Road, East Putney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300044","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385466780000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.461999,"lon":-0.20624},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_729","url":"/Place/BikePoints_729","commonName":"St. Peter's Terrace, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300043","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385391300000","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:44:35.53Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:44:35.53Z"}],"children":[],"childrenUrls":[],"lat":51.478939,"lon":-0.208485},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_730","url":"/Place/BikePoints_730","commonName":"Bridge Avenue, Hammersmith","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300082","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385132580000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.492084,"lon":-0.229116},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_731","url":"/Place/BikePoints_731","commonName":"Michael Road, Walham Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300095","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385394720000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.477276,"lon":-0.18921},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_732","url":"/Place/BikePoints_732","commonName":"Duke Street Hill, London Bridge","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300083","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385458020000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.506304,"lon":-0.087262},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_733","url":"/Place/BikePoints_733","commonName":"Park Lane, Mayfair","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300093","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385460840000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.505426,"lon":-0.150817},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_734","url":"/Place/BikePoints_734","commonName":"Plough Terrace, Clapham Junction","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300094","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385464500000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.462305,"lon":-0.175407},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_735","url":"/Place/BikePoints_735","commonName":"Grant Road East, Clapham Junction","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200120","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385383080000","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:08:55.69Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:08:55.69Z"}],"children":[],"childrenUrls":[],"lat":51.464894,"lon":-0.173029},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_736","url":"/Place/BikePoints_736","commonName":"Queensdale Road, Shepherd's Bush","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300088","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385472900000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.50659,"lon":-0.216104},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_737","url":"/Place/BikePoints_737","commonName":"Fulham Broadway, Walham Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300086","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385554620000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.479932,"lon":-0.194116},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_738","url":"/Place/BikePoints_738","commonName":"Imperial Road, Sands End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300087","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385563380000","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.475142,"lon":-0.187278},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_739","url":"/Place/BikePoints_739","commonName":"Hortensia Road, West Brompton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300091","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385631000000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.481765,"lon":-0.185273},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_740","url":"/Place/BikePoints_740","commonName":"Sirdar Road, Avondale","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300084","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385635440000","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T12:41:03.86Z"}],"children":[],"childrenUrls":[],"lat":51.510928,"lon":-0.214594},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_741","url":"/Place/BikePoints_741","commonName":"Freston Road, Avondale","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300085","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385640120000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.512981,"lon":-0.219486},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_742","url":"/Place/BikePoints_742","commonName":"Blenheim Crescent, Ladbroke Grove","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300090","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385649540000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.515108,"lon":-0.208565},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_743","url":"/Place/BikePoints_743","commonName":"Oxford Road, Putney","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300078","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385723700000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.460792,"lon":-0.212607},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_744","url":"/Place/BikePoints_744","commonName":"Ingrave Street, Clapham Junction","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300077","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385729760000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.467454,"lon":-0.172293},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_745","url":"/Place/BikePoints_745","commonName":"Upcerne Road, West Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300075","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385740020000","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:31:36.54Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:31:36.54Z"}],"children":[],"childrenUrls":[],"lat":51.478169,"lon":-0.182435},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_746","url":"/Place/BikePoints_746","commonName":"Lots Road, West Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300076","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385985720000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.479573,"lon":-0.179038},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_747","url":"/Place/BikePoints_747","commonName":"Ormonde Gate, Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300089","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1385997240000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.487964,"lon":-0.161765},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_748","url":"/Place/BikePoints_748","commonName":"Hertford Road, De Beauvoir Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300092","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1386159900000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.537277,"lon":-0.079201},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_749","url":"/Place/BikePoints_749","commonName":"Haggerston Road, Haggerston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300081","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1386172440000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.539328,"lon":-0.074284},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_750","url":"/Place/BikePoints_750","commonName":"Culvert Road, Battersea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300080","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1386240360000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.471095,"lon":-0.15785},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_751","url":"/Place/BikePoints_751","commonName":"Newton Street, Covent Garden","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300074","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1386250800000","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:06:51.99Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:06:51.99Z"}],"children":[],"childrenUrls":[],"lat":51.516128,"lon":-0.120909},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_754","url":"/Place/BikePoints_754","commonName":"Grenfell Road, Avondale","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300067","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1389003540000","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:01:46.06Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:01:46.06Z"}],"children":[],"childrenUrls":[],"lat":51.5129,"lon":-0.214762},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_755","url":"/Place/BikePoints_755","commonName":"The Vale, Chelsea","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300058","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1389008580000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.485121,"lon":-0.174971},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_756","url":"/Place/BikePoints_756","commonName":"Prince of Wales Drive, Battersea Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300073","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1390223040000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.475153,"lon":-0.159169},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_757","url":"/Place/BikePoints_757","commonName":"Harcourt Terrace, West Brompton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300069","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1389094260000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.487958,"lon":-0.187404},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_758","url":"/Place/BikePoints_758","commonName":"Westbourne Park Road, Portobello","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300057","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1389178020000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.51787,"lon":-0.201005},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_759","url":"/Place/BikePoints_759","commonName":"Broadley Terrace, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300072","modified":"2021-01-02T11:46:54.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:46:54.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:46:54.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1389627480000","modified":"2021-01-02T11:46:54.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:46:54.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:46:54.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T11:46:54.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T11:46:54.45Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T11:46:54.45Z"}],"children":[],"childrenUrls":[],"lat":51.524561,"lon":-0.165668},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_760","url":"/Place/BikePoints_760","commonName":"Rossmore Road, Marylebone","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300071","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1390310760000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.525269,"lon":-0.163795},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_761","url":"/Place/BikePoints_761","commonName":"Humbolt Road, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300068","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1389781800000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.483217,"lon":-0.21186},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_762","url":"/Place/BikePoints_762","commonName":"Storey's Gate, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200202","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1392039000000","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:14:08.13Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:14:08.13Z"}],"children":[],"childrenUrls":[],"lat":51.500703,"lon":-0.129698},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_763","url":"/Place/BikePoints_763","commonName":"Mile End Park Leisure Centre, Mile End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300027","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1392043020000","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:19:34.44Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"47","modified":"2021-01-02T13:19:34.44Z"}],"children":[],"childrenUrls":[],"lat":51.520597,"lon":-0.032566},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_764","url":"/Place/BikePoints_764","commonName":"St. John's Road, Clapham Junction","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200185","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1392633480000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.462392,"lon":-0.168292},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_765","url":"/Place/BikePoints_765","commonName":"Ranelagh Gardens, Fulham","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300064","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1392986940000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"39","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.467601,"lon":-0.206827},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_766","url":"/Place/BikePoints_766","commonName":"Ram Street, Wandsworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200079","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1392894840000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.457529,"lon":-0.192165},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_767","url":"/Place/BikePoints_767","commonName":"Santos Road, Wandsworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200177","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1393406280000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.457059,"lon":-0.200806},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_768","url":"/Place/BikePoints_768","commonName":"Clapham Common North Side, Clapham Common","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300065","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1393494060000","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:27:35.71Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T13:27:35.71Z"}],"children":[],"childrenUrls":[],"lat":51.461343,"lon":-0.159322},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_769","url":"/Place/BikePoints_769","commonName":"Sandilands Road, Walham Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300001","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1393939560000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"4","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.473611,"lon":-0.191803},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_770","url":"/Place/BikePoints_770","commonName":"Gwendwr Road, West Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300097","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1394099280000","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:45:44.163Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:45:44.163Z"}],"children":[],"childrenUrls":[],"lat":51.491026,"lon":-0.209121},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_771","url":"/Place/BikePoints_771","commonName":"Rifle Place, Avondale","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300007","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1394018400000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.509224,"lon":-0.216016},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_772","url":"/Place/BikePoints_772","commonName":"Binfield Road, Stockwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300015","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1396442100000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.472509,"lon":-0.122831},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_773","url":"/Place/BikePoints_773","commonName":"Tallis Street, Temple","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300096","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1396262520000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.511891,"lon":-0.107349},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_774","url":"/Place/BikePoints_774","commonName":"Hurlingham Park, Parsons Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300098","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1396265880000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.470131,"lon":-0.20464},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_775","url":"/Place/BikePoints_775","commonName":"Little Brook Green, Brook Green","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300101","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1396270320000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"33","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.496664,"lon":-0.223868},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_776","url":"/Place/BikePoints_776","commonName":"Abyssinia Close, Clapham Junction","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300099","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1396273320000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.460333,"lon":-0.167029},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_777","url":"/Place/BikePoints_777","commonName":"Limburg Road, Clapham Junction","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300100","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1406282940000","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T12:41:03.86Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T12:41:03.86Z"}],"children":[],"childrenUrls":[],"lat":51.461923,"lon":-0.165297},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_779","url":"/Place/BikePoints_779","commonName":"Houndsditch, Aldgate","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200072","modified":"2021-01-02T10:42:44.1Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T10:42:44.1Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T10:42:44.1Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1435313700000","modified":"2021-01-02T10:42:44.1Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T10:42:44.1Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T10:42:44.1Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T10:42:44.1Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T10:42:44.1Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T10:42:44.1Z"}],"children":[],"childrenUrls":[],"lat":51.514449,"lon":-0.077178},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_780","url":"/Place/BikePoints_780","commonName":"Imperial Wharf Station, Sands End","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300070","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1439455200000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.474665,"lon":-0.183165},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_781","url":"/Place/BikePoints_781","commonName":"Victoria & Albert Museum, South Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300032","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1446485340000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.495898,"lon":-0.173009},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_782","url":"/Place/BikePoints_782","commonName":"Halford Road, West Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300210","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1446485820000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.483911,"lon":-0.197609},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_783","url":"/Place/BikePoints_783","commonName":"Monier Road, Hackney Wick","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300213","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1448529660000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.540311,"lon":-0.02163},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_784","url":"/Place/BikePoints_784","commonName":"East Village, Queen Elizabeth Olympic Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300200","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1452789240000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"34","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.546326,"lon":-0.009935},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_785","url":"/Place/BikePoints_785","commonName":"Aquatic Centre, Queen Elizabeth Olympic Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300233","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1451908440000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"41","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"64","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.54094,"lon":-0.01051},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_786","url":"/Place/BikePoints_786","commonName":"Lee Valley VeloPark, Queen Elizabeth Olympic Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300029","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1451918160000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"44","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.549369,"lon":-0.015717},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_787","url":"/Place/BikePoints_787","commonName":"Timber Lodge, Queen Elizabeth Olympic Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300227","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1451900700000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.546805,"lon":-0.014691},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_789","url":"/Place/BikePoints_789","commonName":"Podium, Queen Elizabeth Olympic Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300021","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1452507000000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"40","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.538718,"lon":-0.011889},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_790","url":"/Place/BikePoints_790","commonName":"Stratford Station, Stratford","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300234","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1452687420000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"14","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.541793,"lon":-0.00481},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_792","url":"/Place/BikePoints_792","commonName":"Blackfriars Road, Southwark","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300214","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1454926380000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"42","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.505461,"lon":-0.10454},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_793","url":"/Place/BikePoints_793","commonName":"Cromer Street, Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300205","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1459424760000","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:03:50.123Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:03:50.123Z"}],"children":[],"childrenUrls":[],"lat":51.528279,"lon":-0.119558},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_794","url":"/Place/BikePoints_794","commonName":"Victoria Rise, Clapham Common","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300204","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1456404240000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.461376,"lon":-0.147804},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_795","url":"/Place/BikePoints_795","commonName":"Euston Square Gardens, Euston","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300203","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1456744740000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.527068,"lon":-0.131861},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_796","url":"/Place/BikePoints_796","commonName":"Coram Street, Bloomsbury","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300201","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1456746420000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.524,"lon":-0.126409},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_797","url":"/Place/BikePoints_797","commonName":"Ossulston Street, Somers Town","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300211","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1456839540000","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T12:59:46.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T12:59:46.91Z"}],"children":[],"childrenUrls":[],"lat":51.5293,"lon":-0.128279},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_798","url":"/Place/BikePoints_798","commonName":"Birkenhead Street, King's Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300212","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1464787980000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.530199,"lon":-0.122299},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_799","url":"/Place/BikePoints_799","commonName":"Kings Gate House, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300202","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1464876480000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.497698,"lon":-0.137598},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_800","url":"/Place/BikePoints_800","commonName":"Sopwith Way, Battersea Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300248","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1457107140000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.481121,"lon":-0.149035},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_801","url":"/Place/BikePoints_801","commonName":"Lavington Street, Bankside","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300208","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1458824640000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"29","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.505224,"lon":-0.098031},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_802","url":"/Place/BikePoints_802","commonName":"Albert Square, Stockwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300209","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1464865500000","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:57:48.983Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:57:48.983Z"}],"children":[],"childrenUrls":[],"lat":51.47659,"lon":-0.118256},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_803","url":"/Place/BikePoints_803","commonName":"Southwark Street, Bankside","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300238","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1464787860000","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T12:58:47.29Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T12:58:47.29Z"}],"children":[],"childrenUrls":[],"lat":51.505409,"lon":-0.098341},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_804","url":"/Place/BikePoints_804","commonName":"Good's Way, King's Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300243","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1459410960000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.534667,"lon":-0.125078},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_805","url":"/Place/BikePoints_805","commonName":"The Metropolitan, Portobello","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300244","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1467626400000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.520509,"lon":-0.200804},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_806","url":"/Place/BikePoints_806","commonName":"Handyside Street, King's Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300241","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1472723460000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.53724,"lon":-0.124807},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_807","url":"/Place/BikePoints_807","commonName":"Bevington Road West, North Kensington","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300236","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1466715600000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"15","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.5212,"lon":-0.208888},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_809","url":"/Place/BikePoints_809","commonName":"Lincoln's Inn Fields, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300240","modified":"2021-01-02T11:57:57.517Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:57:57.517Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:57:57.517Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1467640800000","modified":"2021-01-02T11:57:57.517Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:57:57.517Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:57:57.517Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T11:57:57.517Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T11:57:57.517Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T11:57:57.517Z"}],"children":[],"childrenUrls":[],"lat":51.516277,"lon":-0.118272},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_810","url":"/Place/BikePoints_810","commonName":"Tate Modern, Bankside","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300237","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1464943200000","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T12:45:04.947Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T12:45:04.947Z"}],"children":[],"childrenUrls":[],"lat":51.506725,"lon":-0.098807},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_811","url":"/Place/BikePoints_811","commonName":"Westferry Circus, Canary Wharf","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300228","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1469538960000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.505703,"lon":-0.027772},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_812","url":"/Place/BikePoints_812","commonName":"Here East North, Queen Elizabeth Olympic Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300217","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1469005200000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.548731,"lon":-0.022606},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_813","url":"/Place/BikePoints_813","commonName":"New Spring Gardens Walk, Vauxhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300224","modified":"2021-01-02T11:01:43.18Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T11:01:43.18Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:01:43.18Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1467627120000","modified":"2021-01-02T11:01:43.18Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T11:01:43.18Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T11:01:43.18Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T11:01:43.18Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T11:01:43.18Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"37","modified":"2021-01-02T11:01:43.18Z"}],"children":[],"childrenUrls":[],"lat":51.487807,"lon":-0.122759},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_814","url":"/Place/BikePoints_814","commonName":"Clapham Road, Lingham Street, Stockwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300245","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1464870060000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.471433,"lon":-0.12367},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_815","url":"/Place/BikePoints_815","commonName":"Lambeth Palace Road, Waterloo","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300231","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1462357680000","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"31","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:52:06.3Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:52:06.3Z"}],"children":[],"childrenUrls":[],"lat":51.500089,"lon":-0.116628},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_816","url":"/Place/BikePoints_816","commonName":"Here East South, Queen Elizabeth Olympic Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300219","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1489065360000","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:29:35.213Z"}],"children":[],"childrenUrls":[],"lat":51.546532,"lon":-0.020597},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_817","url":"/Place/BikePoints_817","commonName":"Riverlight South, Nine Elms","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300232","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1464949140000","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"23","modified":"2021-01-02T13:51:07.973Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:51:07.973Z"}],"children":[],"childrenUrls":[],"lat":51.481335,"lon":-0.138212},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_818","url":"/Place/BikePoints_818","commonName":"Westminster Pier, Westminster","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300249","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1563958740000","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:54:08.48Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:54:08.48Z"}],"children":[],"childrenUrls":[],"lat":51.501513,"lon":-0.123823},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_819","url":"/Place/BikePoints_819","commonName":"Belvedere Road 2, South Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300246","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1476360120000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"36","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"38","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.50621,"lon":-0.114842},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_820","url":"/Place/BikePoints_820","commonName":"Victory Place, Walworth","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300239","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1481807940000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"12","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.492807,"lon":-0.091938},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_821","url":"/Place/BikePoints_821","commonName":"Battersea Power Station, Battersea Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300221","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1487335920000","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:58:48.183Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:58:48.183Z"}],"children":[],"childrenUrls":[],"lat":51.483507,"lon":-0.147714},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_826","url":"/Place/BikePoints_826","commonName":"Allington Street, Victoria","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300242","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1500554880000","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"11","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:49:42.26Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:49:42.26Z"}],"children":[],"childrenUrls":[],"lat":51.496863,"lon":-0.142943},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_827","url":"/Place/BikePoints_827","commonName":"Cranmer Road, Stockwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300247","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1517788800000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"18","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.479601,"lon":-0.111471},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_828","url":"/Place/BikePoints_828","commonName":"Normandy Road, Stockwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300225","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1517788800000","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:29:35.213Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"32","modified":"2021-01-02T13:29:35.213Z"}],"children":[],"childrenUrls":[],"lat":51.473874,"lon":-0.11258},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_829","url":"/Place/BikePoints_829","commonName":"Wynne Road, Stockwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300230","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1517443200000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"7","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"17","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.469217,"lon":-0.112686},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_830","url":"/Place/BikePoints_830","commonName":"Sidney Road, Stockwell","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300229","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1517961600000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"27","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.469202,"lon":-0.119022},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_831","url":"/Place/BikePoints_831","commonName":"St John's Crescent, Brixton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300215","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1517961600000","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.466232,"lon":-0.113179},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_832","url":"/Place/BikePoints_832","commonName":"Ferndale Road, Brixton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200240","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1517961600000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"1","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"28","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.464019,"lon":-0.115781},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_833","url":"/Place/BikePoints_833","commonName":"Saltoun Road, Brixton","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300206","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1517875200000","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"38","modified":"2021-01-02T13:55:01.37Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"42","modified":"2021-01-02T13:55:01.37Z"}],"children":[],"childrenUrls":[],"lat":51.460232,"lon":-0.115375},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_834","url":"/Place/BikePoints_834","commonName":"Gas Holders, Battersea Park","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300216","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1529449200000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"0","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.477966,"lon":-0.147857},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_835","url":"/Place/BikePoints_835","commonName":"Farringdon Street, Holborn","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300220","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"5","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.516785,"lon":-0.104947},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_836","url":"/Place/BikePoints_836","commonName":"York Way, Kings Cross","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300235","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:40:35.933Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:40:35.933Z"}],"children":[],"childrenUrls":[],"lat":51.541596,"lon":-0.125441},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_838","url":"/Place/BikePoints_838","commonName":"Fore Street Avenue, Guildhall","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300222","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1539254700000","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"3","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:30:36.03Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"25","modified":"2021-01-02T13:30:36.03Z"}],"children":[],"childrenUrls":[],"lat":51.518093,"lon":-0.091401},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_839","url":"/Place/BikePoints_839","commonName":"Sea Containers, South Bank","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"200144","modified":"2021-01-02T12:12:00.79Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T12:12:00.79Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:12:00.79Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1544611140000","modified":"2021-01-02T12:12:00.79Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T12:12:00.79Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T12:12:00.79Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T12:12:00.79Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"6","modified":"2021-01-02T12:12:00.79Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"30","modified":"2021-01-02T12:12:00.79Z"}],"children":[],"childrenUrls":[],"lat":51.508033,"lon":-0.106823},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_840","url":"/Place/BikePoints_840","commonName":"George Row, Bermondsey","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002679","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1599752640000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"13","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"22","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.498585,"lon":-0.068981},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_841","url":"/Place/BikePoints_841","commonName":"Tower Wharf, Bermondsey","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002667","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"10","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:48:42.19Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"20","modified":"2021-01-02T13:48:42.19Z"}],"children":[],"childrenUrls":[],"lat":51.500845,"lon":-0.074704},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_842","url":"/Place/BikePoints_842","commonName":"Temple Gardens, Temple","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300250","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1600856400000","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"8","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"16","modified":"2021-01-02T13:47:40.11Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"24","modified":"2021-01-02T13:47:40.11Z"}],"children":[],"childrenUrls":[],"lat":51.510981,"lon":-0.108322},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_844","url":"/Place/BikePoints_844","commonName":"Canada Water Station, Rotherhithe","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"300252","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1608298140000","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"26","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"9","modified":"2021-01-02T13:42:38.91Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"35","modified":"2021-01-02T13:42:38.91Z"}],"children":[],"childrenUrls":[],"lat":51.498439,"lon":-0.04915},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_355","url":"/Place/BikePoints_355","commonName":"Clapham Common Station, Clapham Common","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"002694","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1287752460000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"2","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.461388,"lon":-0.139221},{"$type":"Tfl.Api.Presentation.Entities.Place, Tfl.Api.Presentation.Entities","id":"BikePoints_282","url":"/Place/BikePoints_282","commonName":"Royal London Hospital, Whitechapel","placeType":"BikePoint","additionalProperties":[{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"TerminalName","sourceSystemKey":"BikePoints","value":"001077","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Installed","sourceSystemKey":"BikePoints","value":"true","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Locked","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"InstallDate","sourceSystemKey":"BikePoints","value":"1279726980000","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"RemovalDate","sourceSystemKey":"BikePoints","value":"","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"Temporary","sourceSystemKey":"BikePoints","value":"false","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbBikes","sourceSystemKey":"BikePoints","value":"21","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbEmptyDocks","sourceSystemKey":"BikePoints","value":"19","modified":"2021-01-02T13:57:01.33Z"},{"$type":"Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities","category":"Description","key":"NbDocks","sourceSystemKey":"BikePoints","value":"42","modified":"2021-01-02T13:57:01.33Z"}],"children":[],"childrenUrls":[],"lat":51.519064,"lon":-0.059642}] \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/data/bike-sharing-trip-data-4-january-28-february-reduced.json b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/data/bike-sharing-trip-data-4-january-28-february-reduced.json new file mode 100644 index 0000000000000000000000000000000000000000..8334f053b4f30acefa40567be050e1e7a9e5984c --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/data/bike-sharing-trip-data-4-january-28-february-reduced.json @@ -0,0 +1,17066 @@ +[ +{"_id":"40346542","duration":1260,"bikeId":"5326","endDate":1420331460,"endStationId":"721","endStationName":"Wendon Street, Old Ford","startDate":1420330200,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40346661","duration":480,"bikeId":"11251","endDate":1420332780,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1420332300,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40346706","duration":1200,"bikeId":"4698","endDate":1420334400,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1420333200,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40346731","duration":1740,"bikeId":"1372","endDate":1420335540,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1420333800,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40346862","duration":480,"bikeId":"8269","endDate":1420337700,"endStationId":"640","endStationName":"Silverthorne Road, Battersea","startDate":1420337220,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"40346855","duration":2340,"bikeId":"6995","endDate":1420339320,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1420336980,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"40346973","duration":1680,"bikeId":"1937","endDate":1420341480,"endStationId":"143","endStationName":"Pont Street, Knightsbridge","startDate":1420339800,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40347081","duration":360,"bikeId":"10744","endDate":1420344720,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1420344360,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"40347139","duration":720,"bikeId":"12068","endDate":1420349400,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1420348680,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40347221","duration":120,"bikeId":"7660","endDate":1420354440,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1420354320,"startStationId":"352","startStationName":"Vauxhall Street, Vauxhall"}, +{"_id":"40347277","duration":660,"bikeId":"4501","endDate":1420357740,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1420357080,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"40347346","duration":540,"bikeId":"9105","endDate":1420360200,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1420359660,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"40347439","duration":420,"bikeId":"5498","endDate":1420362060,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1420361640,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40347485","duration":600,"bikeId":"7351","endDate":1420363200,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1420362600,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40347566","duration":720,"bikeId":"9667","endDate":1420364520,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1420363800,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40347665","duration":420,"bikeId":"8859","endDate":1420365120,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1420364700,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40347764","duration":120,"bikeId":"9238","endDate":1420365660,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1420365540,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40347715","duration":1200,"bikeId":"12337","endDate":1420366320,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1420365120,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"40347812","duration":1020,"bikeId":"2684","endDate":1420366860,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1420365840,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40347790","duration":1620,"bikeId":"10803","endDate":1420367280,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1420365660,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"40347895","duration":1380,"bikeId":"4290","endDate":1420367760,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1420366380,"startStationId":"496","startStationName":"Devons Road, Bow"}, +{"_id":"40348058","duration":900,"bikeId":"3256","endDate":1420368300,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1420367400,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"40347756","duration":3420,"bikeId":"9513","endDate":1420368840,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1420365420,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"40347856","duration":3120,"bikeId":"2666","endDate":1420369260,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1420366140,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"40347878","duration":3480,"bikeId":"8987","endDate":1420369680,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1420366200,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40348425","duration":420,"bikeId":"12981","endDate":1420370160,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1420369740,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40348262","duration":1800,"bikeId":"12437","endDate":1420370520,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1420368720,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40348580","duration":480,"bikeId":"4867","endDate":1420370880,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1420370400,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"40348501","duration":1140,"bikeId":"87","endDate":1420371180,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1420370040,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40348757","duration":240,"bikeId":"101","endDate":1420371480,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1420371240,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40348764","duration":540,"bikeId":"7457","endDate":1420371840,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1420371300,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"40348692","duration":1260,"bikeId":"80","endDate":1420372200,"endStationId":"704","endStationName":"Mexfield Road, East Putney","startDate":1420370940,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40348823","duration":960,"bikeId":"2899","endDate":1420372560,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1420371600,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40349036","duration":480,"bikeId":"554","endDate":1420372860,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1420372380,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40349087","duration":420,"bikeId":"6906","endDate":1420373040,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1420372620,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40349232","duration":180,"bikeId":"11201","endDate":1420373400,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1420373220,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"40349158","duration":780,"bikeId":"5879","endDate":1420373700,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1420372920,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40349288","duration":540,"bikeId":"3098","endDate":1420374000,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1420373460,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40349306","duration":780,"bikeId":"8584","endDate":1420374240,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1420373460,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"40348994","duration":2400,"bikeId":"8683","endDate":1420374540,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1420372140,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40349145","duration":1920,"bikeId":"12125","endDate":1420374780,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1420372860,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40349547","duration":720,"bikeId":"6505","endDate":1420375080,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1420374360,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40349701","duration":360,"bikeId":"4988","endDate":1420375380,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1420375020,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40349598","duration":1140,"bikeId":"10358","endDate":1420375680,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1420374540,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40349763","duration":660,"bikeId":"11510","endDate":1420375980,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1420375320,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40349873","duration":540,"bikeId":"800","endDate":1420376220,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1420375680,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40349868","duration":840,"bikeId":"5115","endDate":1420376460,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1420375620,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40349714","duration":1620,"bikeId":"11876","endDate":1420376700,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1420375080,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"40349770","duration":1560,"bikeId":"3438","endDate":1420376940,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1420375380,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"40350186","duration":540,"bikeId":"12118","endDate":1420377300,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420376760,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"40350009","duration":1440,"bikeId":"9004","endDate":1420377540,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1420376100,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"40350290","duration":720,"bikeId":"8042","endDate":1420377840,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1420377120,"startStationId":"693","startStationName":"Felsham Road, Putney"}, +{"_id":"40350391","duration":480,"bikeId":"238","endDate":1420378020,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420377540,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40350303","duration":1020,"bikeId":"12529","endDate":1420378260,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1420377240,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40350426","duration":840,"bikeId":"3502","endDate":1420378560,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1420377720,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"40350712","duration":180,"bikeId":"12730","endDate":1420378800,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1420378620,"startStationId":"161","startStationName":"Guildhouse Street, Victoria"}, +{"_id":"40350730","duration":360,"bikeId":"8072","endDate":1420379040,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1420378680,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40350800","duration":360,"bikeId":"5961","endDate":1420379280,"endStationId":"365","endStationName":"City Road, Angel","startDate":1420378920,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40350470","duration":1620,"bikeId":"7043","endDate":1420379520,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1420377900,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40350393","duration":2220,"bikeId":"7525","endDate":1420379760,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1420377540,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40350704","duration":1440,"bikeId":"1121","endDate":1420380060,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1420378620,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"40351080","duration":300,"bikeId":"6806","endDate":1420380240,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1420379940,"startStationId":"675","startStationName":"Usk Road, Battersea"}, +{"_id":"40351047","duration":660,"bikeId":"10772","endDate":1420380480,"endStationId":"725","endStationName":"Thessaly Road North, Nine Elms","startDate":1420379820,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"40351220","duration":360,"bikeId":"6311","endDate":1420380720,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1420380360,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40351136","duration":840,"bikeId":"4216","endDate":1420380960,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1420380120,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"40351053","duration":1380,"bikeId":"5978","endDate":1420381260,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1420379880,"startStationId":"325","startStationName":"St. Martin's Street, West End"}, +{"_id":"40351301","duration":840,"bikeId":"9200","endDate":1420381440,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1420380600,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40351510","duration":360,"bikeId":"2517","endDate":1420381680,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1420381320,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"40351508","duration":660,"bikeId":"5788","endDate":1420381920,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1420381260,"startStationId":"652","startStationName":"Evesham Street, Avondale"}, +{"_id":"40351456","duration":1080,"bikeId":"5901","endDate":1420382160,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1420381080,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"40351668","duration":480,"bikeId":"8374","endDate":1420382400,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1420381920,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40351529","duration":1260,"bikeId":"11381","endDate":1420382640,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1420381380,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"40351882","duration":360,"bikeId":"8496","endDate":1420382880,"endStationId":"736","endStationName":"Queensdale Road, Shepherd's Bush","startDate":1420382520,"startStationId":"736","startStationName":"Queensdale Road, Shepherd's Bush"}, +{"_id":"40351925","duration":480,"bikeId":"7870","endDate":1420383120,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1420382640,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40351977","duration":540,"bikeId":"1593","endDate":1420383360,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1420382820,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40352166","duration":180,"bikeId":"1574","endDate":1420383600,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1420383420,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40351473","duration":2640,"bikeId":"12047","endDate":1420383780,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1420381140,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40351945","duration":1260,"bikeId":"11096","endDate":1420383960,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1420382700,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40352004","duration":1320,"bikeId":"7957","endDate":1420384200,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1420382880,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40352168","duration":1020,"bikeId":"8417","endDate":1420384440,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1420383420,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40352144","duration":1320,"bikeId":"6906","endDate":1420384620,"endStationId":"475","endStationName":"Lightermans Road, Millwall","startDate":1420383300,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40352132","duration":1620,"bikeId":"11411","endDate":1420384860,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1420383240,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40352595","duration":240,"bikeId":"5114","endDate":1420385160,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1420384920,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40352355","duration":1260,"bikeId":"13038","endDate":1420385400,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1420384140,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40352310","duration":1740,"bikeId":"6221","endDate":1420385640,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1420383900,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40352773","duration":300,"bikeId":"8967","endDate":1420385880,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1420385580,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40352301","duration":2160,"bikeId":"8200","endDate":1420386060,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1420383900,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"40352892","duration":360,"bikeId":"12946","endDate":1420386300,"endStationId":"750","endStationName":"Culvert Road, Battersea","startDate":1420385940,"startStationId":"677","startStationName":"Heath Road, Battersea"}, +{"_id":"40352693","duration":1200,"bikeId":"12520","endDate":1420386480,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1420385280,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40353046","duration":180,"bikeId":"7724","endDate":1420386780,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1420386600,"startStationId":"467","startStationName":"Southern Grove, Bow"}, +{"_id":"40353060","duration":300,"bikeId":"7260","endDate":1420387020,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1420386720,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40352959","duration":1020,"bikeId":"7980","endDate":1420387260,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1420386240,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40351413","duration":6600,"bikeId":"3725","endDate":1420387560,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1420380960,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40353263","duration":300,"bikeId":"1183","endDate":1420387860,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1420387560,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40353158","duration":960,"bikeId":"12308","endDate":1420388160,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1420387200,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40353331","duration":600,"bikeId":"10406","endDate":1420388460,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1420387860,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40353441","duration":360,"bikeId":"8250","endDate":1420388700,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1420388340,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"40353409","duration":780,"bikeId":"12727","endDate":1420389000,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1420388220,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40352917","duration":3300,"bikeId":"4293","endDate":1420389360,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1420386060,"startStationId":"728","startStationName":"Putney Bridge Road, East Putney"}, +{"_id":"40353663","duration":120,"bikeId":"11080","endDate":1420389600,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1420389480,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40353443","duration":1620,"bikeId":"729","endDate":1420389960,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1420388340,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"40352842","duration":4440,"bikeId":"12925","endDate":1420390260,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1420385820,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40353889","duration":120,"bikeId":"12292","endDate":1420390560,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1420390440,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40353649","duration":1440,"bikeId":"7230","endDate":1420390800,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1420389360,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40353949","duration":360,"bikeId":"6382","endDate":1420391100,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1420390740,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"40354007","duration":360,"bikeId":"9388","endDate":1420391460,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1420391100,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40353964","duration":1080,"bikeId":"7963","endDate":1420391880,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1420390800,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40354123","duration":480,"bikeId":"3407","endDate":1420392240,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1420391760,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40354060","duration":1200,"bikeId":"2217","endDate":1420392600,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1420391400,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40354215","duration":660,"bikeId":"8793","endDate":1420392960,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1420392300,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40354229","duration":960,"bikeId":"7983","endDate":1420393320,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1420392360,"startStationId":"291","startStationName":"Claverton Street, Pimlico"}, +{"_id":"40354315","duration":900,"bikeId":"493","endDate":1420393680,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1420392780,"startStationId":"665","startStationName":"Smugglers Way, Wandsworth"}, +{"_id":"40354092","duration":2460,"bikeId":"2232","endDate":1420394040,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1420391580,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40354543","duration":300,"bikeId":"2256","endDate":1420394460,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420394160,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40352830","duration":9120,"bikeId":"7936","endDate":1420394880,"endStationId":"484","endStationName":"Bromley High Street, Bromley","startDate":1420385760,"startStationId":"484","startStationName":"Bromley High Street, Bromley"}, +{"_id":"40354703","duration":240,"bikeId":"10926","endDate":1420395240,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1420395000,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"40354772","duration":120,"bikeId":"3742","endDate":1420395540,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1420395420,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40354813","duration":180,"bikeId":"10622","endDate":1420395900,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1420395720,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40354862","duration":300,"bikeId":"11057","endDate":1420396320,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1420396020,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40354907","duration":480,"bikeId":"3169","endDate":1420396800,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1420396320,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"40354739","duration":1980,"bikeId":"12388","endDate":1420397220,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1420395240,"startStationId":"297","startStationName":"Geraldine Street, Elephant & Castle"}, +{"_id":"40354924","duration":1260,"bikeId":"12706","endDate":1420397700,"endStationId":"640","endStationName":"Silverthorne Road, Battersea","startDate":1420396440,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40354998","duration":1200,"bikeId":"8891","endDate":1420398240,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1420397040,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40354745","duration":3420,"bikeId":"10969","endDate":1420398720,"endStationId":"768","endStationName":"Clapham Common Northside, Clapham Common","startDate":1420395300,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40355183","duration":900,"bikeId":"6705","endDate":1420399380,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1420398480,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40355299","duration":540,"bikeId":"6575","endDate":1420400100,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1420399560,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40355342","duration":660,"bikeId":"1931","endDate":1420400640,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1420399980,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40355325","duration":1320,"bikeId":"4501","endDate":1420401120,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1420399800,"startStationId":"762","startStationName":"Storey's Gate, Westminster"}, +{"_id":"40355521","duration":360,"bikeId":"10947","endDate":1420401840,"endStationId":"291","endStationName":"Claverton Street, Pimlico","startDate":1420401480,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40355413","duration":1920,"bikeId":"12334","endDate":1420402440,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1420400520,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40355636","duration":540,"bikeId":"12048","endDate":1420403100,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1420402560,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40355632","duration":1320,"bikeId":"7939","endDate":1420403820,"endStationId":"763","endStationName":"Mile End Park Leisure Centre, Mile End","startDate":1420402500,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40355659","duration":1680,"bikeId":"12891","endDate":1420404360,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1420402680,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40355858","duration":360,"bikeId":"7605","endDate":1420405200,"endStationId":"165","endStationName":"Orsett Terrace, Bayswater","startDate":1420404840,"startStationId":"402","startStationName":"Penfold Street, Marylebone"}, +{"_id":"40355838","duration":1260,"bikeId":"9159","endDate":1420405980,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1420404720,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40355987","duration":240,"bikeId":"12370","endDate":1420406880,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1420406640,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40355995","duration":1080,"bikeId":"5285","endDate":1420407900,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1420406820,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"40356139","duration":300,"bikeId":"10688","endDate":1420409160,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1420408860,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40356096","duration":1800,"bikeId":"12989","endDate":1420410180,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1420408380,"startStationId":"527","startStationName":"Hansard Mews, Shepherds Bush"}, +{"_id":"40356215","duration":1080,"bikeId":"10539","endDate":1420411320,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1420410240,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40356287","duration":1020,"bikeId":"4214","endDate":1420412520,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1420411500,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40356375","duration":540,"bikeId":"4714","endDate":1420413900,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1420413360,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"40356429","duration":840,"bikeId":"9851","endDate":1420415280,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1420414440,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40356481","duration":1260,"bikeId":"11853","endDate":1420416840,"endStationId":"740","endStationName":"Sirdar Road, Avondale","startDate":1420415580,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40356531","duration":2040,"bikeId":"4920","endDate":1420419180,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1420417140,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40356647","duration":480,"bikeId":"6312","endDate":1420423380,"endStationId":"604","endStationName":"St Martin's Close, Camden Town","startDate":1420422900,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40356712","duration":360,"bikeId":"430","endDate":1420430160,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1420429800,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40356781","duration":480,"bikeId":"11993","endDate":1420436100,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1420435620,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40356865","duration":360,"bikeId":"10867","endDate":1420438320,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1420437960,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"40356935","duration":600,"bikeId":"4710","endDate":1420439280,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1420438680,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40357004","duration":540,"bikeId":"7484","endDate":1420440000,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1420439460,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40357056","duration":660,"bikeId":"11980","endDate":1420440480,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1420439820,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"40357156","duration":600,"bikeId":"9104","endDate":1420440900,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1420440300,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"40357218","duration":720,"bikeId":"11873","endDate":1420441260,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1420440540,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40357258","duration":720,"bikeId":"1618","endDate":1420441560,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1420440840,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40357284","duration":1020,"bikeId":"8538","endDate":1420441920,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1420440900,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40357492","duration":540,"bikeId":"3768","endDate":1420442160,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1420441620,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40357551","duration":540,"bikeId":"7153","endDate":1420442400,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1420441860,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40357595","duration":660,"bikeId":"8031","endDate":1420442640,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1420441980,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40357613","duration":900,"bikeId":"12535","endDate":1420442880,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1420441980,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"40357718","duration":660,"bikeId":"9390","endDate":1420443060,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1420442400,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"40357842","duration":540,"bikeId":"12205","endDate":1420443240,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420442700,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40357873","duration":720,"bikeId":"8387","endDate":1420443480,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1420442760,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"40358241","duration":120,"bikeId":"2699","endDate":1420443660,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1420443540,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"40358055","duration":660,"bikeId":"2955","endDate":1420443840,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1420443180,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40358063","duration":780,"bikeId":"12644","endDate":1420443960,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1420443180,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40358224","duration":600,"bikeId":"5514","endDate":1420444140,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1420443540,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40358435","duration":300,"bikeId":"11073","endDate":1420444200,"endStationId":"759","endStationName":"Broadley Terrace, Marylebone","startDate":1420443900,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40358080","duration":1020,"bikeId":"12432","endDate":1420444320,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1420443300,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40358468","duration":480,"bikeId":"2277","endDate":1420444440,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1420443960,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40358182","duration":1080,"bikeId":"10986","endDate":1420444560,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1420443480,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40358576","duration":600,"bikeId":"878","endDate":1420444680,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1420444080,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40358467","duration":780,"bikeId":"2736","endDate":1420444740,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1420443960,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40358608","duration":720,"bikeId":"6954","endDate":1420444860,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1420444140,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40358534","duration":960,"bikeId":"4214","endDate":1420444980,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1420444020,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40359109","duration":240,"bikeId":"3639","endDate":1420445100,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1420444860,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40358673","duration":960,"bikeId":"4291","endDate":1420445220,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420444260,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40358902","duration":660,"bikeId":"7478","endDate":1420445280,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1420444620,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40359340","duration":300,"bikeId":"12380","endDate":1420445400,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1420445100,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40358994","duration":720,"bikeId":"5638","endDate":1420445460,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1420444740,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40359345","duration":480,"bikeId":"9229","endDate":1420445580,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1420445100,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40358497","duration":1620,"bikeId":"5601","endDate":1420445640,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1420444020,"startStationId":"375","startStationName":"Kensington Town Hall, Kensington"}, +{"_id":"40359512","duration":360,"bikeId":"6884","endDate":1420445700,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1420445340,"startStationId":"370","startStationName":"Paddington Green, Paddington"}, +{"_id":"40359683","duration":240,"bikeId":"4778","endDate":1420445820,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420445580,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40359442","duration":600,"bikeId":"4410","endDate":1420445880,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420445280,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"40359796","duration":300,"bikeId":"3968","endDate":1420446000,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1420445700,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40359895","duration":240,"bikeId":"5901","endDate":1420446060,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420445820,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40359707","duration":600,"bikeId":"11936","endDate":1420446180,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420445580,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40358585","duration":2160,"bikeId":"365","endDate":1420446240,"endStationId":"165","endStationName":"Orsett Terrace, Bayswater","startDate":1420444080,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40359763","duration":720,"bikeId":"3161","endDate":1420446360,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1420445640,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40359423","duration":1200,"bikeId":"10036","endDate":1420446420,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1420445220,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40359279","duration":1440,"bikeId":"2513","endDate":1420446480,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1420445040,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"40359599","duration":1080,"bikeId":"1877","endDate":1420446540,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1420445460,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"40359682","duration":1080,"bikeId":"991","endDate":1420446660,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420445580,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40359795","duration":1020,"bikeId":"682","endDate":1420446720,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1420445700,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40360080","duration":780,"bikeId":"11070","endDate":1420446780,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1420446000,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"40360061","duration":900,"bikeId":"3058","endDate":1420446900,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1420446000,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40360724","duration":300,"bikeId":"4583","endDate":1420446960,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1420446660,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40360446","duration":600,"bikeId":"10468","endDate":1420447020,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420446420,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40360944","duration":240,"bikeId":"12611","endDate":1420447140,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1420446900,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40360727","duration":540,"bikeId":"9905","endDate":1420447200,"endStationId":"410","endStationName":"Edgware Road Station, Paddington","startDate":1420446660,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40360654","duration":660,"bikeId":"2904","endDate":1420447260,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1420446600,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"40360045","duration":1380,"bikeId":"4496","endDate":1420447320,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1420445940,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40360618","duration":780,"bikeId":"12313","endDate":1420447380,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1420446600,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"40360350","duration":1140,"bikeId":"9654","endDate":1420447440,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1420446300,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"40361226","duration":420,"bikeId":"5974","endDate":1420447560,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1420447140,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40360831","duration":840,"bikeId":"12669","endDate":1420447620,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1420446780,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40361346","duration":360,"bikeId":"12464","endDate":1420447680,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420447320,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40359733","duration":2100,"bikeId":"4106","endDate":1420447740,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1420445640,"startStationId":"734","startStationName":"Plough Terrace, Clapham Junction"}, +{"_id":"40360047","duration":1860,"bikeId":"4630","endDate":1420447800,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1420445940,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"40359969","duration":1980,"bikeId":"9009","endDate":1420447860,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1420445880,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40361826","duration":180,"bikeId":"3481","endDate":1420447920,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1420447740,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"40359977","duration":2100,"bikeId":"5930","endDate":1420447980,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1420445880,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40361533","duration":600,"bikeId":"4328","endDate":1420448040,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1420447440,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"40361788","duration":420,"bikeId":"506","endDate":1420448100,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1420447680,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40361277","duration":960,"bikeId":"7320","endDate":1420448160,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1420447200,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40361492","duration":840,"bikeId":"8359","endDate":1420448220,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1420447380,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40361983","duration":360,"bikeId":"11214","endDate":1420448220,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1420447860,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"40361583","duration":780,"bikeId":"9905","endDate":1420448280,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1420447500,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40361978","duration":480,"bikeId":"3425","endDate":1420448340,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1420447860,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40361592","duration":900,"bikeId":"8108","endDate":1420448400,"endStationId":"222","endStationName":"Knightsbridge, Hyde Park","startDate":1420447500,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40361930","duration":660,"bikeId":"11938","endDate":1420448460,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1420447800,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40362029","duration":600,"bikeId":"6100","endDate":1420448520,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1420447920,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"40362389","duration":300,"bikeId":"3022","endDate":1420448640,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1420448340,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40361638","duration":1620,"bikeId":"12549","endDate":1420448700,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1420447080,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40360342","duration":2460,"bikeId":"4956","endDate":1420448760,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1420446300,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"40361869","duration":1080,"bikeId":"8192","endDate":1420448880,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1420447800,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"40361940","duration":1080,"bikeId":"11318","endDate":1420448940,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1420447860,"startStationId":"507","startStationName":"Clarkson Street, Bethnal Green"}, +{"_id":"40362392","duration":720,"bikeId":"12468","endDate":1420449060,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1420448340,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40361917","duration":1320,"bikeId":"7436","endDate":1420449120,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1420447800,"startStationId":"550","startStationName":"Harford Street, Mile End"}, +{"_id":"40362618","duration":540,"bikeId":"10947","endDate":1420449240,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420448700,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40362419","duration":960,"bikeId":"3624","endDate":1420449360,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1420448400,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40362534","duration":900,"bikeId":"11312","endDate":1420449420,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1420448520,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40362596","duration":840,"bikeId":"5872","endDate":1420449480,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1420448640,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40362402","duration":1260,"bikeId":"7778","endDate":1420449600,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1420448340,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"40363059","duration":240,"bikeId":"1053","endDate":1420449720,"endStationId":"365","endStationName":"City Road, Angel","startDate":1420449480,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40363104","duration":300,"bikeId":"12124","endDate":1420449840,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1420449540,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40363176","duration":240,"bikeId":"9410","endDate":1420449960,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1420449720,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40362711","duration":1320,"bikeId":"919","endDate":1420450080,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1420448760,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40363015","duration":900,"bikeId":"7004","endDate":1420450260,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420449360,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40363021","duration":1020,"bikeId":"1359","endDate":1420450380,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1420449360,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40363311","duration":480,"bikeId":"10752","endDate":1420450620,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1420450140,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40363291","duration":720,"bikeId":"8643","endDate":1420450800,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1420450080,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"40363440","duration":480,"bikeId":"5823","endDate":1420451040,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1420450560,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40363493","duration":540,"bikeId":"10752","endDate":1420451220,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1420450680,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"40363366","duration":1080,"bikeId":"9435","endDate":1420451400,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1420450320,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40363615","duration":540,"bikeId":"6257","endDate":1420451640,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1420451100,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40363649","duration":600,"bikeId":"11436","endDate":1420451820,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1420451220,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40363770","duration":360,"bikeId":"6675","endDate":1420452060,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1420451700,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40363808","duration":420,"bikeId":"12187","endDate":1420452360,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420451940,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40363851","duration":540,"bikeId":"8048","endDate":1420452720,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1420452180,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40363987","duration":180,"bikeId":"6283","endDate":1420453080,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1420452900,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40364045","duration":300,"bikeId":"7865","endDate":1420453500,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1420453200,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40364107","duration":300,"bikeId":"1513","endDate":1420453860,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1420453560,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40364214","duration":120,"bikeId":"7521","endDate":1420454340,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1420454220,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"40364108","duration":1200,"bikeId":"8276","endDate":1420454760,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1420453560,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40364194","duration":960,"bikeId":"1320","endDate":1420455120,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1420454160,"startStationId":"59","startStationName":"Rodney Street, Angel"}, +{"_id":"40364392","duration":120,"bikeId":"481","endDate":1420455480,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1420455360,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40364381","duration":720,"bikeId":"2556","endDate":1420456020,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1420455300,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40364298","duration":1680,"bikeId":"11841","endDate":1420456380,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1420454700,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40364419","duration":1320,"bikeId":"135","endDate":1420456860,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1420455540,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40364498","duration":1380,"bikeId":"1396","endDate":1420457280,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1420455900,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40364431","duration":2100,"bikeId":"4069","endDate":1420457700,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1420455600,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40364707","duration":1080,"bikeId":"9875","endDate":1420458240,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1420457160,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40364926","duration":180,"bikeId":"4934","endDate":1420458660,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1420458480,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40364883","duration":780,"bikeId":"5131","endDate":1420459020,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1420458240,"startStationId":"8","startStationName":"Lodge Road, St. John's Wood"}, +{"_id":"40365012","duration":420,"bikeId":"3922","endDate":1420459320,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1420458900,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"40364729","duration":2280,"bikeId":"7333","endDate":1420459620,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1420457340,"startStationId":"151","startStationName":"Chepstow Villas, Notting Hill"}, +{"_id":"40365146","duration":360,"bikeId":"4661","endDate":1420459980,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1420459620,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40365261","duration":240,"bikeId":"5147","endDate":1420460340,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1420460100,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40365309","duration":300,"bikeId":"138","endDate":1420460640,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1420460340,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"40365369","duration":360,"bikeId":"2188","endDate":1420460940,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1420460580,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40365437","duration":480,"bikeId":"450","endDate":1420461360,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1420460880,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40365267","duration":1500,"bikeId":"11466","endDate":1420461600,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1420460100,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"40365531","duration":600,"bikeId":"8502","endDate":1420461900,"endStationId":"693","endStationName":"Felsham Road, Putney","startDate":1420461300,"startStationId":"629","startStationName":"Morie Street, Wandsworth"}, +{"_id":"40365346","duration":1680,"bikeId":"996","endDate":1420462200,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1420460520,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40365624","duration":840,"bikeId":"10277","endDate":1420462560,"endStationId":"496","endStationName":"Devons Road, Bow","startDate":1420461720,"startStationId":"487","startStationName":"Canton Street, Poplar"}, +{"_id":"40365583","duration":1380,"bikeId":"9635","endDate":1420462860,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1420461480,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"40365492","duration":1920,"bikeId":"6898","endDate":1420463100,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1420461180,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40365903","duration":420,"bikeId":"7438","endDate":1420463340,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420462920,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40365900","duration":780,"bikeId":"3647","endDate":1420463640,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1420462860,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40365901","duration":900,"bikeId":"5847","endDate":1420463820,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1420462920,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40365915","duration":1200,"bikeId":"8409","endDate":1420464120,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420462920,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40365543","duration":3000,"bikeId":"11401","endDate":1420464300,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1420461300,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40366337","duration":180,"bikeId":"8224","endDate":1420464660,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1420464480,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40366334","duration":420,"bikeId":"7913","endDate":1420464900,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1420464480,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40366302","duration":840,"bikeId":"6047","endDate":1420465140,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1420464300,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40366454","duration":480,"bikeId":"10079","endDate":1420465440,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1420464960,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40366617","duration":120,"bikeId":"8793","endDate":1420465740,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1420465620,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40366482","duration":960,"bikeId":"8904","endDate":1420466040,"endStationId":"712","endStationName":"Mile End Stadium, Mile End","startDate":1420465080,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40366714","duration":360,"bikeId":"10654","endDate":1420466280,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1420465920,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40366532","duration":1200,"bikeId":"8576","endDate":1420466520,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1420465320,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"40366104","duration":3240,"bikeId":"3161","endDate":1420466820,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1420463580,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40366488","duration":2040,"bikeId":"10379","endDate":1420467180,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1420465140,"startStationId":"690","startStationName":"Stanley Grove, Battersea"}, +{"_id":"40366943","duration":480,"bikeId":"12843","endDate":1420467540,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1420467060,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40367033","duration":480,"bikeId":"6317","endDate":1420467900,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1420467420,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"40367000","duration":900,"bikeId":"12723","endDate":1420468200,"endStationId":"174","endStationName":"Strand, Strand","startDate":1420467300,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40366531","duration":3240,"bikeId":"1405","endDate":1420468560,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1420465320,"startStationId":"686","startStationName":"Beryl Road, Hammersmith"}, +{"_id":"40367128","duration":960,"bikeId":"12517","endDate":1420468920,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1420467960,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40367280","duration":600,"bikeId":"9361","endDate":1420469220,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1420468620,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40366775","duration":3420,"bikeId":"186","endDate":1420469520,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1420466100,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40367133","duration":1800,"bikeId":"9462","endDate":1420469820,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1420468020,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"40367546","duration":240,"bikeId":"6820","endDate":1420470180,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1420469940,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40367507","duration":780,"bikeId":"11396","endDate":1420470540,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1420469760,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40366767","duration":4920,"bikeId":"1688","endDate":1420471020,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1420466100,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40367761","duration":420,"bikeId":"2881","endDate":1420471320,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1420470900,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"40367923","duration":60,"bikeId":"3901","endDate":1420471620,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1420471560,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40367832","duration":780,"bikeId":"3496","endDate":1420471980,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420471200,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40367895","duration":840,"bikeId":"8155","endDate":1420472280,"endStationId":"143","endStationName":"Pont Street, Knightsbridge","startDate":1420471440,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"40367990","duration":660,"bikeId":"8042","endDate":1420472520,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1420471860,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40368175","duration":240,"bikeId":"6620","endDate":1420472820,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1420472580,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40368195","duration":360,"bikeId":"8683","endDate":1420473060,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420472700,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40368016","duration":1380,"bikeId":"4746","endDate":1420473360,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1420471980,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"40368143","duration":1140,"bikeId":"414","endDate":1420473600,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1420472460,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40368126","duration":1500,"bikeId":"4754","endDate":1420473900,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1420472400,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"40368454","duration":480,"bikeId":"8463","endDate":1420474140,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1420473660,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40368093","duration":2040,"bikeId":"7983","endDate":1420474320,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1420472280,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40368483","duration":780,"bikeId":"11426","endDate":1420474560,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1420473780,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40368674","duration":360,"bikeId":"8866","endDate":1420474740,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1420474380,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"40368741","duration":420,"bikeId":"8297","endDate":1420475040,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1420474620,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"40367393","duration":6060,"bikeId":"10813","endDate":1420475220,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1420469160,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40368675","duration":1140,"bikeId":"6138","endDate":1420475520,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1420474380,"startStationId":"209","startStationName":"Denyer Street, Knightsbridge"}, +{"_id":"40368937","duration":420,"bikeId":"85","endDate":1420475640,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420475220,"startStationId":"117","startStationName":"Lollard Street, Vauxhall"}, +{"_id":"40369023","duration":360,"bikeId":"11350","endDate":1420475880,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420475520,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40369142","duration":240,"bikeId":"8073","endDate":1420476060,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1420475820,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40368777","duration":1500,"bikeId":"11119","endDate":1420476240,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1420474740,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40369222","duration":360,"bikeId":"10971","endDate":1420476360,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1420476000,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"40369051","duration":960,"bikeId":"9891","endDate":1420476540,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420475580,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"40368780","duration":1980,"bikeId":"10700","endDate":1420476720,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1420474740,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40369277","duration":780,"bikeId":"3317","endDate":1420476900,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1420476120,"startStationId":"317","startStationName":"Dickens Square, Borough"}, +{"_id":"40369129","duration":1260,"bikeId":"3258","endDate":1420477080,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1420475820,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40369483","duration":540,"bikeId":"5036","endDate":1420477260,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1420476720,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40367171","duration":9240,"bikeId":"10527","endDate":1420477380,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1420468140,"startStationId":"487","startStationName":"Canton Street, Poplar"}, +{"_id":"40369476","duration":840,"bikeId":"1938","endDate":1420477560,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420476720,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40369557","duration":720,"bikeId":"5461","endDate":1420477680,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1420476960,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"40369762","duration":480,"bikeId":"4258","endDate":1420477860,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420477380,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40369883","duration":420,"bikeId":"2154","endDate":1420477980,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1420477560,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40369691","duration":900,"bikeId":"9586","endDate":1420478100,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420477200,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40370178","duration":240,"bikeId":"6730","endDate":1420478220,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1420477980,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40369673","duration":1140,"bikeId":"1064","endDate":1420478340,"endStationId":"454","endStationName":"Napier Avenue, Millwall","startDate":1420477200,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40370293","duration":300,"bikeId":"6888","endDate":1420478400,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1420478100,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40369786","duration":1140,"bikeId":"10539","endDate":1420478520,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420477380,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40370402","duration":360,"bikeId":"7351","endDate":1420478640,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420478280,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40369471","duration":1980,"bikeId":"5875","endDate":1420478700,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1420476720,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"40370003","duration":1080,"bikeId":"10786","endDate":1420478820,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1420477740,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40370460","duration":540,"bikeId":"7055","endDate":1420478940,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1420478400,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40370619","duration":480,"bikeId":"9122","endDate":1420479060,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1420478580,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40370721","duration":360,"bikeId":"6270","endDate":1420479120,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1420478760,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40370401","duration":960,"bikeId":"12788","endDate":1420479240,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1420478280,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40370753","duration":540,"bikeId":"7552","endDate":1420479360,"endStationId":"423","endStationName":"Eaton Square (South), Belgravia","startDate":1420478820,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"40371058","duration":240,"bikeId":"9815","endDate":1420479420,"endStationId":"317","endStationName":"Dickens Square, Borough","startDate":1420479180,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40370375","duration":1260,"bikeId":"11694","endDate":1420479480,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1420478220,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40370799","duration":720,"bikeId":"1712","endDate":1420479600,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1420478880,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40370843","duration":720,"bikeId":"10103","endDate":1420479660,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1420478940,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40371109","duration":540,"bikeId":"8655","endDate":1420479780,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1420479240,"startStationId":"276","startStationName":"Lower Thames Street, Monument"}, +{"_id":"40371393","duration":300,"bikeId":"9798","endDate":1420479840,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1420479540,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40371079","duration":660,"bikeId":"2182","endDate":1420479900,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1420479240,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40371047","duration":840,"bikeId":"12684","endDate":1420480020,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420479180,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40370922","duration":1020,"bikeId":"3646","endDate":1420480080,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1420479060,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40371150","duration":840,"bikeId":"6237","endDate":1420480140,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420479300,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40371460","duration":600,"bikeId":"4468","endDate":1420480200,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1420479600,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40371231","duration":900,"bikeId":"647","endDate":1420480260,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1420479360,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40371792","duration":420,"bikeId":"3851","endDate":1420480320,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1420479900,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40371845","duration":480,"bikeId":"9149","endDate":1420480440,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1420479960,"startStationId":"673","startStationName":"Hibbert Street, Battersea"}, +{"_id":"40371731","duration":660,"bikeId":"9257","endDate":1420480500,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1420479840,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40372165","duration":240,"bikeId":"3874","endDate":1420480560,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1420480320,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40372286","duration":180,"bikeId":"11913","endDate":1420480620,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1420480440,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40372173","duration":360,"bikeId":"9026","endDate":1420480680,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1420480320,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40372230","duration":360,"bikeId":"12188","endDate":1420480740,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1420480380,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40372319","duration":300,"bikeId":"12849","endDate":1420480800,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1420480500,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40371204","duration":1500,"bikeId":"7945","endDate":1420480860,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1420479360,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40371608","duration":1260,"bikeId":"7667","endDate":1420480980,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1420479720,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"40372548","duration":240,"bikeId":"4337","endDate":1420481040,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1420480800,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"40372628","duration":180,"bikeId":"2640","endDate":1420481100,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1420480920,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40372268","duration":720,"bikeId":"67","endDate":1420481160,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1420480440,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"40371595","duration":1500,"bikeId":"7162","endDate":1420481220,"endStationId":"776","endStationName":"Abyssinia Close, Clapham Junction","startDate":1420479720,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40371841","duration":1380,"bikeId":"5574","endDate":1420481340,"endStationId":"86","endStationName":"Sancroft Street, Vauxhall","startDate":1420479960,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40372072","duration":1200,"bikeId":"5521","endDate":1420481400,"endStationId":"410","endStationName":"Edgware Road Station, Paddington","startDate":1420480200,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40372723","duration":480,"bikeId":"5495","endDate":1420481520,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1420481040,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40372027","duration":1440,"bikeId":"10659","endDate":1420481580,"endStationId":"76","endStationName":"Longford Street, Regent's Park","startDate":1420480140,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"40372382","duration":1080,"bikeId":"8959","endDate":1420481640,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420480560,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40372609","duration":840,"bikeId":"1950","endDate":1420481700,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1420480860,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"40373055","duration":420,"bikeId":"8281","endDate":1420481820,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1420481400,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40371754","duration":1980,"bikeId":"6189","endDate":1420481880,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1420479900,"startStationId":"591","startStationName":"Westfield Library Corner, Shepherd's Bush"}, +{"_id":"40372455","duration":1320,"bikeId":"6654","endDate":1420482000,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420480680,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"40373121","duration":600,"bikeId":"5052","endDate":1420482060,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1420481460,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40373546","duration":180,"bikeId":"5734","endDate":1420482180,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1420482000,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40373554","duration":240,"bikeId":"12021","endDate":1420482240,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1420482000,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40373138","duration":780,"bikeId":"1700","endDate":1420482300,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420481520,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40373603","duration":360,"bikeId":"6101","endDate":1420482420,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1420482060,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"40373292","duration":840,"bikeId":"6513","endDate":1420482480,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1420481640,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40373427","duration":720,"bikeId":"7945","endDate":1420482540,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1420481820,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40373449","duration":780,"bikeId":"9113","endDate":1420482660,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1420481880,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40373201","duration":1140,"bikeId":"56","endDate":1420482720,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1420481580,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40373967","duration":300,"bikeId":"3563","endDate":1420482840,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1420482540,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40373589","duration":900,"bikeId":"5636","endDate":1420482900,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1420482000,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40373960","duration":480,"bikeId":"8324","endDate":1420483020,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420482540,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40373862","duration":780,"bikeId":"3794","endDate":1420483140,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1420482360,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40374147","duration":360,"bikeId":"11423","endDate":1420483200,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1420482840,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40373933","duration":780,"bikeId":"3195","endDate":1420483320,"endStationId":"464","endStationName":"St. Mary and St. Michael Church, Stepney","startDate":1420482540,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40373357","duration":1620,"bikeId":"8718","endDate":1420483380,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1420481760,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40373773","duration":1200,"bikeId":"9240","endDate":1420483500,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1420482300,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40374048","duration":840,"bikeId":"184","endDate":1420483560,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1420482720,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40374200","duration":720,"bikeId":"5290","endDate":1420483680,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1420482960,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40374534","duration":300,"bikeId":"11136","endDate":1420483800,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1420483500,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40373806","duration":1560,"bikeId":"10598","endDate":1420483860,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1420482300,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40374186","duration":1080,"bikeId":"10373","endDate":1420483980,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1420482900,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40374707","duration":300,"bikeId":"261","endDate":1420484100,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1420483800,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40374327","duration":1080,"bikeId":"12231","endDate":1420484220,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1420483140,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40374553","duration":840,"bikeId":"12271","endDate":1420484340,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1420483500,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40374587","duration":840,"bikeId":"12774","endDate":1420484400,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1420483560,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40374968","duration":300,"bikeId":"10061","endDate":1420484580,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1420484280,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40374748","duration":840,"bikeId":"2355","endDate":1420484700,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1420483860,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40374684","duration":1020,"bikeId":"617","endDate":1420484820,"endStationId":"590","endStationName":"Greenberry Street, St.John's Wood","startDate":1420483800,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40374637","duration":1260,"bikeId":"9046","endDate":1420484940,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1420483680,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40374824","duration":1020,"bikeId":"6572","endDate":1420485060,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1420484040,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40375098","duration":660,"bikeId":"10758","endDate":1420485180,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1420484520,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40375093","duration":840,"bikeId":"3641","endDate":1420485360,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1420484520,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40374651","duration":1740,"bikeId":"10022","endDate":1420485480,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1420483740,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40375430","duration":420,"bikeId":"4515","endDate":1420485660,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1420485240,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"40375381","duration":660,"bikeId":"9129","endDate":1420485780,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1420485120,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40375358","duration":900,"bikeId":"3543","endDate":1420485960,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1420485060,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40375639","duration":360,"bikeId":"9779","endDate":1420486080,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1420485720,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40375630","duration":480,"bikeId":"5688","endDate":1420486200,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1420485720,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40375495","duration":960,"bikeId":"3691","endDate":1420486380,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1420485420,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40375684","duration":720,"bikeId":"5784","endDate":1420486560,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1420485840,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40375759","duration":720,"bikeId":"2911","endDate":1420486740,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420486020,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40375885","duration":540,"bikeId":"3326","endDate":1420486860,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1420486320,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40375994","duration":360,"bikeId":"11949","endDate":1420487040,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1420486680,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"40375887","duration":900,"bikeId":"9493","endDate":1420487220,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1420486320,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40375917","duration":960,"bikeId":"12295","endDate":1420487400,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1420486440,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40376019","duration":900,"bikeId":"6457","endDate":1420487580,"endStationId":"468","endStationName":"Cantrell Road, Bow","startDate":1420486680,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40376128","duration":720,"bikeId":"11047","endDate":1420487820,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1420487100,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40376321","duration":240,"bikeId":"446","endDate":1420488000,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1420487760,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"40376238","duration":780,"bikeId":"8328","endDate":1420488240,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1420487460,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"40376408","duration":420,"bikeId":"7383","endDate":1420488540,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1420488120,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40376515","duration":240,"bikeId":"4875","endDate":1420488840,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1420488600,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40376345","duration":1200,"bikeId":"9500","endDate":1420489080,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1420487880,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40376550","duration":600,"bikeId":"8950","endDate":1420489380,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1420488780,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"40376683","duration":300,"bikeId":"7706","endDate":1420489680,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1420489380,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40376674","duration":600,"bikeId":"3494","endDate":1420489920,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1420489320,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40376813","duration":300,"bikeId":"11270","endDate":1420490280,"endStationId":"515","endStationName":"Russell Gardens, Holland Park","startDate":1420489980,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40376776","duration":840,"bikeId":"11729","endDate":1420490640,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1420489800,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"40376851","duration":780,"bikeId":"9908","endDate":1420490940,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1420490160,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40377001","duration":420,"bikeId":"2458","endDate":1420491360,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1420490940,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40377049","duration":480,"bikeId":"2035","endDate":1420491720,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1420491240,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40377144","duration":300,"bikeId":"4752","endDate":1420492140,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1420491840,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"40377062","duration":1140,"bikeId":"4703","endDate":1420492500,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1420491360,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"40377285","duration":240,"bikeId":"5147","endDate":1420493100,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1420492860,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40377163","duration":1500,"bikeId":"11033","endDate":1420493520,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1420492020,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40377351","duration":720,"bikeId":"11028","endDate":1420494120,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420493400,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40376729","duration":5160,"bikeId":"6064","endDate":1420494720,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1420489560,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40377458","duration":1140,"bikeId":"8243","endDate":1420495440,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1420494300,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40377522","duration":1200,"bikeId":"6018","endDate":1420496160,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1420494960,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40377664","duration":420,"bikeId":"6962","endDate":1420496880,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1420496460,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"40377694","duration":660,"bikeId":"10255","endDate":1420497360,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1420496700,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40377818","duration":240,"bikeId":"2963","endDate":1420498140,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1420497900,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40377811","duration":960,"bikeId":"6459","endDate":1420498860,"endStationId":"684","endStationName":"Neville Gill Close, Wandsworth","startDate":1420497900,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"40377855","duration":1080,"bikeId":"2472","endDate":1420499520,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1420498440,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40377990","duration":300,"bikeId":"13068","endDate":1420500420,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1420500120,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40378006","duration":1020,"bikeId":"3371","endDate":1420501500,"endStationId":"763","endStationName":"Mile End Park Leisure Centre, Mile End","startDate":1420500480,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40378046","duration":1560,"bikeId":"8415","endDate":1420503000,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1420501440,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40378151","duration":720,"bikeId":"11362","endDate":1420505640,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1420504920,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"40378221","duration":300,"bikeId":"11371","endDate":1420508040,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1420507740,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40378289","duration":0,"bikeId":"6392","endDate":1420512960,"endStationId":"689","endStationName":"Spanish Road, Wandsworth","startDate":1420512960,"startStationId":"689","startStationName":"Spanish Road, Wandsworth"}, +{"_id":"40378343","duration":1260,"bikeId":"13078","endDate":1420520940,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1420519680,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40378416","duration":600,"bikeId":"2541","endDate":1420524240,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1420523640,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"40378486","duration":720,"bikeId":"11277","endDate":1420525500,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1420524780,"startStationId":"297","startStationName":"Geraldine Street, Elephant & Castle"}, +{"_id":"40378563","duration":600,"bikeId":"4901","endDate":1420526040,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1420525440,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40378592","duration":900,"bikeId":"5180","endDate":1420526520,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1420525620,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40378796","duration":180,"bikeId":"1090","endDate":1420526940,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1420526760,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40378597","duration":1560,"bikeId":"10854","endDate":1420527240,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1420525680,"startStationId":"629","startStationName":"Morie Street, Wandsworth"}, +{"_id":"40378910","duration":180,"bikeId":"6424","endDate":1420527540,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1420527360,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"40378869","duration":720,"bikeId":"12985","endDate":1420527900,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1420527180,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40378883","duration":960,"bikeId":"415","endDate":1420528200,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1420527240,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40378974","duration":900,"bikeId":"7232","endDate":1420528440,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1420527540,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40379176","duration":480,"bikeId":"8025","endDate":1420528680,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1420528200,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"40379171","duration":720,"bikeId":"3629","endDate":1420528920,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1420528200,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40379312","duration":480,"bikeId":"2808","endDate":1420529100,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1420528620,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40379428","duration":420,"bikeId":"11735","endDate":1420529280,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1420528860,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"40379048","duration":1620,"bikeId":"8930","endDate":1420529460,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1420527840,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40379274","duration":1140,"bikeId":"9458","endDate":1420529640,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1420528500,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40379603","duration":480,"bikeId":"9538","endDate":1420529820,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1420529340,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"40379407","duration":1080,"bikeId":"13038","endDate":1420529940,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1420528860,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"40379730","duration":540,"bikeId":"10292","endDate":1420530120,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1420529580,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40379941","duration":300,"bikeId":"465","endDate":1420530240,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1420529940,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"40379815","duration":660,"bikeId":"12905","endDate":1420530360,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1420529700,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40380193","duration":180,"bikeId":"5743","endDate":1420530480,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1420530300,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"40379397","duration":1740,"bikeId":"2399","endDate":1420530600,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1420528860,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40379344","duration":1980,"bikeId":"9730","endDate":1420530660,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1420528680,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40380166","duration":540,"bikeId":"8324","endDate":1420530780,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1420530240,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40380039","duration":840,"bikeId":"12469","endDate":1420530900,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1420530060,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40380250","duration":600,"bikeId":"1296","endDate":1420530960,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1420530360,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40380377","duration":480,"bikeId":"9724","endDate":1420531080,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1420530600,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40380472","duration":480,"bikeId":"9165","endDate":1420531200,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1420530720,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40380706","duration":180,"bikeId":"7594","endDate":1420531260,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1420531080,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40380371","duration":780,"bikeId":"10521","endDate":1420531380,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1420530600,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40380542","duration":660,"bikeId":"11109","endDate":1420531500,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420530840,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40380649","duration":600,"bikeId":"9316","endDate":1420531620,"endStationId":"592","endStationName":"Bishop's Bridge Road East, Bayswater","startDate":1420531020,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"40380405","duration":1020,"bikeId":"6416","endDate":1420531680,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1420530660,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40379999","duration":1800,"bikeId":"8387","endDate":1420531800,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1420530000,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40380477","duration":1200,"bikeId":"7733","endDate":1420531920,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1420530720,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40381413","duration":60,"bikeId":"3714","endDate":1420532040,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1420531980,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40381071","duration":540,"bikeId":"12471","endDate":1420532100,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1420531560,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40380933","duration":780,"bikeId":"8222","endDate":1420532160,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1420531380,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40381336","duration":420,"bikeId":"11332","endDate":1420532280,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1420531860,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40381134","duration":780,"bikeId":"5609","endDate":1420532400,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1420531620,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"40380843","duration":1200,"bikeId":"12724","endDate":1420532460,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1420531260,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40381384","duration":600,"bikeId":"5906","endDate":1420532520,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420531920,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40381166","duration":960,"bikeId":"9823","endDate":1420532640,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1420531680,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"40381419","duration":720,"bikeId":"7684","endDate":1420532700,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1420531980,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40381908","duration":300,"bikeId":"9119","endDate":1420532820,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1420532520,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40381482","duration":840,"bikeId":"2367","endDate":1420532880,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1420532040,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40381720","duration":720,"bikeId":"945","endDate":1420533000,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1420532280,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40381688","duration":780,"bikeId":"7599","endDate":1420533060,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1420532280,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40382296","duration":240,"bikeId":"4477","endDate":1420533120,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1420532880,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"40381696","duration":900,"bikeId":"3927","endDate":1420533180,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1420532280,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40381488","duration":1200,"bikeId":"12506","endDate":1420533240,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1420532040,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40382012","duration":660,"bikeId":"5987","endDate":1420533300,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1420532640,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"40382250","duration":600,"bikeId":"7884","endDate":1420533420,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1420532820,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40381906","duration":960,"bikeId":"10482","endDate":1420533480,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1420532520,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40382302","duration":660,"bikeId":"7189","endDate":1420533540,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1420532880,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40382464","duration":540,"bikeId":"2123","endDate":1420533600,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1420533060,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40382840","duration":300,"bikeId":"11850","endDate":1420533660,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1420533360,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40382696","duration":480,"bikeId":"7536","endDate":1420533720,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1420533240,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40382844","duration":420,"bikeId":"9404","endDate":1420533780,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1420533360,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40383302","duration":120,"bikeId":"12156","endDate":1420533840,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1420533720,"startStationId":"550","startStationName":"Harford Street, Mile End"}, +{"_id":"40383300","duration":180,"bikeId":"6430","endDate":1420533900,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1420533720,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40381867","duration":1500,"bikeId":"10956","endDate":1420533960,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1420532460,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40383352","duration":300,"bikeId":"8227","endDate":1420534020,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1420533720,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40383127","duration":540,"bikeId":"10985","endDate":1420534080,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1420533540,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40382765","duration":840,"bikeId":"2434","endDate":1420534140,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1420533300,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"40381965","duration":1620,"bikeId":"1538","endDate":1420534200,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1420532580,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40382661","duration":1020,"bikeId":"4732","endDate":1420534200,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1420533180,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40382841","duration":900,"bikeId":"11560","endDate":1420534260,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420533360,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40382743","duration":1080,"bikeId":"2666","endDate":1420534320,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1420533240,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40383416","duration":600,"bikeId":"3844","endDate":1420534380,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1420533780,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40381823","duration":2040,"bikeId":"4266","endDate":1420534440,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1420532400,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40383865","duration":360,"bikeId":"9307","endDate":1420534500,"endStationId":"688","endStationName":"Northfields, Wandsworth","startDate":1420534140,"startStationId":"629","startStationName":"Morie Street, Wandsworth"}, +{"_id":"40382651","duration":1320,"bikeId":"10952","endDate":1420534500,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1420533180,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40383282","duration":900,"bikeId":"9818","endDate":1420534560,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1420533660,"startStationId":"560","startStationName":"Ladbroke Grove Central, Notting Hill"}, +{"_id":"40384049","duration":300,"bikeId":"7113","endDate":1420534620,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1420534320,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40382562","duration":1560,"bikeId":"1655","endDate":1420534680,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1420533120,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40383404","duration":960,"bikeId":"1890","endDate":1420534740,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1420533780,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40382819","duration":1440,"bikeId":"956","endDate":1420534740,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1420533300,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"40384025","duration":480,"bikeId":"8818","endDate":1420534800,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1420534320,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40384266","duration":300,"bikeId":"12573","endDate":1420534860,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1420534560,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40383739","duration":840,"bikeId":"687","endDate":1420534920,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1420534080,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40383970","duration":720,"bikeId":"10345","endDate":1420534980,"endStationId":"598","endStationName":"Southerton Road, Hammersmith","startDate":1420534260,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"40384211","duration":540,"bikeId":"12978","endDate":1420535040,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420534500,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40384322","duration":480,"bikeId":"1512","endDate":1420535100,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1420534620,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"40384359","duration":540,"bikeId":"13033","endDate":1420535160,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420534620,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40384367","duration":660,"bikeId":"11316","endDate":1420535280,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1420534620,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40384578","duration":480,"bikeId":"7068","endDate":1420535340,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1420534860,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40384184","duration":960,"bikeId":"1688","endDate":1420535400,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1420534440,"startStationId":"161","startStationName":"Guildhouse Street, Victoria"}, +{"_id":"40383479","duration":1620,"bikeId":"2628","endDate":1420535460,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1420533840,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40384082","duration":1140,"bikeId":"10425","endDate":1420535520,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1420534380,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40383989","duration":1320,"bikeId":"12187","endDate":1420535580,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1420534260,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"40385018","duration":240,"bikeId":"3193","endDate":1420535700,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1420535460,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40384209","duration":1260,"bikeId":"12004","endDate":1420535760,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1420534500,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"40384603","duration":960,"bikeId":"12153","endDate":1420535880,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1420534920,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40384662","duration":960,"bikeId":"3944","endDate":1420535940,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1420534980,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40384988","duration":660,"bikeId":"9834","endDate":1420536060,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1420535400,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40384352","duration":1500,"bikeId":"8746","endDate":1420536120,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1420534620,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"40384893","duration":960,"bikeId":"8276","endDate":1420536240,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1420535280,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40385047","duration":840,"bikeId":"7126","endDate":1420536300,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420535460,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40385353","duration":420,"bikeId":"3760","endDate":1420536420,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1420536000,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40385039","duration":1020,"bikeId":"11724","endDate":1420536480,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1420535460,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"40385300","duration":840,"bikeId":"1476","endDate":1420536660,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1420535820,"startStationId":"441","startStationName":"Sail Street, Vauxhall"}, +{"_id":"40385347","duration":840,"bikeId":"3049","endDate":1420536780,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1420535940,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40385637","duration":300,"bikeId":"3186","endDate":1420536900,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1420536600,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40385577","duration":600,"bikeId":"12930","endDate":1420537020,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1420536420,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40385125","duration":1620,"bikeId":"1502","endDate":1420537200,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1420535580,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40385625","duration":840,"bikeId":"12222","endDate":1420537380,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1420536540,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40385874","duration":240,"bikeId":"3589","endDate":1420537560,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1420537320,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40385746","duration":840,"bikeId":"8243","endDate":1420537740,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1420536900,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40385732","duration":1080,"bikeId":"3352","endDate":1420537980,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1420536900,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40385974","duration":540,"bikeId":"6877","endDate":1420538160,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1420537620,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40385997","duration":600,"bikeId":"6069","endDate":1420538340,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1420537740,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40385945","duration":1020,"bikeId":"1630","endDate":1420538580,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1420537560,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"40386175","duration":360,"bikeId":"9983","endDate":1420538760,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1420538400,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40386203","duration":600,"bikeId":"7728","endDate":1420539120,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1420538520,"startStationId":"590","startStationName":"Greenberry Street, St.John's Wood"}, +{"_id":"40386371","duration":0,"bikeId":"609","endDate":1420539420,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1420539420,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40386378","duration":420,"bikeId":"10066","endDate":1420539840,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1420539420,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40386150","duration":1920,"bikeId":"589","endDate":1420540200,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1420538280,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"40386426","duration":900,"bikeId":"189","endDate":1420540620,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1420539720,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40386597","duration":360,"bikeId":"2880","endDate":1420541040,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1420540680,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40386603","duration":840,"bikeId":"1920","endDate":1420541520,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1420540680,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40386610","duration":1080,"bikeId":"9121","endDate":1420541760,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1420540680,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"40386588","duration":1500,"bikeId":"7580","endDate":1420542120,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1420540620,"startStationId":"591","startStationName":"Westfield Library Corner, Shepherd's Bush"}, +{"_id":"40386828","duration":780,"bikeId":"9300","endDate":1420542600,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1420541820,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40386918","duration":600,"bikeId":"1654","endDate":1420543020,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1420542420,"startStationId":"673","startStationName":"Hibbert Street, Battersea"}, +{"_id":"40386983","duration":600,"bikeId":"686","endDate":1420543440,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1420542840,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"40386869","duration":1740,"bikeId":"3629","endDate":1420543860,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1420542120,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40386948","duration":1620,"bikeId":"12838","endDate":1420544280,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1420542660,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"40386949","duration":2100,"bikeId":"11433","endDate":1420544760,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1420542660,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40387144","duration":1320,"bikeId":"2309","endDate":1420545120,"endStationId":"571","endStationName":"Westfield Southern Terrace ,Shepherd's Bush","startDate":1420543800,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40387397","duration":180,"bikeId":"8360","endDate":1420545480,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1420545300,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40387396","duration":540,"bikeId":"12397","endDate":1420545840,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1420545300,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"40387440","duration":660,"bikeId":"10214","endDate":1420546200,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1420545540,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"40387580","duration":240,"bikeId":"1843","endDate":1420546560,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1420546320,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"40387591","duration":480,"bikeId":"12127","endDate":1420546920,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1420546440,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"40387703","duration":60,"bikeId":"9344","endDate":1420547460,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1420547400,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"40387750","duration":240,"bikeId":"9431","endDate":1420548000,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1420547760,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"40387747","duration":960,"bikeId":"3928","endDate":1420548660,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1420547700,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40387855","duration":300,"bikeId":"7983","endDate":1420549380,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1420549080,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40387917","duration":240,"bikeId":"4605","endDate":1420550160,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1420549920,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40386779","duration":9240,"bikeId":"2428","endDate":1420550820,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420541580,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40388095","duration":120,"bikeId":"12420","endDate":1420551480,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1420551360,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40388155","duration":240,"bikeId":"7306","endDate":1420552020,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1420551780,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"40388110","duration":960,"bikeId":"5465","endDate":1420552380,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1420551420,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40388247","duration":540,"bikeId":"3673","endDate":1420552920,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1420552380,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40388305","duration":660,"bikeId":"1411","endDate":1420553400,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1420552740,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40388364","duration":600,"bikeId":"9041","endDate":1420553760,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1420553160,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40388513","duration":120,"bikeId":"707","endDate":1420554240,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1420554120,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40388509","duration":540,"bikeId":"7682","endDate":1420554600,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1420554060,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40388522","duration":900,"bikeId":"10835","endDate":1420555080,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1420554180,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40388582","duration":960,"bikeId":"12637","endDate":1420555500,"endStationId":"442","endStationName":"Walmer Road, Notting Hill","startDate":1420554540,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40388645","duration":1080,"bikeId":"8083","endDate":1420555920,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1420554840,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40388681","duration":1260,"bikeId":"9861","endDate":1420556280,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1420555020,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40388782","duration":1020,"bikeId":"10255","endDate":1420556640,"endStationId":"683","endStationName":"Dorothy Road, Clapham Junction","startDate":1420555620,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"40388902","duration":720,"bikeId":"1143","endDate":1420557000,"endStationId":"774","endStationName":"Hurlingham Park, Parsons Green","startDate":1420556280,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"40389022","duration":540,"bikeId":"7078","endDate":1420557360,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1420556820,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40389023","duration":780,"bikeId":"9334","endDate":1420557660,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1420556880,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40388924","duration":1560,"bikeId":"6560","endDate":1420557960,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1420556400,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40389127","duration":960,"bikeId":"5180","endDate":1420558320,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1420557360,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"40389271","duration":720,"bikeId":"8263","endDate":1420558680,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1420557960,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"40389324","duration":660,"bikeId":"4220","endDate":1420558920,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1420558260,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40389395","duration":720,"bikeId":"3418","endDate":1420559340,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1420558620,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40389508","duration":480,"bikeId":"7220","endDate":1420559700,"endStationId":"606","endStationName":"Addison Road, Holland Park","startDate":1420559220,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"40389592","duration":480,"bikeId":"12742","endDate":1420560060,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1420559580,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40389599","duration":780,"bikeId":"11182","endDate":1420560420,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1420559640,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40389764","duration":360,"bikeId":"1295","endDate":1420560660,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1420560300,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40389615","duration":1200,"bikeId":"5924","endDate":1420560900,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1420559700,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40389572","duration":1620,"bikeId":"290","endDate":1420561080,"endStationId":"475","endStationName":"Lightermans Road, Millwall","startDate":1420559460,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40389787","duration":900,"bikeId":"9688","endDate":1420561260,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1420560360,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40389896","duration":900,"bikeId":"8525","endDate":1420561560,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1420560660,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40390132","duration":360,"bikeId":"9056","endDate":1420561740,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1420561380,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40390174","duration":360,"bikeId":"5267","endDate":1420561920,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420561560,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40389949","duration":1320,"bikeId":"3551","endDate":1420562160,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1420560840,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40390163","duration":840,"bikeId":"10396","endDate":1420562340,"endStationId":"617","endStationName":"Elysium Place, Fulham","startDate":1420561500,"startStationId":"734","startStationName":"Plough Terrace, Clapham Junction"}, +{"_id":"40390274","duration":780,"bikeId":"7175","endDate":1420562580,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1420561800,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40390454","duration":420,"bikeId":"3659","endDate":1420562760,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1420562340,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40390305","duration":1020,"bikeId":"8833","endDate":1420562940,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1420561920,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40390241","duration":1440,"bikeId":"6847","endDate":1420563120,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1420561680,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"40390771","duration":120,"bikeId":"6825","endDate":1420563360,"endStationId":"674","endStationName":"Carnegie Street, King's Cross","startDate":1420563240,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"40390432","duration":1200,"bikeId":"7526","endDate":1420563480,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420562280,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40390844","duration":240,"bikeId":"12369","endDate":1420563660,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1420563420,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40390953","duration":180,"bikeId":"1699","endDate":1420563840,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1420563660,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"40390392","duration":1860,"bikeId":"7385","endDate":1420564020,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1420562160,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40390987","duration":480,"bikeId":"8132","endDate":1420564200,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1420563720,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40391113","duration":360,"bikeId":"1155","endDate":1420564320,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1420563960,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40391400","duration":180,"bikeId":"8858","endDate":1420564500,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1420564320,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40391424","duration":180,"bikeId":"1812","endDate":1420564560,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1420564380,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"40390956","duration":1020,"bikeId":"6710","endDate":1420564680,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1420563660,"startStationId":"528","startStationName":"Clarges Street, West End"}, +{"_id":"40390948","duration":1140,"bikeId":"3086","endDate":1420564800,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1420563660,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40391009","duration":1080,"bikeId":"9263","endDate":1420564860,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1420563780,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"40391428","duration":600,"bikeId":"9431","endDate":1420564980,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1420564380,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40391319","duration":900,"bikeId":"3810","endDate":1420565100,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1420564200,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40391526","duration":660,"bikeId":"2525","endDate":1420565160,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1420564500,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40391557","duration":720,"bikeId":"8422","endDate":1420565280,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1420564560,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40391588","duration":780,"bikeId":"7041","endDate":1420565400,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1420564620,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40391585","duration":900,"bikeId":"12878","endDate":1420565520,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1420564620,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40391733","duration":720,"bikeId":"2688","endDate":1420565580,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1420564860,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40392014","duration":360,"bikeId":"5799","endDate":1420565700,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1420565340,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40391532","duration":1200,"bikeId":"11320","endDate":1420565760,"endStationId":"763","endStationName":"Mile End Park Leisure Centre, Mile End","startDate":1420564560,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"40392312","duration":180,"bikeId":"12442","endDate":1420565880,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1420565700,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40391801","duration":960,"bikeId":"3938","endDate":1420565940,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1420564980,"startStationId":"686","startStationName":"Beryl Road, Hammersmith"}, +{"_id":"40392236","duration":480,"bikeId":"5205","endDate":1420566060,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1420565580,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40392292","duration":480,"bikeId":"602","endDate":1420566120,"endStationId":"699","endStationName":"Belford House, Haggerston","startDate":1420565640,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40392294","duration":600,"bikeId":"12290","endDate":1420566240,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1420565640,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40392303","duration":660,"bikeId":"11997","endDate":1420566300,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1420565640,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40392081","duration":1020,"bikeId":"9195","endDate":1420566420,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420565400,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40392634","duration":480,"bikeId":"6057","endDate":1420566480,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1420566000,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40392486","duration":720,"bikeId":"6103","endDate":1420566540,"endStationId":"441","endStationName":"Sail Street, Vauxhall","startDate":1420565820,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40393107","duration":180,"bikeId":"5844","endDate":1420566660,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1420566480,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40391985","duration":1440,"bikeId":"2235","endDate":1420566720,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1420565280,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40392424","duration":1020,"bikeId":"8208","endDate":1420566780,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420565760,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40393061","duration":420,"bikeId":"781","endDate":1420566900,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1420566480,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40393001","duration":540,"bikeId":"5438","endDate":1420566960,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420566420,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40393235","duration":360,"bikeId":"5137","endDate":1420567020,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1420566660,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"40392660","duration":1080,"bikeId":"8930","endDate":1420567080,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1420566000,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40393326","duration":480,"bikeId":"10925","endDate":1420567200,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1420566720,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40392357","duration":1560,"bikeId":"7024","endDate":1420567260,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1420565700,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"40392722","duration":1260,"bikeId":"11923","endDate":1420567320,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1420566060,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40393148","duration":840,"bikeId":"6684","endDate":1420567380,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1420566540,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40393551","duration":420,"bikeId":"9005","endDate":1420567440,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1420567020,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40392476","duration":1740,"bikeId":"5008","endDate":1420567560,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1420565820,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40393594","duration":540,"bikeId":"1816","endDate":1420567620,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1420567080,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40393950","duration":240,"bikeId":"10851","endDate":1420567680,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1420567440,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40393525","duration":840,"bikeId":"5377","endDate":1420567800,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1420566960,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40392946","duration":1560,"bikeId":"10454","endDate":1420567860,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1420566300,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40393975","duration":420,"bikeId":"4070","endDate":1420567920,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1420567500,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40393629","duration":900,"bikeId":"4191","endDate":1420568040,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1420567140,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40393896","duration":720,"bikeId":"4615","endDate":1420568100,"endStationId":"604","endStationName":"St Martin's Close, Camden Town","startDate":1420567380,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40394067","duration":600,"bikeId":"3627","endDate":1420568160,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1420567560,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40394276","duration":420,"bikeId":"2521","endDate":1420568220,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1420567800,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40394095","duration":720,"bikeId":"11791","endDate":1420568340,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1420567620,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40394238","duration":660,"bikeId":"3095","endDate":1420568400,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1420567740,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40394063","duration":960,"bikeId":"6720","endDate":1420568520,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1420567560,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"40394107","duration":960,"bikeId":"5732","endDate":1420568580,"endStationId":"291","endStationName":"Claverton Street, Pimlico","startDate":1420567620,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40394020","duration":1080,"bikeId":"3276","endDate":1420568640,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1420567560,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40393242","duration":2040,"bikeId":"10567","endDate":1420568700,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1420566660,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40394640","duration":600,"bikeId":"4627","endDate":1420568820,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1420568220,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40394852","duration":420,"bikeId":"12848","endDate":1420568880,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1420568460,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40394738","duration":600,"bikeId":"10039","endDate":1420568940,"endStationId":"111","endStationName":"Park Lane , Hyde Park","startDate":1420568340,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40394962","duration":480,"bikeId":"10614","endDate":1420569060,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1420568580,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40395106","duration":300,"bikeId":"3885","endDate":1420569120,"endStationId":"117","endStationName":"Lollard Street, Vauxhall","startDate":1420568820,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40394870","duration":660,"bikeId":"1385","endDate":1420569180,"endStationId":"669","endStationName":"Teversham Lane, Stockwell","startDate":1420568520,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40394261","duration":1440,"bikeId":"11988","endDate":1420569240,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1420567800,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40394706","duration":960,"bikeId":"10997","endDate":1420569300,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1420568340,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"40395154","duration":540,"bikeId":"7895","endDate":1420569420,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1420568880,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40395487","duration":180,"bikeId":"7226","endDate":1420569480,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1420569300,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"40395419","duration":300,"bikeId":"2025","endDate":1420569540,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1420569240,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"40395548","duration":240,"bikeId":"3034","endDate":1420569660,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1420569420,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40395396","duration":540,"bikeId":"3082","endDate":1420569720,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1420569180,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40395353","duration":660,"bikeId":"11162","endDate":1420569780,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1420569120,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40395151","duration":960,"bikeId":"5798","endDate":1420569840,"endStationId":"365","endStationName":"City Road, Angel","startDate":1420568880,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40395222","duration":1020,"bikeId":"3622","endDate":1420569960,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420568940,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40395313","duration":960,"bikeId":"5955","endDate":1420570020,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1420569060,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40395410","duration":900,"bikeId":"12322","endDate":1420570140,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1420569240,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40394681","duration":1980,"bikeId":"2445","endDate":1420570260,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1420568280,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"40395331","duration":1200,"bikeId":"1229","endDate":1420570320,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1420569120,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40395984","duration":420,"bikeId":"5293","endDate":1420570440,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1420570020,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40395612","duration":1020,"bikeId":"4356","endDate":1420570500,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1420569480,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40395937","duration":660,"bikeId":"2292","endDate":1420570620,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1420569960,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40395281","duration":1620,"bikeId":"4360","endDate":1420570680,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1420569060,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40396058","duration":660,"bikeId":"11514","endDate":1420570800,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1420570140,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40395804","duration":1140,"bikeId":"11844","endDate":1420570920,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1420569780,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"40396320","duration":540,"bikeId":"9358","endDate":1420571100,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1420570560,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"40396347","duration":600,"bikeId":"7775","endDate":1420571220,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420570620,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"40396059","duration":1200,"bikeId":"5054","endDate":1420571340,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1420570140,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40392654","duration":5400,"bikeId":"308","endDate":1420571400,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1420566000,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40395862","duration":1680,"bikeId":"3187","endDate":1420571520,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1420569840,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40396032","duration":1560,"bikeId":"8140","endDate":1420571640,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1420570080,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40396258","duration":1320,"bikeId":"5105","endDate":1420571760,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1420570440,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"40396594","duration":720,"bikeId":"5082","endDate":1420571880,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1420571160,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40396589","duration":840,"bikeId":"4004","endDate":1420572000,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1420571160,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40396456","duration":1320,"bikeId":"198","endDate":1420572180,"endStationId":"7","endStationName":"Charlbert Street, St. John's Wood","startDate":1420570860,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40396935","duration":420,"bikeId":"8417","endDate":1420572300,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1420571880,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"40397058","duration":300,"bikeId":"12629","endDate":1420572480,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1420572180,"startStationId":"156","startStationName":"New Kent Road, Borough"}, +{"_id":"40397014","duration":540,"bikeId":"10050","endDate":1420572600,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1420572060,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40397135","duration":420,"bikeId":"7793","endDate":1420572720,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1420572300,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"40397184","duration":480,"bikeId":"10736","endDate":1420572900,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1420572420,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40396938","duration":1200,"bikeId":"4786","endDate":1420573080,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1420571880,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"40397371","duration":300,"bikeId":"10425","endDate":1420573200,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1420572900,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40397294","duration":660,"bikeId":"4876","endDate":1420573320,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1420572660,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40397094","duration":1260,"bikeId":"12327","endDate":1420573500,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1420572240,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40397577","duration":180,"bikeId":"6351","endDate":1420573680,"endStationId":"559","endStationName":"Abbotsbury Road, Holland Park","startDate":1420573500,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"40397509","duration":600,"bikeId":"5284","endDate":1420573860,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1420573260,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40397669","duration":360,"bikeId":"2194","endDate":1420574040,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1420573680,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40397627","duration":660,"bikeId":"10094","endDate":1420574280,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1420573620,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"40396267","duration":4020,"bikeId":"10452","endDate":1420574460,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1420570440,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40397711","duration":840,"bikeId":"8113","endDate":1420574640,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1420573800,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40397956","duration":300,"bikeId":"5745","endDate":1420574880,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1420574580,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40398018","duration":300,"bikeId":"846","endDate":1420575120,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1420574820,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"40397967","duration":660,"bikeId":"2710","endDate":1420575300,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1420574640,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40397934","duration":1020,"bikeId":"5920","endDate":1420575540,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1420574520,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40397793","duration":1620,"bikeId":"12871","endDate":1420575720,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1420574100,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"40398114","duration":900,"bikeId":"9292","endDate":1420576020,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1420575120,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40398248","duration":480,"bikeId":"6318","endDate":1420576260,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1420575780,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40398250","duration":840,"bikeId":"1483","endDate":1420576620,"endStationId":"556","endStationName":"Heron Quays DLR, Canary Wharf","startDate":1420575780,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"40398391","duration":540,"bikeId":"1319","endDate":1420576980,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1420576440,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40397853","duration":3000,"bikeId":"9248","endDate":1420577220,"endStationId":"637","endStationName":"Spencer Park, Wandsworth Common","startDate":1420574220,"startStationId":"665","startStationName":"Smugglers Way, Wandsworth"}, +{"_id":"40398499","duration":600,"bikeId":"9575","endDate":1420577640,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1420577040,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40398541","duration":720,"bikeId":"8324","endDate":1420578000,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1420577280,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40398667","duration":300,"bikeId":"3169","endDate":1420578420,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1420578120,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"40398639","duration":900,"bikeId":"4454","endDate":1420578900,"endStationId":"468","endStationName":"Cantrell Road, Bow","startDate":1420578000,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40398815","duration":300,"bikeId":"6747","endDate":1420579320,"endStationId":"766","endStationName":"Ram Street, Wandsworth","startDate":1420579020,"startStationId":"673","startStationName":"Hibbert Street, Battersea"}, +{"_id":"40398685","duration":1440,"bikeId":"3912","endDate":1420579680,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1420578240,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40398837","duration":960,"bikeId":"10342","endDate":1420580100,"endStationId":"371","endStationName":"King Edward Walk, Waterloo","startDate":1420579140,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40399006","duration":240,"bikeId":"1167","endDate":1420580520,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1420580280,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"40398988","duration":840,"bikeId":"7432","endDate":1420581000,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1420580160,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"40399058","duration":960,"bikeId":"9032","endDate":1420581660,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1420580700,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40399098","duration":1020,"bikeId":"8887","endDate":1420582080,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1420581060,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40399201","duration":840,"bikeId":"9329","endDate":1420582680,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1420581840,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40399307","duration":600,"bikeId":"2104","endDate":1420583220,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1420582620,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40399361","duration":540,"bikeId":"5893","endDate":1420583700,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1420583160,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40399417","duration":720,"bikeId":"873","endDate":1420584480,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420583760,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"40399517","duration":240,"bikeId":"797","endDate":1420585260,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1420585020,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40399577","duration":360,"bikeId":"5512","endDate":1420586160,"endStationId":"249","endStationName":"Harper Road, Borough","startDate":1420585800,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40399553","duration":1500,"bikeId":"7089","endDate":1420586940,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1420585440,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40399692","duration":480,"bikeId":"3736","endDate":1420588080,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1420587600,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"40399718","duration":960,"bikeId":"10748","endDate":1420589160,"endStationId":"375","endStationName":"Kensington Town Hall, Kensington","startDate":1420588200,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40399816","duration":600,"bikeId":"2521","endDate":1420591440,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1420590840,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40399890","duration":600,"bikeId":"9817","endDate":1420594320,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1420593720,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"40399937","duration":1860,"bikeId":"9216","endDate":1420598520,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1420596660,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40400027","duration":420,"bikeId":"8646","endDate":1420607220,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1420606800,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40400089","duration":480,"bikeId":"9608","endDate":1420610280,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1420609800,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"40400202","duration":240,"bikeId":"1924","endDate":1420611660,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1420611420,"startStationId":"297","startStationName":"Geraldine Street, Elephant & Castle"}, +{"_id":"40400175","duration":1260,"bikeId":"12682","endDate":1420612320,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1420611060,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40400374","duration":180,"bikeId":"247","endDate":1420612800,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1420612620,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40400373","duration":540,"bikeId":"11314","endDate":1420613160,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1420612620,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40400471","duration":480,"bikeId":"7805","endDate":1420613520,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1420613040,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40400456","duration":840,"bikeId":"12602","endDate":1420613820,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420612980,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"40400390","duration":1440,"bikeId":"12764","endDate":1420614180,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420612740,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40400699","duration":360,"bikeId":"4472","endDate":1420614480,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1420614120,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40400742","duration":480,"bikeId":"7540","endDate":1420614780,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1420614300,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40400917","duration":240,"bikeId":"7267","endDate":1420615020,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1420614780,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"40400846","duration":600,"bikeId":"7908","endDate":1420615200,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420614600,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40400821","duration":900,"bikeId":"13021","endDate":1420615440,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1420614540,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"40400997","duration":600,"bikeId":"6375","endDate":1420615620,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1420615020,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40401117","duration":480,"bikeId":"12007","endDate":1420615800,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1420615320,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"40400856","duration":1320,"bikeId":"3727","endDate":1420615920,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420614600,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40401353","duration":300,"bikeId":"5294","endDate":1420616100,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1420615800,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40401417","duration":360,"bikeId":"9082","endDate":1420616280,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1420615920,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40401573","duration":300,"bikeId":"12665","endDate":1420616460,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1420616160,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40401549","duration":420,"bikeId":"8450","endDate":1420616520,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1420616100,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40401195","duration":1200,"bikeId":"9972","endDate":1420616700,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1420615500,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40401488","duration":780,"bikeId":"780","endDate":1420616820,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1420616040,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40401122","duration":1620,"bikeId":"5041","endDate":1420616940,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1420615320,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40401263","duration":1440,"bikeId":"12189","endDate":1420617060,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1420615620,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40401673","duration":840,"bikeId":"9052","endDate":1420617180,"endStationId":"172","endStationName":"Sumner Place, South Kensington","startDate":1420616340,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40401828","duration":660,"bikeId":"1501","endDate":1420617240,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1420616580,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40402060","duration":420,"bikeId":"5900","endDate":1420617360,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1420616940,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40401967","duration":720,"bikeId":"4778","endDate":1420617480,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1420616760,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40401837","duration":1020,"bikeId":"5535","endDate":1420617600,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1420616580,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"40402224","duration":480,"bikeId":"10708","endDate":1420617660,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1420617180,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40402320","duration":480,"bikeId":"11203","endDate":1420617780,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1420617300,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40401311","duration":2160,"bikeId":"61","endDate":1420617840,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1420615680,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"40402285","duration":720,"bikeId":"243","endDate":1420617960,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1420617240,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40401929","duration":1260,"bikeId":"7413","endDate":1420618020,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1420616760,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40402449","duration":660,"bikeId":"1320","endDate":1420618140,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1420617480,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40402276","duration":1020,"bikeId":"12056","endDate":1420618260,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1420617240,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40402175","duration":1200,"bikeId":"3486","endDate":1420618320,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1420617120,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40402992","duration":300,"bikeId":"12481","endDate":1420618440,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420618140,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40402985","duration":360,"bikeId":"1263","endDate":1420618500,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1420618140,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40403196","duration":240,"bikeId":"10399","endDate":1420618620,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1420618380,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40402946","duration":600,"bikeId":"1198","endDate":1420618680,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1420618080,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40403100","duration":540,"bikeId":"362","endDate":1420618800,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1420618260,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40402559","duration":1260,"bikeId":"3325","endDate":1420618860,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1420617600,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40403275","duration":480,"bikeId":"6573","endDate":1420618920,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1420618440,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40402318","duration":1740,"bikeId":"12281","endDate":1420619040,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1420617300,"startStationId":"164","startStationName":"Cleveland Gardens, Bayswater"}, +{"_id":"40402802","duration":1200,"bikeId":"11717","endDate":1420619100,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1420617900,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40403336","duration":660,"bikeId":"12993","endDate":1420619160,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1420618500,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40402624","duration":1500,"bikeId":"5361","endDate":1420619220,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1420617720,"startStationId":"209","startStationName":"Denyer Street, Knightsbridge"}, +{"_id":"40402352","duration":1920,"bikeId":"3066","endDate":1420619280,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1420617360,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40403193","duration":960,"bikeId":"5875","endDate":1420619340,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1420618380,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"40403621","duration":600,"bikeId":"9688","endDate":1420619460,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1420618860,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40403264","duration":1080,"bikeId":"6579","endDate":1420619520,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1420618440,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40404091","duration":300,"bikeId":"9958","endDate":1420619580,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1420619280,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40404025","duration":420,"bikeId":"11499","endDate":1420619640,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1420619220,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40407042","duration":780,"bikeId":"12553","endDate":1420619760,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1420618980,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40403896","duration":720,"bikeId":"9765","endDate":1420619820,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1420619100,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40403502","duration":1200,"bikeId":"7019","endDate":1420619880,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1420618680,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40404402","duration":420,"bikeId":"3550","endDate":1420619940,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1420619520,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40404352","duration":540,"bikeId":"13051","endDate":1420620000,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1420619460,"startStationId":"660","startStationName":"West Kensington Station, West Kensington"}, +{"_id":"40404090","duration":780,"bikeId":"11433","endDate":1420620060,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420619280,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40403821","duration":1080,"bikeId":"5590","endDate":1420620120,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1420619040,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"40404165","duration":840,"bikeId":"7996","endDate":1420620180,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1420619340,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40404359","duration":720,"bikeId":"12078","endDate":1420620240,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1420619520,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"40404772","duration":480,"bikeId":"7746","endDate":1420620300,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1420619820,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"40404939","duration":420,"bikeId":"8264","endDate":1420620360,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420619940,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40404584","duration":720,"bikeId":"9504","endDate":1420620420,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1420619700,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40404955","duration":480,"bikeId":"2449","endDate":1420620420,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420619940,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40404768","duration":660,"bikeId":"8036","endDate":1420620480,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1420619820,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40404863","duration":660,"bikeId":"10576","endDate":1420620540,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1420619880,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40405005","duration":600,"bikeId":"10895","endDate":1420620600,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1420620000,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"40404606","duration":960,"bikeId":"3920","endDate":1420620660,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1420619700,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40405244","duration":540,"bikeId":"7103","endDate":1420620720,"endStationId":"551","endStationName":"Montgomery Square, Canary Wharf","startDate":1420620180,"startStationId":"523","startStationName":"Langdon Park, Poplar"}, +{"_id":"40404556","duration":1140,"bikeId":"10344","endDate":1420620780,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1420619640,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"40404655","duration":1080,"bikeId":"8659","endDate":1420620780,"endStationId":"656","endStationName":"Broomhouse Lane, Parsons Green","startDate":1420619700,"startStationId":"668","startStationName":"Ravenscourt Park Station, Hammersmith"}, +{"_id":"40405859","duration":180,"bikeId":"1343","endDate":1420620840,"endStationId":"604","endStationName":"St Martin's Close, Camden Town","startDate":1420620660,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40405334","duration":660,"bikeId":"2813","endDate":1420620900,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420620240,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40404325","duration":1500,"bikeId":"10471","endDate":1420620960,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1420619460,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40405780","duration":420,"bikeId":"4377","endDate":1420621020,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420620600,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"40404381","duration":1500,"bikeId":"4230","endDate":1420621020,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1420619520,"startStationId":"673","startStationName":"Hibbert Street, Battersea"}, +{"_id":"40405060","duration":1080,"bikeId":"12424","endDate":1420621080,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1420620000,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40405544","duration":720,"bikeId":"3844","endDate":1420621140,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1420620420,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40404831","duration":1380,"bikeId":"8883","endDate":1420621200,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1420619820,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40405528","duration":840,"bikeId":"8931","endDate":1420621260,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1420620420,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40404732","duration":1560,"bikeId":"9747","endDate":1420621320,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1420619760,"startStationId":"461","startStationName":"Aston Street, Stepney"}, +{"_id":"40405605","duration":900,"bikeId":"12319","endDate":1420621380,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1420620480,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40406148","duration":480,"bikeId":"3264","endDate":1420621440,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1420620960,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40405325","duration":1260,"bikeId":"9157","endDate":1420621500,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1420620240,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40405888","duration":840,"bikeId":"1156","endDate":1420621560,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1420620720,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"40406105","duration":720,"bikeId":"5701","endDate":1420621680,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1420620960,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40406412","duration":480,"bikeId":"8859","endDate":1420621740,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1420621260,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40406193","duration":780,"bikeId":"27","endDate":1420621800,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1420621020,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40405245","duration":1680,"bikeId":"4431","endDate":1420621860,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1420620180,"startStationId":"565","startStationName":"Selby Street, Whitechapel"}, +{"_id":"40406241","duration":900,"bikeId":"5857","endDate":1420621920,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1420621020,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40406445","duration":720,"bikeId":"10998","endDate":1420621980,"endStationId":"608","endStationName":"Colet Gardens, Hammersmith","startDate":1420621260,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"40405036","duration":2040,"bikeId":"5209","endDate":1420622040,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1420620000,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40406826","duration":360,"bikeId":"8054","endDate":1420622100,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1420621740,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40406925","duration":360,"bikeId":"7917","endDate":1420622220,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1420621860,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40406458","duration":1020,"bikeId":"4425","endDate":1420622280,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1420621260,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40407152","duration":240,"bikeId":"12527","endDate":1420622400,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1420622160,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"40407232","duration":180,"bikeId":"3325","endDate":1420622460,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1420622280,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40405238","duration":2340,"bikeId":"2904","endDate":1420622520,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1420620180,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40406618","duration":1140,"bikeId":"10866","endDate":1420622640,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1420621500,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"40406653","duration":1200,"bikeId":"1804","endDate":1420622700,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1420621500,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"40407033","duration":840,"bikeId":"2213","endDate":1420622820,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1420621980,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40404794","duration":3060,"bikeId":"11720","endDate":1420622880,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1420619820,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"40407428","duration":300,"bikeId":"1315","endDate":1420623000,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420622700,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40406764","duration":1440,"bikeId":"3420","endDate":1420623120,"endStationId":"289","endStationName":"South Audley Street, Mayfair","startDate":1420621680,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40407530","duration":300,"bikeId":"8295","endDate":1420623240,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420622940,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40407325","duration":900,"bikeId":"4863","endDate":1420623360,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1420622460,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40407370","duration":900,"bikeId":"6898","endDate":1420623480,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1420622580,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40407683","duration":360,"bikeId":"3861","endDate":1420623660,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1420623300,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40407689","duration":540,"bikeId":"4509","endDate":1420623840,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1420623300,"startStationId":"577","startStationName":"Globe Town Market, Bethnal Green"}, +{"_id":"40407552","duration":1080,"bikeId":"11466","endDate":1420624020,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1420622940,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40407601","duration":1080,"bikeId":"4011","endDate":1420624140,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1420623060,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40407877","duration":480,"bikeId":"5178","endDate":1420624320,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1420623840,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40408025","duration":240,"bikeId":"8335","endDate":1420624500,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1420624260,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"40407983","duration":540,"bikeId":"734","endDate":1420624680,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1420624140,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"40408009","duration":720,"bikeId":"9182","endDate":1420624920,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1420624200,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40407785","duration":1680,"bikeId":"4137","endDate":1420625160,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1420623480,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40408137","duration":720,"bikeId":"5068","endDate":1420625400,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420624680,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40408284","duration":480,"bikeId":"6","endDate":1420625640,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1420625160,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40408236","duration":960,"bikeId":"10788","endDate":1420625940,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420624980,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40408099","duration":1620,"bikeId":"2071","endDate":1420626180,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1420624560,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"40408474","duration":480,"bikeId":"10119","endDate":1420626420,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1420625940,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40408416","duration":1020,"bikeId":"12796","endDate":1420626720,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1420625700,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40408563","duration":660,"bikeId":"2632","endDate":1420627080,"endStationId":"280","endStationName":"Royal Avenue 2, Chelsea","startDate":1420626420,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40408790","duration":0,"bikeId":"3985","endDate":1420627500,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1420627500,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40408618","duration":1200,"bikeId":"12449","endDate":1420627860,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1420626660,"startStationId":"765","startStationName":"Ranelagh Gardens, Fulham"}, +{"_id":"40408843","duration":540,"bikeId":"11764","endDate":1420628220,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1420627680,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"40408928","duration":360,"bikeId":"551","endDate":1420628460,"endStationId":"648","endStationName":"Peterborough Road, Sands End","startDate":1420628100,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40408944","duration":600,"bikeId":"12299","endDate":1420628760,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1420628160,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40408953","duration":900,"bikeId":"324","endDate":1420629120,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420628220,"startStationId":"722","startStationName":"Finnis Street, Bethnal Green"}, +{"_id":"40409056","duration":720,"bikeId":"13015","endDate":1420629480,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1420628760,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"40409127","duration":840,"bikeId":"6624","endDate":1420629900,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1420629060,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"40409227","duration":780,"bikeId":"8570","endDate":1420630320,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1420629540,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40409250","duration":1020,"bikeId":"10456","endDate":1420630680,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1420629660,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40409441","duration":360,"bikeId":"3058","endDate":1420631100,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1420630740,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40409461","duration":600,"bikeId":"12828","endDate":1420631460,"endStationId":"565","endStationName":"Selby Street, Whitechapel","startDate":1420630860,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40409557","duration":420,"bikeId":"626","endDate":1420631760,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1420631340,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40409591","duration":540,"bikeId":"6209","endDate":1420632000,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1420631460,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40409662","duration":660,"bikeId":"3201","endDate":1420632360,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1420631700,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40409771","duration":480,"bikeId":"9082","endDate":1420632600,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1420632120,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"40409701","duration":1020,"bikeId":"4837","endDate":1420632900,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1420631880,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40410011","duration":180,"bikeId":"280","endDate":1420633140,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1420632960,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40410075","duration":240,"bikeId":"6883","endDate":1420633440,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1420633200,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40410008","duration":780,"bikeId":"8363","endDate":1420633740,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1420632960,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40410127","duration":540,"bikeId":"8411","endDate":1420633980,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1420633440,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40410337","duration":60,"bikeId":"2170","endDate":1420634280,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1420634220,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"40410249","duration":600,"bikeId":"5738","endDate":1420634460,"endStationId":"765","endStationName":"Ranelagh Gardens, Fulham","startDate":1420633860,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40410396","duration":300,"bikeId":"10327","endDate":1420634700,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420634400,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"40410430","duration":480,"bikeId":"1974","endDate":1420635000,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1420634520,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40410272","duration":1260,"bikeId":"6206","endDate":1420635240,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1420633980,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40410639","duration":180,"bikeId":"12222","endDate":1420635420,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1420635240,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40410647","duration":420,"bikeId":"3616","endDate":1420635660,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1420635240,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40410661","duration":540,"bikeId":"3897","endDate":1420635840,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1420635300,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"40410766","duration":300,"bikeId":"1777","endDate":1420636020,"endStationId":"286","endStationName":"St. John's Wood Road, St. John's Wood","startDate":1420635720,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40410864","duration":360,"bikeId":"6623","endDate":1420636320,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1420635960,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40409115","duration":7500,"bikeId":"449","endDate":1420636500,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1420629000,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"40410923","duration":540,"bikeId":"26","endDate":1420636740,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1420636200,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"40411039","duration":360,"bikeId":"10925","endDate":1420636980,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1420636620,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40410687","duration":1800,"bikeId":"11029","endDate":1420637220,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1420635420,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40411184","duration":480,"bikeId":"10860","endDate":1420637520,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1420637040,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40411101","duration":900,"bikeId":"7321","endDate":1420637700,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1420636800,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40411152","duration":960,"bikeId":"9768","endDate":1420637940,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1420636980,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40411407","duration":300,"bikeId":"7862","endDate":1420638180,"endStationId":"149","endStationName":"Kennington Road Post Office, Oval","startDate":1420637880,"startStationId":"355","startStationName":"Oval Way, Lambeth"}, +{"_id":"40410809","duration":2580,"bikeId":"11873","endDate":1420638420,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1420635840,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40411512","duration":420,"bikeId":"4702","endDate":1420638660,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1420638240,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40411391","duration":1020,"bikeId":"7341","endDate":1420638840,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1420637820,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40411499","duration":900,"bikeId":"10546","endDate":1420639080,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1420638180,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40411629","duration":660,"bikeId":"3223","endDate":1420639320,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1420638660,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40411515","duration":1380,"bikeId":"4721","endDate":1420639620,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1420638240,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"40411732","duration":900,"bikeId":"4357","endDate":1420639980,"endStationId":"684","endStationName":"Neville Gill Close, Wandsworth","startDate":1420639080,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"40411731","duration":1200,"bikeId":"10739","endDate":1420640280,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1420639080,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40411471","duration":2400,"bikeId":"12904","endDate":1420640520,"endStationId":"629","endStationName":"Morie Street, Wandsworth","startDate":1420638120,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40410941","duration":4560,"bikeId":"9235","endDate":1420640820,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1420636260,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40411943","duration":1140,"bikeId":"12181","endDate":1420641120,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1420639980,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40412176","duration":480,"bikeId":"5082","endDate":1420641420,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1420640940,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40412137","duration":960,"bikeId":"3507","endDate":1420641780,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1420640820,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"40412252","duration":660,"bikeId":"895","endDate":1420642020,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1420641360,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"40412381","duration":360,"bikeId":"534","endDate":1420642260,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1420641900,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40412456","duration":300,"bikeId":"7864","endDate":1420642560,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1420642260,"startStationId":"161","startStationName":"Guildhouse Street, Victoria"}, +{"_id":"40412455","duration":540,"bikeId":"12420","endDate":1420642800,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420642260,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40412617","duration":240,"bikeId":"4715","endDate":1420643160,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1420642920,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40412520","duration":900,"bikeId":"8323","endDate":1420643400,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1420642500,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40412717","duration":300,"bikeId":"8512","endDate":1420643700,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1420643400,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"40412826","duration":180,"bikeId":"6236","endDate":1420644060,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1420643880,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"40412847","duration":420,"bikeId":"7944","endDate":1420644360,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420643940,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40412711","duration":1320,"bikeId":"10833","endDate":1420644660,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1420643340,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40412919","duration":660,"bikeId":"1411","endDate":1420644900,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1420644240,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40413028","duration":540,"bikeId":"11500","endDate":1420645200,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1420644660,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40413023","duration":840,"bikeId":"7010","endDate":1420645500,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1420644660,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40413036","duration":1020,"bikeId":"7613","endDate":1420645740,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1420644720,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40413138","duration":840,"bikeId":"6185","endDate":1420646040,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1420645200,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40413370","duration":240,"bikeId":"2117","endDate":1420646400,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1420646160,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40413379","duration":420,"bikeId":"4125","endDate":1420646640,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1420646220,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40413335","duration":900,"bikeId":"10918","endDate":1420646880,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1420645980,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40413365","duration":1080,"bikeId":"9854","endDate":1420647180,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420646100,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40413561","duration":540,"bikeId":"7939","endDate":1420647420,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1420646880,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"40413360","duration":1500,"bikeId":"13065","endDate":1420647600,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1420646100,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40413287","duration":2040,"bikeId":"207","endDate":1420647840,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1420645800,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40413856","duration":240,"bikeId":"6159","endDate":1420648020,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1420647780,"startStationId":"678","startStationName":"Esmond Street, Putney"}, +{"_id":"40413933","duration":180,"bikeId":"4245","endDate":1420648260,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420648080,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40413957","duration":300,"bikeId":"2034","endDate":1420648440,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1420648140,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40413662","duration":1500,"bikeId":"4975","endDate":1420648680,"endStationId":"468","endStationName":"Cantrell Road, Bow","startDate":1420647180,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40413875","duration":1080,"bikeId":"5176","endDate":1420648920,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420647840,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40414195","duration":360,"bikeId":"8338","endDate":1420649160,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420648800,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40414139","duration":600,"bikeId":"9428","endDate":1420649280,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1420648680,"startStationId":"327","startStationName":"New North Road 1, Hoxton"}, +{"_id":"40414200","duration":660,"bikeId":"3342","endDate":1420649460,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420648800,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40414293","duration":660,"bikeId":"9601","endDate":1420649700,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1420649040,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40414402","duration":480,"bikeId":"5849","endDate":1420649820,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1420649340,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40414544","duration":240,"bikeId":"11141","endDate":1420649940,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1420649700,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40414304","duration":1080,"bikeId":"9407","endDate":1420650180,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1420649100,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40414396","duration":960,"bikeId":"7910","endDate":1420650300,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1420649340,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40414314","duration":1320,"bikeId":"12459","endDate":1420650420,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1420649100,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40414509","duration":960,"bikeId":"1133","endDate":1420650600,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1420649640,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"40414803","duration":540,"bikeId":"10946","endDate":1420650780,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1420650240,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40415193","duration":60,"bikeId":"7099","endDate":1420650900,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1420650840,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40414897","duration":660,"bikeId":"10288","endDate":1420651020,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1420650360,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"40414962","duration":600,"bikeId":"8654","endDate":1420651080,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1420650480,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"40414737","duration":1020,"bikeId":"12324","endDate":1420651200,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420650180,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40414835","duration":1020,"bikeId":"4357","endDate":1420651320,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1420650300,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40414961","duration":960,"bikeId":"10406","endDate":1420651440,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1420650480,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40414451","duration":2100,"bikeId":"9266","endDate":1420651560,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1420649460,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40415264","duration":720,"bikeId":"5662","endDate":1420651680,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1420650960,"startStationId":"538","startStationName":"Naval Row, Blackwall"}, +{"_id":"40415386","duration":600,"bikeId":"3481","endDate":1420651800,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1420651200,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40415322","duration":780,"bikeId":"12720","endDate":1420651860,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1420651080,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40415379","duration":780,"bikeId":"464","endDate":1420651980,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1420651200,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40415427","duration":840,"bikeId":"6152","endDate":1420652100,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1420651260,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40415330","duration":1140,"bikeId":"610","endDate":1420652220,"endStationId":"576","endStationName":"Alpha Grove, Millwall","startDate":1420651080,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40415585","duration":780,"bikeId":"9789","endDate":1420652280,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1420651500,"startStationId":"648","startStationName":"Peterborough Road, Sands End"}, +{"_id":"40415992","duration":360,"bikeId":"4165","endDate":1420652400,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1420652040,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40415698","duration":780,"bikeId":"9330","endDate":1420652460,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420651680,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40415786","duration":780,"bikeId":"1840","endDate":1420652580,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1420651800,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40415706","duration":1020,"bikeId":"5784","endDate":1420652640,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1420651620,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40416055","duration":540,"bikeId":"1071","endDate":1420652700,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420652160,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40415976","duration":720,"bikeId":"12727","endDate":1420652760,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1420652040,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40416592","duration":120,"bikeId":"4803","endDate":1420652820,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1420652700,"startStationId":"647","startStationName":"Richmond Way, Shepherd's Bush"}, +{"_id":"40415517","duration":1560,"bikeId":"2767","endDate":1420652940,"endStationId":"516","endStationName":"Chrisp Street Market, Poplar","startDate":1420651380,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40416322","duration":600,"bikeId":"11307","endDate":1420653000,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1420652400,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40416454","duration":540,"bikeId":"11852","endDate":1420653060,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1420652520,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40416551","duration":540,"bikeId":"5178","endDate":1420653180,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1420652640,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40415730","duration":1560,"bikeId":"10782","endDate":1420653240,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1420651680,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40416838","duration":420,"bikeId":"12056","endDate":1420653360,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1420652940,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40416922","duration":300,"bikeId":"11049","endDate":1420653360,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1420653060,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40416286","duration":1080,"bikeId":"867","endDate":1420653480,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1420652400,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40416831","duration":600,"bikeId":"1524","endDate":1420653540,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1420652940,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40415668","duration":1980,"bikeId":"12014","endDate":1420653600,"endStationId":"164","endStationName":"Cleveland Gardens, Bayswater","startDate":1420651620,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40416799","duration":720,"bikeId":"2635","endDate":1420653660,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1420652940,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40416765","duration":900,"bikeId":"1836","endDate":1420653780,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420652880,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40417170","duration":480,"bikeId":"2796","endDate":1420653840,"endStationId":"174","endStationName":"Strand, Strand","startDate":1420653360,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40417485","duration":180,"bikeId":"11028","endDate":1420653900,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1420653720,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40417399","duration":360,"bikeId":"5594","endDate":1420653960,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1420653600,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"40416883","duration":1020,"bikeId":"7217","endDate":1420654020,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1420653000,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40417272","duration":720,"bikeId":"3543","endDate":1420654140,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1420653420,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"40417438","duration":540,"bikeId":"1704","endDate":1420654200,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1420653660,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40416787","duration":1380,"bikeId":"5928","endDate":1420654260,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1420652880,"startStationId":"496","startStationName":"Devons Road, Bow"}, +{"_id":"40417588","duration":540,"bikeId":"9821","endDate":1420654320,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420653780,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40417642","duration":600,"bikeId":"8699","endDate":1420654440,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1420653840,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40417913","duration":360,"bikeId":"5225","endDate":1420654500,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1420654140,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"40417457","duration":900,"bikeId":"5932","endDate":1420654560,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1420653660,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"40416871","duration":1620,"bikeId":"10569","endDate":1420654620,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420653000,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"40418018","duration":420,"bikeId":"5139","endDate":1420654680,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1420654260,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40418177","duration":360,"bikeId":"1677","endDate":1420654800,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1420654440,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40418253","duration":300,"bikeId":"1733","endDate":1420654860,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1420654560,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"40417464","duration":1260,"bikeId":"2561","endDate":1420654920,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1420653660,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40418309","duration":420,"bikeId":"11127","endDate":1420655040,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420654620,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40417653","duration":1260,"bikeId":"7229","endDate":1420655100,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1420653840,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40417323","duration":1680,"bikeId":"6291","endDate":1420655160,"endStationId":"408","endStationName":"Paddington Green Police Station, Paddington","startDate":1420653480,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40418005","duration":1020,"bikeId":"9170","endDate":1420655280,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1420654260,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40418007","duration":1080,"bikeId":"6375","endDate":1420655340,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1420654260,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"40418804","duration":240,"bikeId":"11157","endDate":1420655460,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1420655220,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40418803","duration":300,"bikeId":"12779","endDate":1420655520,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1420655220,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"40418570","duration":660,"bikeId":"5071","endDate":1420655580,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1420654920,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"40418862","duration":420,"bikeId":"5373","endDate":1420655700,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1420655280,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40417896","duration":1620,"bikeId":"403","endDate":1420655760,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1420654140,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40418621","duration":840,"bikeId":"6527","endDate":1420655820,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1420654980,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40419206","duration":180,"bikeId":"11887","endDate":1420655940,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1420655760,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40419035","duration":480,"bikeId":"2742","endDate":1420656000,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1420655520,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40419103","duration":480,"bikeId":"5466","endDate":1420656120,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1420655640,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40418722","duration":1080,"bikeId":"2351","endDate":1420656180,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1420655100,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40418423","duration":1560,"bikeId":"10425","endDate":1420656300,"endStationId":"236","endStationName":"Fashion Street, Whitechapel","startDate":1420654740,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"40419156","duration":720,"bikeId":"2016","endDate":1420656420,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1420655700,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"40419029","duration":960,"bikeId":"1361","endDate":1420656480,"endStationId":"212","endStationName":"Campden Hill Road, Notting Hill","startDate":1420655520,"startStationId":"606","startStationName":"Addison Road, Holland Park"}, +{"_id":"40418690","duration":1500,"bikeId":"8575","endDate":1420656600,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1420655100,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"40419464","duration":540,"bikeId":"7445","endDate":1420656660,"endStationId":"249","endStationName":"Harper Road, Borough","startDate":1420656120,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40419177","duration":1020,"bikeId":"6487","endDate":1420656780,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1420655760,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40419157","duration":1200,"bikeId":"9035","endDate":1420656900,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1420655700,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40415627","duration":5400,"bikeId":"2451","endDate":1420656960,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1420651560,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40419263","duration":1200,"bikeId":"3518","endDate":1420657080,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1420655880,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40419948","duration":240,"bikeId":"1885","endDate":1420657200,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1420656960,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40419616","duration":900,"bikeId":"12118","endDate":1420657260,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1420656360,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40419946","duration":420,"bikeId":"5744","endDate":1420657380,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420656960,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40419796","duration":780,"bikeId":"5624","endDate":1420657440,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1420656660,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"40420133","duration":360,"bikeId":"11335","endDate":1420657620,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1420657260,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"40419923","duration":840,"bikeId":"1804","endDate":1420657740,"endStationId":"21","endStationName":"Hampstead Road (Cartmel), Euston","startDate":1420656900,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40419571","duration":1560,"bikeId":"1005","endDate":1420657860,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1420656300,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"40420409","duration":180,"bikeId":"7981","endDate":1420658040,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1420657860,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"40420446","duration":240,"bikeId":"10028","endDate":1420658160,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1420657920,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40420319","duration":600,"bikeId":"6836","endDate":1420658280,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1420657680,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40420337","duration":720,"bikeId":"5995","endDate":1420658400,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420657680,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40420114","duration":1200,"bikeId":"12936","endDate":1420658460,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1420657260,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"40420201","duration":1200,"bikeId":"7932","endDate":1420658640,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1420657440,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40420214","duration":1320,"bikeId":"6229","endDate":1420658760,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1420657440,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40420760","duration":360,"bikeId":"4835","endDate":1420658880,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1420658520,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40420229","duration":1500,"bikeId":"7548","endDate":1420659000,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1420657500,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40420745","duration":660,"bikeId":"8283","endDate":1420659180,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1420658520,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40420837","duration":540,"bikeId":"10218","endDate":1420659300,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1420658760,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40420864","duration":660,"bikeId":"9828","endDate":1420659480,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1420658820,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40420968","duration":480,"bikeId":"4147","endDate":1420659660,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1420659180,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40421080","duration":240,"bikeId":"2821","endDate":1420659840,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1420659600,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"40421065","duration":600,"bikeId":"5596","endDate":1420660140,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420659540,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40421125","duration":600,"bikeId":"3047","endDate":1420660380,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1420659780,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40421244","duration":420,"bikeId":"7784","endDate":1420660560,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1420660140,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40421332","duration":300,"bikeId":"2821","endDate":1420660800,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1420660500,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"40421309","duration":660,"bikeId":"9881","endDate":1420661040,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1420660380,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"40421295","duration":1020,"bikeId":"4853","endDate":1420661340,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1420660320,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40421480","duration":540,"bikeId":"4583","endDate":1420661580,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1420661040,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40421591","duration":360,"bikeId":"5062","endDate":1420661820,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1420661460,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40421549","duration":780,"bikeId":"5031","endDate":1420662120,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1420661340,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"40421687","duration":480,"bikeId":"9534","endDate":1420662360,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420661880,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40421728","duration":660,"bikeId":"1564","endDate":1420662660,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1420662000,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"40421692","duration":1080,"bikeId":"1490","endDate":1420662960,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1420661880,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40421853","duration":600,"bikeId":"9740","endDate":1420663320,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1420662720,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40421883","duration":840,"bikeId":"8415","endDate":1420663680,"endStationId":"683","endStationName":"Dorothy Road, Clapham Junction","startDate":1420662840,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40422016","duration":480,"bikeId":"9056","endDate":1420664160,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1420663680,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40422021","duration":900,"bikeId":"10654","endDate":1420664640,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1420663740,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40422162","duration":360,"bikeId":"1093","endDate":1420665060,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1420664700,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40422207","duration":600,"bikeId":"2588","endDate":1420665540,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1420664940,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"40422204","duration":960,"bikeId":"11937","endDate":1420665900,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1420664940,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40422291","duration":840,"bikeId":"4160","endDate":1420666200,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1420665360,"startStationId":"652","startStationName":"Evesham Street, Avondale"}, +{"_id":"40422032","duration":2940,"bikeId":"8538","endDate":1420666740,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1420663800,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"40422477","duration":600,"bikeId":"12815","endDate":1420667160,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1420666560,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40422462","duration":1200,"bikeId":"6101","endDate":1420667700,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1420666500,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40422660","duration":180,"bikeId":"12937","endDate":1420668120,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1420667940,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40422694","duration":420,"bikeId":"9139","endDate":1420668600,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1420668180,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"40422770","duration":420,"bikeId":"13069","endDate":1420669080,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1420668660,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40422051","duration":5400,"bikeId":"12852","endDate":1420669380,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1420663980,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40422849","duration":660,"bikeId":"8041","endDate":1420669920,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1420669260,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40422953","duration":300,"bikeId":"274","endDate":1420670580,"endStationId":"741","endStationName":"Freston Road, Avondale","startDate":1420670280,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"40422992","duration":600,"bikeId":"8463","endDate":1420671180,"endStationId":"464","endStationName":"St. Mary and St. Michael Church, Stepney","startDate":1420670580,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40422946","duration":1680,"bikeId":"10664","endDate":1420671900,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1420670220,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"40423160","duration":300,"bikeId":"12775","endDate":1420672680,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1420672380,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40423174","duration":840,"bikeId":"9029","endDate":1420673640,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1420672800,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40423214","duration":1320,"bikeId":"2862","endDate":1420674780,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1420673460,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40423300","duration":1020,"bikeId":"4364","endDate":1420676100,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1420675080,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40423379","duration":720,"bikeId":"9942","endDate":1420677840,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1420677120,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40423437","duration":1440,"bikeId":"7208","endDate":1420680660,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1420679220,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40423534","duration":480,"bikeId":"5649","endDate":1420683900,"endStationId":"741","endStationName":"Freston Road, Avondale","startDate":1420683420,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"40423595","duration":840,"bikeId":"12778","endDate":1420690800,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1420689960,"startStationId":"750","startStationName":"Culvert Road, Battersea"}, +{"_id":"40423675","duration":480,"bikeId":"6965","endDate":1420696260,"endStationId":"145","endStationName":"Ilchester Place, Kensington","startDate":1420695780,"startStationId":"754","startStationName":"Grenfell Road, Avondale"}, +{"_id":"40423716","duration":660,"bikeId":"7332","endDate":1420697520,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1420696860,"startStationId":"724","startStationName":"Alma Road, Wandsworth"}, +{"_id":"40423835","duration":300,"bikeId":"7395","endDate":1420698480,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1420698180,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40423862","duration":660,"bikeId":"11722","endDate":1420699020,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420698360,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40423840","duration":1260,"bikeId":"7205","endDate":1420699500,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1420698240,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40424029","duration":420,"bikeId":"10062","endDate":1420699860,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420699440,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40424056","duration":660,"bikeId":"7262","endDate":1420700220,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1420699560,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"40424016","duration":1200,"bikeId":"7953","endDate":1420700580,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1420699380,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40424171","duration":720,"bikeId":"2332","endDate":1420700820,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420700100,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40424379","duration":180,"bikeId":"10208","endDate":1420701060,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1420700880,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40424375","duration":480,"bikeId":"8484","endDate":1420701360,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1420700880,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40424390","duration":780,"bikeId":"7988","endDate":1420701720,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1420700940,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40424427","duration":840,"bikeId":"737","endDate":1420701900,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1420701060,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40424625","duration":360,"bikeId":"10650","endDate":1420702080,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1420701720,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"40424712","duration":300,"bikeId":"1691","endDate":1420702320,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1420702020,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40424623","duration":840,"bikeId":"2622","endDate":1420702560,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420701720,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40424831","duration":360,"bikeId":"10007","endDate":1420702860,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1420702500,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"40424849","duration":540,"bikeId":"2785","endDate":1420703100,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1420702560,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40424659","duration":1500,"bikeId":"1931","endDate":1420703340,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1420701840,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40425022","duration":360,"bikeId":"3824","endDate":1420703520,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1420703160,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40424941","duration":840,"bikeId":"4517","endDate":1420703760,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1420702920,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40424987","duration":900,"bikeId":"11547","endDate":1420703940,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420703040,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40425013","duration":1080,"bikeId":"8179","endDate":1420704240,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1420703160,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40425195","duration":720,"bikeId":"5813","endDate":1420704480,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1420703760,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40425349","duration":480,"bikeId":"12937","endDate":1420704720,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1420704240,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40425432","duration":420,"bikeId":"6052","endDate":1420704960,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1420704540,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40425268","duration":1200,"bikeId":"12503","endDate":1420705200,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1420704000,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40425701","duration":180,"bikeId":"11060","endDate":1420705500,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1420705320,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40425548","duration":780,"bikeId":"6725","endDate":1420705620,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1420704840,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40425504","duration":1020,"bikeId":"316","endDate":1420705800,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1420704780,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40425506","duration":1200,"bikeId":"2198","endDate":1420705980,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1420704780,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"40425749","duration":660,"bikeId":"358","endDate":1420706160,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420705500,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40425818","duration":660,"bikeId":"2742","endDate":1420706340,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1420705680,"startStationId":"722","startStationName":"Finnis Street, Bethnal Green"}, +{"_id":"40353204","duration":319140,"bikeId":"4774","endDate":1420706520,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1420387380,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"40425716","duration":1380,"bikeId":"11968","endDate":1420706760,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1420705380,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"40425991","duration":780,"bikeId":"7222","endDate":1420706880,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1420706100,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40426052","duration":840,"bikeId":"5750","endDate":1420707060,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420706220,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40426068","duration":960,"bikeId":"7042","endDate":1420707240,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1420706280,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40426358","duration":300,"bikeId":"12156","endDate":1420707360,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1420707060,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40426145","duration":1020,"bikeId":"11711","endDate":1420707540,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1420706520,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40426320","duration":720,"bikeId":"10886","endDate":1420707660,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1420706940,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"40426481","duration":540,"bikeId":"4938","endDate":1420707900,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1420707360,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40426560","duration":420,"bikeId":"10218","endDate":1420708020,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1420707600,"startStationId":"549","startStationName":"Gaywood Street, Elephant & Castle"}, +{"_id":"40426220","duration":1500,"bikeId":"9197","endDate":1420708200,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420706700,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"40426621","duration":660,"bikeId":"7841","endDate":1420708440,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1420707780,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40426799","duration":180,"bikeId":"389","endDate":1420708620,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1420708440,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40426580","duration":1320,"bikeId":"9736","endDate":1420708920,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1420707600,"startStationId":"600","startStationName":"South Lambeth Road, Vauxhall"}, +{"_id":"40426740","duration":900,"bikeId":"5416","endDate":1420709160,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420708260,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40426762","duration":1140,"bikeId":"1120","endDate":1420709460,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1420708320,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40426879","duration":1020,"bikeId":"7400","endDate":1420709880,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1420708860,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40427049","duration":240,"bikeId":"6287","endDate":1420710360,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1420710120,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"40427084","duration":420,"bikeId":"12924","endDate":1420710780,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1420710360,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40427145","duration":480,"bikeId":"10399","endDate":1420711440,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1420710960,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40427204","duration":420,"bikeId":"4657","endDate":1420712280,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1420711860,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40427275","duration":420,"bikeId":"3219","endDate":1420713540,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1420713120,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40427338","duration":600,"bikeId":"11178","endDate":1420714920,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1420714320,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40427390","duration":900,"bikeId":"9268","endDate":1420716480,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1420715580,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40427472","duration":480,"bikeId":"3960","endDate":1420717740,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1420717260,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40427517","duration":780,"bikeId":"10994","endDate":1420718700,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1420717920,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40427629","duration":480,"bikeId":"23","endDate":1420719420,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1420718940,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40427563","duration":1500,"bikeId":"6297","endDate":1420719960,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1420718460,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"40427790","duration":300,"bikeId":"11723","endDate":1420720380,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1420720080,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40427797","duration":720,"bikeId":"13052","endDate":1420720800,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1420720080,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40427825","duration":960,"bikeId":"5543","endDate":1420721220,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1420720260,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"40428001","duration":300,"bikeId":"1686","endDate":1420721640,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1420721340,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40428011","duration":660,"bikeId":"9561","endDate":1420722060,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1420721400,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40428030","duration":900,"bikeId":"13042","endDate":1420722420,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1420721520,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40428118","duration":720,"bikeId":"7348","endDate":1420722780,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1420722060,"startStationId":"44","startStationName":"Bruton Street, Mayfair"}, +{"_id":"40428254","duration":480,"bikeId":"115","endDate":1420723140,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1420722660,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40428244","duration":780,"bikeId":"2816","endDate":1420723440,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1420722660,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40428367","duration":480,"bikeId":"3948","endDate":1420723860,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1420723380,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40428485","duration":300,"bikeId":"7702","endDate":1420724280,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1420723980,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40428521","duration":540,"bikeId":"12586","endDate":1420724640,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1420724100,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40428621","duration":360,"bikeId":"1211","endDate":1420725000,"endStationId":"690","endStationName":"Stanley Grove, Battersea","startDate":1420724640,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"40428701","duration":240,"bikeId":"8794","endDate":1420725240,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1420725000,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40428786","duration":240,"bikeId":"11452","endDate":1420725600,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1420725360,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40428815","duration":480,"bikeId":"5419","endDate":1420725960,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1420725480,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40428834","duration":660,"bikeId":"9709","endDate":1420726320,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1420725660,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"40428830","duration":1020,"bikeId":"13057","endDate":1420726620,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1420725600,"startStationId":"722","startStationName":"Finnis Street, Bethnal Green"}, +{"_id":"40429007","duration":540,"bikeId":"11078","endDate":1420726920,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1420726380,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40429126","duration":300,"bikeId":"7770","endDate":1420727160,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1420726860,"startStationId":"353","startStationName":"Greycoat Street , Westminster"}, +{"_id":"40429222","duration":180,"bikeId":"12139","endDate":1420727520,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1420727340,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40429211","duration":540,"bikeId":"11524","endDate":1420727820,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1420727280,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40429233","duration":900,"bikeId":"9513","endDate":1420728240,"endStationId":"775","endStationName":"Little Brook Green, Brook Green","startDate":1420727340,"startStationId":"171","startStationName":"Collingham Gardens, Earl's Court"}, +{"_id":"40429407","duration":420,"bikeId":"12469","endDate":1420728540,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1420728120,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40429389","duration":900,"bikeId":"542","endDate":1420728900,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1420728000,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40428866","duration":3420,"bikeId":"1130","endDate":1420729200,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1420725780,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40429588","duration":540,"bikeId":"2683","endDate":1420729500,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1420728960,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40429580","duration":900,"bikeId":"9387","endDate":1420729800,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1420728900,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40429712","duration":720,"bikeId":"12508","endDate":1420730160,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1420729440,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40429661","duration":1200,"bikeId":"12779","endDate":1420730460,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1420729260,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"40429752","duration":1140,"bikeId":"542","endDate":1420730820,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1420729680,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40429958","duration":540,"bikeId":"3448","endDate":1420731180,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1420730640,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40430053","duration":420,"bikeId":"431","endDate":1420731480,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1420731060,"startStationId":"591","startStationName":"Westfield Library Corner, Shepherd's Bush"}, +{"_id":"40430074","duration":600,"bikeId":"7615","endDate":1420731720,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420731120,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"40430056","duration":900,"bikeId":"9087","endDate":1420731960,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1420731060,"startStationId":"209","startStationName":"Denyer Street, Knightsbridge"}, +{"_id":"40430055","duration":1260,"bikeId":"5760","endDate":1420732320,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1420731060,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40430137","duration":1200,"bikeId":"7916","endDate":1420732620,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1420731420,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40430372","duration":420,"bikeId":"4431","endDate":1420732800,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1420732380,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40430424","duration":600,"bikeId":"9437","endDate":1420733160,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1420732560,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"40430337","duration":1200,"bikeId":"12700","endDate":1420733460,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1420732260,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"40430573","duration":540,"bikeId":"4404","endDate":1420733640,"endStationId":"543","endStationName":"Lansdowne Walk, Notting Hill","startDate":1420733100,"startStationId":"652","startStationName":"Evesham Street, Avondale"}, +{"_id":"40430502","duration":960,"bikeId":"12759","endDate":1420733820,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1420732860,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"40429961","duration":3420,"bikeId":"3503","endDate":1420734060,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1420730640,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40430900","duration":240,"bikeId":"6709","endDate":1420734240,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1420734000,"startStationId":"675","startStationName":"Usk Road, Battersea"}, +{"_id":"40430807","duration":720,"bikeId":"12669","endDate":1420734420,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1420733700,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"40430928","duration":600,"bikeId":"18","endDate":1420734660,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420734060,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40430716","duration":1380,"bikeId":"6054","endDate":1420734840,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420733460,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40431023","duration":540,"bikeId":"10876","endDate":1420735020,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1420734480,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"40431053","duration":720,"bikeId":"2969","endDate":1420735260,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1420734540,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40430201","duration":3720,"bikeId":"13027","endDate":1420735440,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1420731720,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"40431209","duration":720,"bikeId":"2632","endDate":1420735680,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1420734960,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40431056","duration":1320,"bikeId":"5803","endDate":1420735860,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1420734540,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40431043","duration":1500,"bikeId":"5194","endDate":1420736040,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1420734540,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40431517","duration":420,"bikeId":"3527","endDate":1420736220,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1420735800,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"40431136","duration":1560,"bikeId":"9344","endDate":1420736340,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1420734780,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40431683","duration":360,"bikeId":"9876","endDate":1420736580,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420736220,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40431294","duration":1500,"bikeId":"5405","endDate":1420736700,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1420735200,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40431809","duration":360,"bikeId":"5694","endDate":1420736880,"endStationId":"21","endStationName":"Hampstead Road (Cartmel), Euston","startDate":1420736520,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40431626","duration":1020,"bikeId":"6749","endDate":1420737060,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1420736040,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40431844","duration":600,"bikeId":"4526","endDate":1420737180,"endStationId":"467","endStationName":"Southern Grove, Bow","startDate":1420736580,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"40431960","duration":540,"bikeId":"3809","endDate":1420737300,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1420736760,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40431854","duration":840,"bikeId":"1035","endDate":1420737420,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1420736580,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40431585","duration":1560,"bikeId":"12507","endDate":1420737540,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420735980,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40432146","duration":660,"bikeId":"4205","endDate":1420737660,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1420737000,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40432308","duration":480,"bikeId":"6206","endDate":1420737780,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420737300,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40432351","duration":540,"bikeId":"12042","endDate":1420737900,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1420737360,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40432323","duration":660,"bikeId":"12574","endDate":1420737960,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420737300,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40432711","duration":180,"bikeId":"2247","endDate":1420738140,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1420737960,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40432670","duration":360,"bikeId":"3966","endDate":1420738260,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1420737900,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40432710","duration":360,"bikeId":"1284","endDate":1420738320,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1420737960,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40432253","duration":1200,"bikeId":"8328","endDate":1420738440,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1420737240,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"40432809","duration":420,"bikeId":"1624","endDate":1420738560,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420738140,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40432982","duration":240,"bikeId":"4909","endDate":1420738620,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1420738380,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40433160","duration":120,"bikeId":"10359","endDate":1420738740,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1420738620,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40432812","duration":660,"bikeId":"2742","endDate":1420738800,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1420738140,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40432810","duration":780,"bikeId":"7262","endDate":1420738920,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1420738140,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40432868","duration":780,"bikeId":"4653","endDate":1420738980,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1420738200,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"40433072","duration":600,"bikeId":"2854","endDate":1420739100,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1420738500,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40433397","duration":300,"bikeId":"7117","endDate":1420739160,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1420738860,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"40433274","duration":540,"bikeId":"5332","endDate":1420739280,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1420738740,"startStationId":"139","startStationName":"Lambeth Road, Vauxhall"}, +{"_id":"40433233","duration":660,"bikeId":"744","endDate":1420739340,"endStationId":"21","endStationName":"Hampstead Road (Cartmel), Euston","startDate":1420738680,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40433150","duration":900,"bikeId":"5542","endDate":1420739460,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420738560,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40433174","duration":900,"bikeId":"6153","endDate":1420739520,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420738620,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40433935","duration":120,"bikeId":"6532","endDate":1420739640,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1420739520,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40433093","duration":1200,"bikeId":"1831","endDate":1420739700,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1420738500,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40433832","duration":420,"bikeId":"9464","endDate":1420739820,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1420739400,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40433204","duration":1260,"bikeId":"5638","endDate":1420739880,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1420738620,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40434101","duration":180,"bikeId":"12909","endDate":1420739940,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1420739760,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40432879","duration":1860,"bikeId":"5096","endDate":1420740060,"endStationId":"688","endStationName":"Northfields, Wandsworth","startDate":1420738200,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40433865","duration":660,"bikeId":"9785","endDate":1420740120,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1420739460,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40433416","duration":1380,"bikeId":"9768","endDate":1420740240,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1420738860,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"40434079","duration":540,"bikeId":"12894","endDate":1420740300,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420739760,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40433507","duration":1440,"bikeId":"6373","endDate":1420740420,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1420738980,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40434253","duration":540,"bikeId":"7799","endDate":1420740540,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1420740000,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40434219","duration":660,"bikeId":"9654","endDate":1420740600,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1420739940,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40434410","duration":540,"bikeId":"10950","endDate":1420740720,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1420740180,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40430447","duration":8100,"bikeId":"788","endDate":1420740780,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1420732680,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"40434742","duration":300,"bikeId":"6809","endDate":1420740900,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1420740600,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40433917","duration":1500,"bikeId":"7841","endDate":1420741020,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1420739520,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40434533","duration":720,"bikeId":"2126","endDate":1420741080,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1420740360,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40434153","duration":1320,"bikeId":"8538","endDate":1420741200,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1420739880,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40434778","duration":600,"bikeId":"8501","endDate":1420741260,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1420740660,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40434795","duration":600,"bikeId":"2326","endDate":1420741320,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1420740720,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40434801","duration":720,"bikeId":"7282","endDate":1420741440,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1420740720,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40434885","duration":720,"bikeId":"4502","endDate":1420741560,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1420740840,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"40435012","duration":600,"bikeId":"4718","endDate":1420741620,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1420741020,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40435130","duration":600,"bikeId":"8136","endDate":1420741740,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420741140,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40434826","duration":1080,"bikeId":"8629","endDate":1420741800,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1420740720,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"40435131","duration":720,"bikeId":"2103","endDate":1420741920,"endStationId":"454","endStationName":"Napier Avenue, Millwall","startDate":1420741200,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40435064","duration":900,"bikeId":"657","endDate":1420741980,"endStationId":"521","endStationName":"Driffield Road, Old Ford","startDate":1420741080,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40435190","duration":840,"bikeId":"2279","endDate":1420742100,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1420741260,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40434876","duration":1380,"bikeId":"8583","endDate":1420742220,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1420740840,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40435215","duration":960,"bikeId":"4693","endDate":1420742280,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1420741320,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"40435869","duration":120,"bikeId":"4750","endDate":1420742400,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1420742280,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"40435911","duration":180,"bikeId":"10075","endDate":1420742520,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1420742340,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"40434652","duration":2040,"bikeId":"3030","endDate":1420742580,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1420740540,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40435625","duration":780,"bikeId":"10045","endDate":1420742700,"endStationId":"709","endStationName":"Montserrat Road , Putney","startDate":1420741920,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"40435559","duration":1020,"bikeId":"2538","endDate":1420742820,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1420741800,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40435967","duration":480,"bikeId":"4262","endDate":1420742940,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1420742460,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40435598","duration":1200,"bikeId":"9832","endDate":1420743060,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1420741860,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40435925","duration":780,"bikeId":"6745","endDate":1420743180,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1420742400,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40436188","duration":420,"bikeId":"12042","endDate":1420743300,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1420742880,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40436187","duration":540,"bikeId":"10823","endDate":1420743420,"endStationId":"466","endStationName":"Whiston Road, Haggerston","startDate":1420742880,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40436396","duration":240,"bikeId":"6257","endDate":1420743540,"endStationId":"549","endStationName":"Gaywood Street, Elephant & Castle","startDate":1420743300,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40436395","duration":420,"bikeId":"13009","endDate":1420743720,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1420743300,"startStationId":"624","startStationName":"Courland Grove, Wandsworth Road"}, +{"_id":"40436452","duration":360,"bikeId":"3869","endDate":1420743780,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1420743420,"startStationId":"337","startStationName":"Pembridge Villas, Notting Hill"}, +{"_id":"40436170","duration":1140,"bikeId":"7791","endDate":1420743960,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1420742820,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40435984","duration":1560,"bikeId":"6897","endDate":1420744080,"endStationId":"690","endStationName":"Stanley Grove, Battersea","startDate":1420742520,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40436718","duration":180,"bikeId":"11203","endDate":1420744260,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1420744080,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40436451","duration":960,"bikeId":"6700","endDate":1420744380,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1420743420,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40436858","duration":180,"bikeId":"10007","endDate":1420744560,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1420744380,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40436655","duration":840,"bikeId":"12701","endDate":1420744740,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1420743900,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40436914","duration":360,"bikeId":"8927","endDate":1420744920,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1420744560,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40436888","duration":600,"bikeId":"4461","endDate":1420745040,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1420744440,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40436921","duration":660,"bikeId":"12604","endDate":1420745220,"endStationId":"555","endStationName":"Westfield Eastern Access Road, Shepherd's Bush","startDate":1420744560,"startStationId":"668","startStationName":"Ravenscourt Park Station, Hammersmith"}, +{"_id":"40437101","duration":360,"bikeId":"9633","endDate":1420745340,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1420744980,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40436906","duration":1020,"bikeId":"583","endDate":1420745520,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1420744500,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40436565","duration":1920,"bikeId":"5494","endDate":1420745640,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1420743720,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40437142","duration":780,"bikeId":"11326","endDate":1420745820,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1420745040,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40436841","duration":1680,"bikeId":"11477","endDate":1420746000,"endStationId":"181","endStationName":"Belgrave Square, Belgravia","startDate":1420744320,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40437114","duration":1200,"bikeId":"12915","endDate":1420746180,"endStationId":"770","endStationName":"Gwendwr Road, West Kensington","startDate":1420744980,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"40437486","duration":360,"bikeId":"9323","endDate":1420746420,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1420746060,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"40437570","duration":360,"bikeId":"10900","endDate":1420746600,"endStationId":"297","endStationName":"Geraldine Street, Elephant & Castle","startDate":1420746240,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40437634","duration":300,"bikeId":"10102","endDate":1420746780,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1420746480,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40437699","duration":300,"bikeId":"3425","endDate":1420746960,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1420746660,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40437720","duration":420,"bikeId":"10110","endDate":1420747140,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1420746720,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40437818","duration":300,"bikeId":"12265","endDate":1420747380,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1420747080,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40437805","duration":600,"bikeId":"11878","endDate":1420747620,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1420747020,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40437877","duration":600,"bikeId":"9263","endDate":1420747860,"endStationId":"517","endStationName":"Ford Road, Old Ford","startDate":1420747260,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40437931","duration":600,"bikeId":"12409","endDate":1420748040,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1420747440,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40437929","duration":840,"bikeId":"4295","endDate":1420748280,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1420747440,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40438034","duration":840,"bikeId":"10872","endDate":1420748580,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1420747740,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40438184","duration":420,"bikeId":"8543","endDate":1420748820,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1420748400,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40438161","duration":840,"bikeId":"11078","endDate":1420749120,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1420748280,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40438339","duration":360,"bikeId":"1168","endDate":1420749420,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1420749060,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"40438397","duration":360,"bikeId":"11759","endDate":1420749720,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1420749360,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40438467","duration":240,"bikeId":"5111","endDate":1420750020,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1420749780,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40438497","duration":480,"bikeId":"373","endDate":1420750440,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1420749960,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"40438560","duration":300,"bikeId":"8508","endDate":1420750680,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1420750380,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40438574","duration":780,"bikeId":"10207","endDate":1420751220,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1420750440,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40438499","duration":1620,"bikeId":"4259","endDate":1420751580,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1420749960,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40438712","duration":660,"bikeId":"115","endDate":1420751940,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1420751280,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40438838","duration":420,"bikeId":"9258","endDate":1420752480,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1420752060,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40438886","duration":540,"bikeId":"6418","endDate":1420752900,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1420752360,"startStationId":"775","startStationName":"Little Brook Green, Brook Green"}, +{"_id":"40438933","duration":660,"bikeId":"9106","endDate":1420753380,"endStationId":"770","endStationName":"Gwendwr Road, West Kensington","startDate":1420752720,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"40438878","duration":1560,"bikeId":"2294","endDate":1420753860,"endStationId":"642","endStationName":"Fawcett Close, Battersea","startDate":1420752300,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40439076","duration":480,"bikeId":"3160","endDate":1420754460,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1420753980,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"40439124","duration":600,"bikeId":"1736","endDate":1420755000,"endStationId":"523","endStationName":"Langdon Park, Poplar","startDate":1420754400,"startStationId":"504","startStationName":"St John's Park, Cubitt Town"}, +{"_id":"40439194","duration":720,"bikeId":"3301","endDate":1420755600,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1420754880,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40439180","duration":1320,"bikeId":"4001","endDate":1420756080,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1420754760,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40439387","duration":240,"bikeId":"6494","endDate":1420756560,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1420756320,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"40439286","duration":1560,"bikeId":"274","endDate":1420757100,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1420755540,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40439503","duration":480,"bikeId":"6265","endDate":1420757820,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1420757340,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40439536","duration":660,"bikeId":"9968","endDate":1420758360,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1420757700,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40439504","duration":1740,"bikeId":"2090","endDate":1420759080,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1420757340,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"40439695","duration":540,"bikeId":"9000","endDate":1420759980,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1420759440,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40439739","duration":660,"bikeId":"2805","endDate":1420760700,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1420760040,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40439824","duration":240,"bikeId":"5922","endDate":1420761600,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1420761360,"startStationId":"454","startStationName":"Napier Avenue, Millwall"}, +{"_id":"40439858","duration":780,"bikeId":"2270","endDate":1420762560,"endStationId":"683","endStationName":"Dorothy Road, Clapham Junction","startDate":1420761780,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"40439855","duration":2520,"bikeId":"5313","endDate":1420764240,"endStationId":"714","endStationName":"Stewart's Road, Nine Elms","startDate":1420761720,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40440008","duration":660,"bikeId":"7235","endDate":1420766040,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1420765380,"startStationId":"325","startStationName":"St. Martin's Street, West End"}, +{"_id":"40440064","duration":1080,"bikeId":"5706","endDate":1420769400,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1420768320,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40440108","duration":2820,"bikeId":"9607","endDate":1420773480,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1420770660,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40440212","duration":960,"bikeId":"10415","endDate":1420779000,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1420778040,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40440291","duration":480,"bikeId":"9320","endDate":1420782900,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1420782420,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"40440368","duration":480,"bikeId":"10036","endDate":1420784460,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1420783980,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40440445","duration":420,"bikeId":"2485","endDate":1420785300,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1420784880,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40440540","duration":240,"bikeId":"6480","endDate":1420785780,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1420785540,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40440506","duration":840,"bikeId":"7812","endDate":1420786260,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1420785420,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40440591","duration":780,"bikeId":"3979","endDate":1420786620,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1420785840,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40440548","duration":1320,"bikeId":"10647","endDate":1420786920,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420785600,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40440769","duration":600,"bikeId":"6956","endDate":1420787280,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1420786680,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40440763","duration":960,"bikeId":"6597","endDate":1420787580,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1420786620,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40440937","duration":540,"bikeId":"1354","endDate":1420787880,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1420787340,"startStationId":"543","startStationName":"Lansdowne Walk, Notting Hill"}, +{"_id":"40440928","duration":840,"bikeId":"9840","endDate":1420788120,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1420787280,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40441222","duration":180,"bikeId":"11709","endDate":1420788300,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1420788120,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40441165","duration":480,"bikeId":"2441","endDate":1420788480,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1420788000,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40441264","duration":420,"bikeId":"12508","endDate":1420788660,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420788240,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"40441195","duration":840,"bikeId":"11388","endDate":1420788900,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1420788060,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40441318","duration":720,"bikeId":"9639","endDate":1420789080,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1420788360,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40441123","duration":1320,"bikeId":"11780","endDate":1420789200,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1420787880,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40441491","duration":600,"bikeId":"7","endDate":1420789380,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1420788780,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40441467","duration":780,"bikeId":"9239","endDate":1420789500,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1420788720,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40441674","duration":480,"bikeId":"6323","endDate":1420789680,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1420789200,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40441768","duration":480,"bikeId":"11256","endDate":1420789800,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1420789320,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40441451","duration":1320,"bikeId":"6517","endDate":1420789980,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1420788660,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"40441622","duration":960,"bikeId":"11287","endDate":1420790040,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1420789080,"startStationId":"598","startStationName":"Southerton Road, Hammersmith"}, +{"_id":"40441939","duration":540,"bikeId":"12383","endDate":1420790160,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1420789620,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40442197","duration":240,"bikeId":"9200","endDate":1420790280,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1420790040,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"40442100","duration":480,"bikeId":"2418","endDate":1420790340,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1420789860,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40441853","duration":960,"bikeId":"3379","endDate":1420790460,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1420789500,"startStationId":"528","startStationName":"Clarges Street, West End"}, +{"_id":"40441953","duration":900,"bikeId":"1016","endDate":1420790580,"endStationId":"205","endStationName":"New Road 2, Whitechapel","startDate":1420789680,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40442165","duration":660,"bikeId":"3558","endDate":1420790640,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1420789980,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40442498","duration":300,"bikeId":"9098","endDate":1420790760,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1420790460,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"40442225","duration":900,"bikeId":"11923","endDate":1420790940,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1420790040,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"40442588","duration":420,"bikeId":"12753","endDate":1420791000,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420790580,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"40442742","duration":300,"bikeId":"7122","endDate":1420791120,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420790820,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40442630","duration":540,"bikeId":"3531","endDate":1420791180,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1420790640,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40442107","duration":1440,"bikeId":"303","endDate":1420791300,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1420789860,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40442636","duration":780,"bikeId":"1836","endDate":1420791420,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1420790640,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40442566","duration":900,"bikeId":"1681","endDate":1420791480,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1420790580,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"40442942","duration":540,"bikeId":"12368","endDate":1420791600,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1420791060,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40442771","duration":780,"bikeId":"8399","endDate":1420791660,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1420790880,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40443180","duration":420,"bikeId":"12221","endDate":1420791780,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1420791360,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40442683","duration":1140,"bikeId":"1653","endDate":1420791840,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1420790700,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"40443131","duration":600,"bikeId":"3001","endDate":1420791900,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1420791300,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40443156","duration":720,"bikeId":"7798","endDate":1420792020,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1420791300,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40443128","duration":780,"bikeId":"8143","endDate":1420792080,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1420791300,"startStationId":"439","startStationName":"Killick Street, Kings Cross"}, +{"_id":"40443248","duration":720,"bikeId":"2594","endDate":1420792140,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1420791420,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"40443531","duration":540,"bikeId":"5311","endDate":1420792200,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1420791660,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40443135","duration":1020,"bikeId":"8901","endDate":1420792320,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1420791300,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40443697","duration":540,"bikeId":"3644","endDate":1420792380,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1420791840,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40443766","duration":540,"bikeId":"10684","endDate":1420792440,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1420791900,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40443833","duration":540,"bikeId":"4313","endDate":1420792500,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420791960,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40443220","duration":1200,"bikeId":"12999","endDate":1420792560,"endStationId":"172","endStationName":"Sumner Place, South Kensington","startDate":1420791360,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40443711","duration":780,"bikeId":"7322","endDate":1420792620,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1420791840,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40444262","duration":300,"bikeId":"5473","endDate":1420792680,"endStationId":"561","endStationName":"Rectory Square, Stepney","startDate":1420792380,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40444299","duration":360,"bikeId":"634","endDate":1420792740,"endStationId":"708","endStationName":"Disraeli Road, Putney","startDate":1420792380,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40443935","duration":720,"bikeId":"4968","endDate":1420792800,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1420792080,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40444010","duration":720,"bikeId":"12399","endDate":1420792860,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1420792140,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"40444323","duration":540,"bikeId":"11324","endDate":1420792980,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420792440,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40444082","duration":840,"bikeId":"2475","endDate":1420793040,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1420792200,"startStationId":"517","startStationName":"Ford Road, Old Ford"}, +{"_id":"40444832","duration":240,"bikeId":"2526","endDate":1420793100,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1420792860,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"40444221","duration":780,"bikeId":"7782","endDate":1420793100,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1420792320,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"40444957","duration":300,"bikeId":"5060","endDate":1420793220,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1420792920,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"40444619","duration":600,"bikeId":"3502","endDate":1420793280,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1420792680,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40444546","duration":660,"bikeId":"5586","endDate":1420793280,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1420792620,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40443704","duration":1500,"bikeId":"12342","endDate":1420793340,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1420791840,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40444444","duration":900,"bikeId":"4503","endDate":1420793400,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1420792500,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40445105","duration":420,"bikeId":"132","endDate":1420793460,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1420793040,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"40444630","duration":840,"bikeId":"3256","endDate":1420793520,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1420792680,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40444727","duration":840,"bikeId":"11843","endDate":1420793580,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1420792740,"startStationId":"565","startStationName":"Selby Street, Whitechapel"}, +{"_id":"40445240","duration":480,"bikeId":"9526","endDate":1420793640,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1420793160,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40445140","duration":600,"bikeId":"9155","endDate":1420793700,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1420793100,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40445442","duration":420,"bikeId":"6371","endDate":1420793760,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1420793340,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"40445090","duration":780,"bikeId":"629","endDate":1420793820,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1420793040,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40445330","duration":600,"bikeId":"7522","endDate":1420793820,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1420793220,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"40444822","duration":1020,"bikeId":"10872","endDate":1420793880,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1420792860,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"40445329","duration":720,"bikeId":"5100","endDate":1420793940,"endStationId":"667","endStationName":"Shepherd's Bush Road North, Shepherd's Bush","startDate":1420793220,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"40445430","duration":660,"bikeId":"6443","endDate":1420794000,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420793340,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40445163","duration":960,"bikeId":"164","endDate":1420794060,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1420793100,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40446070","duration":180,"bikeId":"631","endDate":1420794120,"endStationId":"563","endStationName":"Preston's Road, Cubitt Town","startDate":1420793940,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"40445326","duration":960,"bikeId":"6421","endDate":1420794180,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1420793220,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"40445106","duration":1200,"bikeId":"11535","endDate":1420794240,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1420793040,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40445747","duration":660,"bikeId":"7577","endDate":1420794300,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1420793640,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40445300","duration":1140,"bikeId":"5745","endDate":1420794360,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1420793220,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40445931","duration":660,"bikeId":"5227","endDate":1420794420,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1420793760,"startStationId":"660","startStationName":"West Kensington Station, West Kensington"}, +{"_id":"40445425","duration":1140,"bikeId":"7269","endDate":1420794480,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1420793340,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"40446159","duration":480,"bikeId":"6898","endDate":1420794540,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1420794060,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40446193","duration":540,"bikeId":"2317","endDate":1420794600,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1420794060,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40445549","duration":1200,"bikeId":"3325","endDate":1420794660,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1420793460,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40445590","duration":1320,"bikeId":"10968","endDate":1420794780,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1420793460,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40446613","duration":180,"bikeId":"10102","endDate":1420794840,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1420794660,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40446181","duration":840,"bikeId":"5376","endDate":1420794900,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420794060,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"40446650","duration":240,"bikeId":"9532","endDate":1420794960,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1420794720,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40445135","duration":2040,"bikeId":"11017","endDate":1420795080,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1420793040,"startStationId":"716","startStationName":"Stainsby Road , Poplar"}, +{"_id":"40446494","duration":660,"bikeId":"1246","endDate":1420795140,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1420794480,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"40446116","duration":1260,"bikeId":"9873","endDate":1420795260,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1420794000,"startStationId":"716","startStationName":"Stainsby Road , Poplar"}, +{"_id":"40446385","duration":1080,"bikeId":"8699","endDate":1420795320,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1420794240,"startStationId":"637","startStationName":"Spencer Park, Wandsworth Common"}, +{"_id":"40442341","duration":5220,"bikeId":"9992","endDate":1420795440,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1420790220,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40446502","duration":1080,"bikeId":"6557","endDate":1420795560,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1420794480,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"40446694","duration":840,"bikeId":"2617","endDate":1420795620,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1420794780,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"40446963","duration":600,"bikeId":"10525","endDate":1420795740,"endStationId":"375","endStationName":"Kensington Town Hall, Kensington","startDate":1420795140,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"40446428","duration":1500,"bikeId":"12996","endDate":1420795860,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1420794360,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40446675","duration":1260,"bikeId":"1129","endDate":1420795980,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1420794720,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40447316","duration":180,"bikeId":"2310","endDate":1420796100,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1420795920,"startStationId":"117","startStationName":"Lollard Street, Vauxhall"}, +{"_id":"40447193","duration":600,"bikeId":"8876","endDate":1420796220,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1420795620,"startStationId":"134","startStationName":"Wapping High Street, Wapping"}, +{"_id":"40446941","duration":1200,"bikeId":"9185","endDate":1420796340,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1420795140,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"40447400","duration":420,"bikeId":"492","endDate":1420796460,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1420796040,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40447182","duration":960,"bikeId":"8433","endDate":1420796580,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1420795620,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40447214","duration":1020,"bikeId":"2595","endDate":1420796700,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1420795680,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40447740","duration":60,"bikeId":"12975","endDate":1420796880,"endStationId":"441","endStationName":"Sail Street, Vauxhall","startDate":1420796820,"startStationId":"139","startStationName":"Lambeth Road, Vauxhall"}, +{"_id":"40447499","duration":780,"bikeId":"10864","endDate":1420797060,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1420796280,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40447660","duration":540,"bikeId":"6797","endDate":1420797180,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1420796640,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"40447520","duration":1020,"bikeId":"4810","endDate":1420797360,"endStationId":"366","endStationName":"Millennium Hotel, Mayfair","startDate":1420796340,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40447433","duration":1440,"bikeId":"12242","endDate":1420797540,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1420796100,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40447498","duration":1440,"bikeId":"11379","endDate":1420797720,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1420796280,"startStationId":"741","startStationName":"Freston Road, Avondale"}, +{"_id":"40447951","duration":420,"bikeId":"3047","endDate":1420797900,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1420797480,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40447648","duration":1500,"bikeId":"2416","endDate":1420798140,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1420796640,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40448033","duration":600,"bikeId":"1407","endDate":1420798380,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1420797780,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40448169","duration":300,"bikeId":"9654","endDate":1420798620,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1420798320,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40448109","duration":780,"bikeId":"1110","endDate":1420798860,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1420798080,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40448188","duration":780,"bikeId":"9861","endDate":1420799160,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1420798380,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40448102","duration":1320,"bikeId":"1397","endDate":1420799400,"endStationId":"174","endStationName":"Strand, Strand","startDate":1420798080,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40448395","duration":540,"bikeId":"1879","endDate":1420799760,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1420799220,"startStationId":"590","startStationName":"Greenberry Street, St.John's Wood"}, +{"_id":"40448330","duration":1020,"bikeId":"9609","endDate":1420800000,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1420798980,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40448461","duration":840,"bikeId":"2699","endDate":1420800360,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1420799520,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"40448639","duration":300,"bikeId":"8002","endDate":1420800600,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1420800300,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40448585","duration":900,"bikeId":"12996","endDate":1420800900,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1420800000,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40448722","duration":720,"bikeId":"2278","endDate":1420801320,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1420800600,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40448731","duration":960,"bikeId":"12720","endDate":1420801620,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1420800660,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40448797","duration":960,"bikeId":"8870","endDate":1420801920,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1420800960,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40448918","duration":720,"bikeId":"10321","endDate":1420802280,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1420801560,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40449058","duration":480,"bikeId":"655","endDate":1420802580,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1420802100,"startStationId":"176","startStationName":"Gloucester Terrace, Bayswater"}, +{"_id":"40449132","duration":300,"bikeId":"2467","endDate":1420802820,"endStationId":"659","endStationName":"Grant Road West, Clapham Junction","startDate":1420802520,"startStationId":"623","startStationName":"Nantes Close, Wandsworth"}, +{"_id":"40448940","duration":1620,"bikeId":"5384","endDate":1420803300,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1420801680,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40448901","duration":2100,"bikeId":"7826","endDate":1420803600,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1420801500,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40449242","duration":960,"bikeId":"10168","endDate":1420803960,"endStationId":"482","endStationName":"Thornfield House, Poplar","startDate":1420803000,"startStationId":"721","startStationName":"Wendon Street, Old Ford"}, +{"_id":"40449156","duration":1560,"bikeId":"10289","endDate":1420804140,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1420802580,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40449421","duration":660,"bikeId":"10642","endDate":1420804380,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1420803720,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40449430","duration":900,"bikeId":"5815","endDate":1420804620,"endStationId":"497","endStationName":"Coborn Street, Mile End","startDate":1420803720,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40449332","duration":1440,"bikeId":"2942","endDate":1420804860,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1420803420,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40449712","duration":300,"bikeId":"4234","endDate":1420805160,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1420804860,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"40449484","duration":1500,"bikeId":"6205","endDate":1420805400,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1420803900,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"40449849","duration":420,"bikeId":"11741","endDate":1420805760,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1420805340,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40449490","duration":2040,"bikeId":"4690","endDate":1420806000,"endStationId":"612","endStationName":"Wandsworth Rd, Isley Court, Wandsworth Road","startDate":1420803960,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40450013","duration":300,"bikeId":"2847","endDate":1420806180,"endStationId":"527","endStationName":"Hansard Mews, Shepherds Bush","startDate":1420805880,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40450123","duration":240,"bikeId":"2343","endDate":1420806420,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1420806180,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40450252","duration":120,"bikeId":"8003","endDate":1420806720,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1420806600,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"40450136","duration":660,"bikeId":"11294","endDate":1420806900,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1420806240,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40450311","duration":300,"bikeId":"1838","endDate":1420807080,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1420806780,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40450388","duration":240,"bikeId":"11521","endDate":1420807320,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1420807080,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"40449972","duration":1800,"bikeId":"8168","endDate":1420807500,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1420805700,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40450312","duration":960,"bikeId":"752","endDate":1420807740,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1420806780,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40450597","duration":240,"bikeId":"6198","endDate":1420807980,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1420807740,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"40450533","duration":600,"bikeId":"12804","endDate":1420808160,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1420807560,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40450774","duration":180,"bikeId":"11335","endDate":1420808400,"endStationId":"355","endStationName":"Oval Way, Lambeth","startDate":1420808220,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40450528","duration":1020,"bikeId":"1850","endDate":1420808580,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1420807560,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40450819","duration":420,"bikeId":"9055","endDate":1420808820,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1420808400,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40450841","duration":540,"bikeId":"7861","endDate":1420809000,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1420808460,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"40451015","duration":180,"bikeId":"11324","endDate":1420809180,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420809000,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40451095","duration":120,"bikeId":"3639","endDate":1420809360,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1420809240,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40451113","duration":240,"bikeId":"9871","endDate":1420809540,"endStationId":"623","endStationName":"Nantes Close, Wandsworth","startDate":1420809300,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"40451193","duration":120,"bikeId":"1247","endDate":1420809780,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1420809660,"startStationId":"560","startStationName":"Ladbroke Grove Central, Notting Hill"}, +{"_id":"40451145","duration":540,"bikeId":"5792","endDate":1420809960,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1420809420,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40451114","duration":900,"bikeId":"9283","endDate":1420810200,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1420809300,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40451393","duration":120,"bikeId":"797","endDate":1420810380,"endStationId":"515","endStationName":"Russell Gardens, Holland Park","startDate":1420810260,"startStationId":"527","startStationName":"Hansard Mews, Shepherds Bush"}, +{"_id":"40450436","duration":3360,"bikeId":"3581","endDate":1420810620,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1420807260,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40451319","duration":840,"bikeId":"10875","endDate":1420810860,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1420810020,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40451571","duration":300,"bikeId":"6777","endDate":1420811100,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1420810800,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"40451401","duration":1020,"bikeId":"8108","endDate":1420811280,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1420810260,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40451658","duration":480,"bikeId":"5208","endDate":1420811520,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420811040,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40451646","duration":720,"bikeId":"2168","endDate":1420811760,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1420811040,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40451701","duration":780,"bikeId":"7262","endDate":1420812000,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1420811220,"startStationId":"209","startStationName":"Denyer Street, Knightsbridge"}, +{"_id":"40451740","duration":840,"bikeId":"4451","endDate":1420812180,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1420811340,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40451774","duration":900,"bikeId":"13035","endDate":1420812360,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1420811460,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40451543","duration":1800,"bikeId":"2630","endDate":1420812540,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1420810740,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"40452060","duration":420,"bikeId":"3046","endDate":1420812780,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1420812360,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40452056","duration":660,"bikeId":"7143","endDate":1420813020,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1420812360,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40452147","duration":600,"bikeId":"8677","endDate":1420813260,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1420812660,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40451970","duration":1380,"bikeId":"10023","endDate":1420813440,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1420812060,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40452352","duration":360,"bikeId":"10457","endDate":1420813680,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1420813320,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40452253","duration":960,"bikeId":"11702","endDate":1420813980,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1420813020,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40452479","duration":480,"bikeId":"8552","endDate":1420814220,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1420813740,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40452404","duration":1020,"bikeId":"766","endDate":1420814460,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1420813440,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40452621","duration":480,"bikeId":"8875","endDate":1420814760,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1420814280,"startStationId":"208","startStationName":"Mallory Street, Marylebone"}, +{"_id":"40452526","duration":1080,"bikeId":"2718","endDate":1420815000,"endStationId":"743","endStationName":"Oxford Road, Putney","startDate":1420813920,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"40452800","duration":480,"bikeId":"7231","endDate":1420815300,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1420814820,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"40452935","duration":180,"bikeId":"8584","endDate":1420815540,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1420815360,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40452958","duration":420,"bikeId":"12307","endDate":1420815840,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1420815420,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"40453060","duration":240,"bikeId":"7605","endDate":1420816020,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1420815780,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40452822","duration":1260,"bikeId":"6649","endDate":1420816260,"endStationId":"726","endStationName":"Alfreda Street, Battersea Park","startDate":1420815000,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40452963","duration":1080,"bikeId":"4913","endDate":1420816500,"endStationId":"60","endStationName":"Lisson Grove, St. John's Wood","startDate":1420815420,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40453130","duration":720,"bikeId":"23","endDate":1420816740,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1420816020,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40453110","duration":1020,"bikeId":"6169","endDate":1420816980,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1420815960,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40453354","duration":420,"bikeId":"10118","endDate":1420817220,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1420816800,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40453450","duration":300,"bikeId":"6670","endDate":1420817460,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420817160,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40453226","duration":1380,"bikeId":"4518","endDate":1420817700,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1420816320,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40453490","duration":600,"bikeId":"3986","endDate":1420817940,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420817340,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40453651","duration":300,"bikeId":"12260","endDate":1420818180,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1420817880,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40453719","duration":300,"bikeId":"4292","endDate":1420818420,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1420818120,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"40453653","duration":780,"bikeId":"720","endDate":1420818660,"endStationId":"612","endStationName":"Wandsworth Rd, Isley Court, Wandsworth Road","startDate":1420817880,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40453838","duration":240,"bikeId":"5380","endDate":1420818840,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1420818600,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40453621","duration":1260,"bikeId":"11351","endDate":1420819080,"endStationId":"507","endStationName":"Clarkson Street, Bethnal Green","startDate":1420817820,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40453927","duration":360,"bikeId":"628","endDate":1420819320,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1420818960,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40454078","duration":180,"bikeId":"1655","endDate":1420819620,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1420819440,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"40447482","duration":23580,"bikeId":"12119","endDate":1420819800,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1420796220,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40453583","duration":2280,"bikeId":"2262","endDate":1420819980,"endStationId":"466","endStationName":"Whiston Road, Haggerston","startDate":1420817700,"startStationId":"466","startStationName":"Whiston Road, Haggerston"}, +{"_id":"40453881","duration":1440,"bikeId":"7924","endDate":1420820220,"endStationId":"765","endStationName":"Ranelagh Gardens, Fulham","startDate":1420818780,"startStationId":"750","startStationName":"Culvert Road, Battersea"}, +{"_id":"40454289","duration":360,"bikeId":"2753","endDate":1420820460,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1420820100,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40454301","duration":480,"bikeId":"4703","endDate":1420820640,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420820160,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40454231","duration":960,"bikeId":"5605","endDate":1420820880,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1420819920,"startStationId":"172","startStationName":"Sumner Place, South Kensington"}, +{"_id":"40454363","duration":720,"bikeId":"12622","endDate":1420821060,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1420820340,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40454334","duration":1140,"bikeId":"12287","endDate":1420821360,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1420820220,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"40454591","duration":480,"bikeId":"10561","endDate":1420821600,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420821120,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40454269","duration":1740,"bikeId":"2998","endDate":1420821780,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1420820040,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40454648","duration":660,"bikeId":"12175","endDate":1420821900,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1420821240,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40454737","duration":660,"bikeId":"9989","endDate":1420822140,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1420821480,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40454861","duration":540,"bikeId":"2375","endDate":1420822320,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1420821780,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40454502","duration":1620,"bikeId":"11703","endDate":1420822440,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1420820820,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40454881","duration":720,"bikeId":"3541","endDate":1420822560,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1420821840,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"40454974","duration":720,"bikeId":"9147","endDate":1420822740,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420822020,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"40455014","duration":780,"bikeId":"11412","endDate":1420822920,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1420822140,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40455091","duration":780,"bikeId":"9547","endDate":1420823100,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1420822320,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40455083","duration":900,"bikeId":"9258","endDate":1420823220,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420822320,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40455142","duration":900,"bikeId":"3866","endDate":1420823400,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1420822500,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40455252","duration":780,"bikeId":"8702","endDate":1420823520,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1420822740,"startStationId":"550","startStationName":"Harford Street, Mile End"}, +{"_id":"40455423","duration":540,"bikeId":"5558","endDate":1420823640,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1420823100,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40455519","duration":540,"bikeId":"1678","endDate":1420823760,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1420823220,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40455765","duration":240,"bikeId":"665","endDate":1420823880,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1420823640,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40455693","duration":480,"bikeId":"3033","endDate":1420824000,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1420823520,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40455524","duration":900,"bikeId":"9864","endDate":1420824120,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420823220,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40455737","duration":660,"bikeId":"11062","endDate":1420824240,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1420823580,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40455848","duration":600,"bikeId":"885","endDate":1420824360,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1420823760,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40455799","duration":780,"bikeId":"7807","endDate":1420824480,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1420823700,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40455854","duration":840,"bikeId":"10005","endDate":1420824600,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1420823760,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40456200","duration":420,"bikeId":"7671","endDate":1420824720,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1420824300,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40456148","duration":660,"bikeId":"5155","endDate":1420824840,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1420824180,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40456277","duration":540,"bikeId":"12824","endDate":1420824960,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1420824420,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40456239","duration":720,"bikeId":"3573","endDate":1420825080,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1420824360,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40456325","duration":660,"bikeId":"1724","endDate":1420825140,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1420824480,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40456472","duration":540,"bikeId":"10537","endDate":1420825260,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1420824720,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40454986","duration":3240,"bikeId":"9626","endDate":1420825320,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420822080,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40456491","duration":660,"bikeId":"5243","endDate":1420825440,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1420824780,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40456823","duration":360,"bikeId":"10558","endDate":1420825500,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1420825140,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40456931","duration":360,"bikeId":"2675","endDate":1420825620,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1420825260,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40456868","duration":480,"bikeId":"45","endDate":1420825680,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1420825200,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40456378","duration":1140,"bikeId":"4172","endDate":1420825740,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1420824600,"startStationId":"665","startStationName":"Smugglers Way, Wandsworth"}, +{"_id":"40457208","duration":240,"bikeId":"10035","endDate":1420825860,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420825620,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40456934","duration":660,"bikeId":"10915","endDate":1420825920,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1420825260,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40456804","duration":840,"bikeId":"2595","endDate":1420825980,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1420825140,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"40456710","duration":1080,"bikeId":"10912","endDate":1420826100,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1420825020,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40456684","duration":1140,"bikeId":"2732","endDate":1420826160,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1420825020,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40457064","duration":840,"bikeId":"795","endDate":1420826280,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420825440,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"40457084","duration":900,"bikeId":"10524","endDate":1420826340,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1420825440,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40457584","duration":360,"bikeId":"5235","endDate":1420826460,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1420826100,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40454328","duration":6300,"bikeId":"3275","endDate":1420826520,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1420820220,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"40457312","duration":900,"bikeId":"11122","endDate":1420826640,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1420825740,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40457306","duration":960,"bikeId":"9230","endDate":1420826700,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1420825740,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40457680","duration":600,"bikeId":"12492","endDate":1420826820,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420826220,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40456998","duration":1560,"bikeId":"3612","endDate":1420826940,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1420825380,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40457172","duration":1440,"bikeId":"10508","endDate":1420827000,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1420825560,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40457479","duration":1200,"bikeId":"12333","endDate":1420827120,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1420825920,"startStationId":"556","startStationName":"Heron Quays DLR, Canary Wharf"}, +{"_id":"40457566","duration":1140,"bikeId":"2125","endDate":1420827180,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1420826040,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40457831","duration":780,"bikeId":"8666","endDate":1420827240,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1420826460,"startStationId":"276","startStationName":"Lower Thames Street, Monument"}, +{"_id":"40457515","duration":1380,"bikeId":"4623","endDate":1420827360,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1420825980,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40457464","duration":1500,"bikeId":"8727","endDate":1420827420,"endStationId":"171","endStationName":"Collingham Gardens, Earl's Court","startDate":1420825920,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40458152","duration":660,"bikeId":"12667","endDate":1420827540,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1420826880,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40457540","duration":1560,"bikeId":"6011","endDate":1420827600,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1420826040,"startStationId":"592","startStationName":"Bishop's Bridge Road East, Bayswater"}, +{"_id":"40458099","duration":840,"bikeId":"11184","endDate":1420827660,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1420826820,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40458239","duration":780,"bikeId":"7375","endDate":1420827780,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1420827000,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40458406","duration":660,"bikeId":"10751","endDate":1420827900,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1420827240,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40458652","duration":300,"bikeId":"3863","endDate":1420827960,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1420827660,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40458363","duration":900,"bikeId":"3638","endDate":1420828080,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1420827180,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40458315","duration":1080,"bikeId":"10602","endDate":1420828200,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1420827120,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"40458905","duration":240,"bikeId":"11874","endDate":1420828320,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1420828080,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40458041","duration":1740,"bikeId":"12726","endDate":1420828440,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1420826700,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40458469","duration":1140,"bikeId":"12800","endDate":1420828500,"endStationId":"590","endStationName":"Greenberry Street, St.John's Wood","startDate":1420827360,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"40459044","duration":300,"bikeId":"6081","endDate":1420828620,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1420828320,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40458713","duration":960,"bikeId":"5222","endDate":1420828680,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1420827720,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40458881","duration":780,"bikeId":"3863","endDate":1420828800,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420828020,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40459205","duration":360,"bikeId":"8231","endDate":1420828920,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1420828560,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40459289","duration":300,"bikeId":"8947","endDate":1420829040,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1420828740,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40459248","duration":540,"bikeId":"11964","endDate":1420829160,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1420828620,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"40459137","duration":840,"bikeId":"9617","endDate":1420829280,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420828440,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40459164","duration":900,"bikeId":"1362","endDate":1420829400,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1420828500,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"40459373","duration":660,"bikeId":"7052","endDate":1420829520,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1420828860,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40459539","duration":480,"bikeId":"8755","endDate":1420829700,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1420829220,"startStationId":"734","startStationName":"Plough Terrace, Clapham Junction"}, +{"_id":"40458855","duration":1920,"bikeId":"5750","endDate":1420829880,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1420827960,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40459477","duration":900,"bikeId":"7000","endDate":1420830000,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1420829100,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40459516","duration":960,"bikeId":"7179","endDate":1420830120,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1420829160,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40459525","duration":1080,"bikeId":"2678","endDate":1420830240,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1420829160,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40459807","duration":600,"bikeId":"9411","endDate":1420830420,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1420829820,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40459356","duration":1740,"bikeId":"7675","endDate":1420830600,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1420828860,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40459963","duration":480,"bikeId":"1883","endDate":1420830720,"endStationId":"750","endStationName":"Culvert Road, Battersea","startDate":1420830240,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"40459908","duration":900,"bikeId":"753","endDate":1420830960,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1420830060,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40459666","duration":1560,"bikeId":"11362","endDate":1420831080,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1420829520,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40459976","duration":960,"bikeId":"12289","endDate":1420831260,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1420830300,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40459929","duration":1320,"bikeId":"2042","endDate":1420831440,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1420830120,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40460215","duration":720,"bikeId":"6892","endDate":1420831560,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1420830840,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40460305","duration":660,"bikeId":"2899","endDate":1420831800,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1420831140,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40460314","duration":780,"bikeId":"4509","endDate":1420831920,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1420831140,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40459419","duration":3180,"bikeId":"12164","endDate":1420832160,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1420828980,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"40459508","duration":3180,"bikeId":"9976","endDate":1420832340,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1420829160,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"40460522","duration":840,"bikeId":"3042","endDate":1420832520,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1420831680,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40460766","duration":180,"bikeId":"7405","endDate":1420832760,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1420832580,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40460780","duration":300,"bikeId":"7146","endDate":1420832940,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1420832640,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40460870","duration":180,"bikeId":"4363","endDate":1420833180,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1420833000,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40460609","duration":1380,"bikeId":"8761","endDate":1420833420,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1420832040,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40460974","duration":300,"bikeId":"12927","endDate":1420833660,"endStationId":"8","endStationName":"Lodge Road, St. John's Wood","startDate":1420833360,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40461029","duration":300,"bikeId":"6261","endDate":1420833900,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1420833600,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40460985","duration":780,"bikeId":"9150","endDate":1420834200,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1420833420,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40460717","duration":2100,"bikeId":"1503","endDate":1420834500,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1420832400,"startStationId":"556","startStationName":"Heron Quays DLR, Canary Wharf"}, +{"_id":"40461258","duration":180,"bikeId":"11119","endDate":1420834800,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1420834620,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40461299","duration":300,"bikeId":"11910","endDate":1420835100,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1420834800,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"40461339","duration":420,"bikeId":"3846","endDate":1420835460,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1420835040,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40461462","duration":180,"bikeId":"9752","endDate":1420835760,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1420835580,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40461451","duration":540,"bikeId":"4630","endDate":1420836060,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1420835520,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40461370","duration":1260,"bikeId":"6886","endDate":1420836420,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1420835160,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40461289","duration":2040,"bikeId":"1334","endDate":1420836780,"endStationId":"523","endStationName":"Langdon Park, Poplar","startDate":1420834740,"startStationId":"523","startStationName":"Langdon Park, Poplar"}, +{"_id":"40461561","duration":960,"bikeId":"6817","endDate":1420837080,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1420836120,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40461734","duration":420,"bikeId":"6732","endDate":1420837500,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1420837080,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40461795","duration":480,"bikeId":"11020","endDate":1420837860,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1420837380,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40461834","duration":600,"bikeId":"3001","endDate":1420838340,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1420837740,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40461914","duration":600,"bikeId":"4968","endDate":1420838760,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1420838160,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40461878","duration":1260,"bikeId":"10625","endDate":1420839180,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1420837920,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40462054","duration":360,"bikeId":"9914","endDate":1420839600,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1420839240,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40462129","duration":360,"bikeId":"8181","endDate":1420840140,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1420839780,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40462132","duration":1140,"bikeId":"7314","endDate":1420840920,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1420839780,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40462249","duration":480,"bikeId":"9365","endDate":1420841460,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1420840980,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40462355","duration":300,"bikeId":"2418","endDate":1420841940,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1420841640,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40462351","duration":840,"bikeId":"5858","endDate":1420842480,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1420841640,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"40462257","duration":1980,"bikeId":"8825","endDate":1420843020,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1420841040,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40459408","duration":14640,"bikeId":"11810","endDate":1420843560,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1420828920,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40462515","duration":1260,"bikeId":"9930","endDate":1420844100,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1420842840,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"40462678","duration":480,"bikeId":"7684","endDate":1420844640,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1420844160,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40462786","duration":360,"bikeId":"8080","endDate":1420845240,"endStationId":"623","endStationName":"Nantes Close, Wandsworth","startDate":1420844880,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"40462675","duration":1500,"bikeId":"4534","endDate":1420845660,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1420844160,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40462881","duration":420,"bikeId":"7642","endDate":1420846080,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1420845660,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"40463009","duration":180,"bikeId":"10176","endDate":1420846680,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1420846500,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40454679","duration":25800,"bikeId":"2325","endDate":1420847100,"endStationId":"247","endStationName":"St. John's Wood Church, Regent's Park","startDate":1420821300,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"40463025","duration":840,"bikeId":"466","endDate":1420847580,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1420846740,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40463162","duration":360,"bikeId":"3783","endDate":1420848240,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1420847880,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40463239","duration":360,"bikeId":"9006","endDate":1420848900,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1420848540,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40463255","duration":780,"bikeId":"8850","endDate":1420849500,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1420848720,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40463369","duration":540,"bikeId":"51","endDate":1420850040,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1420849500,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"40463387","duration":960,"bikeId":"12775","endDate":1420850640,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1420849680,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40463454","duration":1140,"bikeId":"5009","endDate":1420851360,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1420850220,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40463445","duration":1740,"bikeId":"12506","endDate":1420851900,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1420850160,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"40463359","duration":3300,"bikeId":"5714","endDate":1420852680,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420849380,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40463745","duration":600,"bikeId":"11276","endDate":1420853460,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1420852860,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40463720","duration":1560,"bikeId":"5238","endDate":1420854120,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1420852560,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40463798","duration":1380,"bikeId":"8165","endDate":1420855020,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1420853640,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40463946","duration":420,"bikeId":"8973","endDate":1420855920,"endStationId":"726","endStationName":"Alfreda Street, Battersea Park","startDate":1420855500,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40462236","duration":15900,"bikeId":"4222","endDate":1420856760,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1420840860,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40464047","duration":600,"bikeId":"5662","endDate":1420857720,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1420857120,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40464003","duration":2640,"bikeId":"5277","endDate":1420859040,"endStationId":"609","endStationName":"Sugden Road, Battersea","startDate":1420856400,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40464162","duration":1020,"bikeId":"2745","endDate":1420860540,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1420859520,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"40464253","duration":420,"bikeId":"8892","endDate":1420862040,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1420861620,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"40464199","duration":3840,"bikeId":"2020","endDate":1420864020,"endStationId":"455","endStationName":"East Ferry Road, Cubitt Town","startDate":1420860180,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40464372","duration":900,"bikeId":"12601","endDate":1420866660,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1420865760,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"40464438","duration":540,"bikeId":"2418","endDate":1420870140,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1420869600,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40464497","duration":720,"bikeId":"7313","endDate":1420873560,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1420872840,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40464557","duration":1020,"bikeId":"5442","endDate":1420875900,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1420874880,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40464638","duration":360,"bikeId":"739","endDate":1420876920,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1420876560,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40464697","duration":660,"bikeId":"3086","endDate":1420878420,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1420877760,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"40464761","duration":840,"bikeId":"9182","endDate":1420879260,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1420878420,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40464924","duration":120,"bikeId":"6806","endDate":1420879920,"endStationId":"763","endStationName":"Mile End Park Leisure Centre, Mile End","startDate":1420879800,"startStationId":"467","startStationName":"Southern Grove, Bow"}, +{"_id":"40464883","duration":900,"bikeId":"2235","endDate":1420880400,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1420879500,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"40465027","duration":300,"bikeId":"12947","endDate":1420880880,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1420880580,"startStationId":"297","startStationName":"Geraldine Street, Elephant & Castle"}, +{"_id":"40464950","duration":1440,"bikeId":"5686","endDate":1420881420,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1420879980,"startStationId":"714","startStationName":"Stewart's Road, Nine Elms"}, +{"_id":"40465164","duration":300,"bikeId":"11502","endDate":1420881960,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1420881660,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40465207","duration":600,"bikeId":"2128","endDate":1420882440,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1420881840,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40465190","duration":1080,"bikeId":"5175","endDate":1420882860,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1420881780,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40465315","duration":780,"bikeId":"10454","endDate":1420883280,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1420882500,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40465491","duration":300,"bikeId":"12998","endDate":1420883640,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1420883340,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40465558","duration":300,"bikeId":"7825","endDate":1420883940,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1420883640,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40465612","duration":360,"bikeId":"9738","endDate":1420884240,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1420883880,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40464937","duration":4620,"bikeId":"12879","endDate":1420884540,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1420879920,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40465739","duration":420,"bikeId":"13032","endDate":1420884900,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1420884480,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40465832","duration":300,"bikeId":"2235","endDate":1420885200,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1420884900,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"40465916","duration":360,"bikeId":"3538","endDate":1420885560,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1420885200,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40466043","duration":180,"bikeId":"696","endDate":1420885860,"endStationId":"442","endStationName":"Walmer Road, Notting Hill","startDate":1420885680,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"40465845","duration":1140,"bikeId":"5207","endDate":1420886100,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1420884960,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40465953","duration":960,"bikeId":"10794","endDate":1420886340,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1420885380,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40465938","duration":1260,"bikeId":"8829","endDate":1420886580,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1420885320,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40466152","duration":780,"bikeId":"11188","endDate":1420886940,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1420886160,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40466301","duration":360,"bikeId":"12625","endDate":1420887240,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1420886880,"startStationId":"547","startStationName":"East India DLR, Blackwall"}, +{"_id":"40466255","duration":900,"bikeId":"6331","endDate":1420887540,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1420886640,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40466429","duration":360,"bikeId":"11815","endDate":1420887780,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1420887420,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40464977","duration":8040,"bikeId":"2268","endDate":1420888200,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1420880160,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40466334","duration":1560,"bikeId":"12613","endDate":1420888620,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1420887060,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40466576","duration":540,"bikeId":"4170","endDate":1420889040,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1420888500,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40466705","duration":240,"bikeId":"4790","endDate":1420889400,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1420889160,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40466777","duration":300,"bikeId":"7872","endDate":1420889820,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1420889520,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40466946","duration":180,"bikeId":"4066","endDate":1420890180,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1420890000,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40466976","duration":300,"bikeId":"4718","endDate":1420890420,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1420890120,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"40466975","duration":480,"bikeId":"5831","endDate":1420890600,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1420890120,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40466848","duration":1140,"bikeId":"2634","endDate":1420890900,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1420889760,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40467002","duration":900,"bikeId":"877","endDate":1420891080,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1420890180,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40466873","duration":1440,"bikeId":"828","endDate":1420891260,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1420889820,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40467165","duration":720,"bikeId":"3029","endDate":1420891500,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1420890780,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40467121","duration":1020,"bikeId":"1689","endDate":1420891680,"endStationId":"556","endStationName":"Heron Quays DLR, Canary Wharf","startDate":1420890660,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40467225","duration":1020,"bikeId":"9439","endDate":1420891980,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1420890960,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40467271","duration":1140,"bikeId":"13009","endDate":1420892220,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1420891080,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"40467505","duration":600,"bikeId":"5100","endDate":1420892460,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1420891860,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40467564","duration":720,"bikeId":"3047","endDate":1420892700,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1420891980,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40467651","duration":720,"bikeId":"9233","endDate":1420892940,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1420892220,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40467867","duration":180,"bikeId":"11022","endDate":1420893180,"endStationId":"618","endStationName":"Eel Brook Common, Walham Green","startDate":1420893000,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40467789","duration":720,"bikeId":"9723","endDate":1420893420,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1420892700,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40467934","duration":420,"bikeId":"11292","endDate":1420893600,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1420893180,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40467819","duration":960,"bikeId":"8727","endDate":1420893780,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1420892820,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40468109","duration":420,"bikeId":"10748","endDate":1420894020,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1420893600,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40467897","duration":1200,"bikeId":"993","endDate":1420894260,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1420893060,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"40468086","duration":900,"bikeId":"7750","endDate":1420894440,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1420893540,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40468406","duration":300,"bikeId":"5328","endDate":1420894620,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1420894320,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40467999","duration":1500,"bikeId":"2928","endDate":1420894860,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1420893360,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40468670","duration":0,"bikeId":"190","endDate":1420894980,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1420894980,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40468389","duration":900,"bikeId":"2071","endDate":1420895220,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1420894320,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"40468191","duration":1500,"bikeId":"9723","endDate":1420895340,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1420893840,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40468247","duration":1560,"bikeId":"797","endDate":1420895520,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1420893960,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40468574","duration":900,"bikeId":"12785","endDate":1420895700,"endStationId":"352","endStationName":"Vauxhall Street, Vauxhall","startDate":1420894800,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40468598","duration":1020,"bikeId":"2954","endDate":1420895880,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1420894860,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"40468365","duration":1740,"bikeId":"7390","endDate":1420896000,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1420894260,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40468977","duration":420,"bikeId":"4103","endDate":1420896180,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1420895760,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40468739","duration":1200,"bikeId":"8631","endDate":1420896360,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1420895160,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40467994","duration":3180,"bikeId":"8263","endDate":1420896540,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420893360,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40469000","duration":780,"bikeId":"6618","endDate":1420896660,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1420895880,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40469166","duration":540,"bikeId":"8715","endDate":1420896840,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1420896300,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40469161","duration":780,"bikeId":"349","endDate":1420897020,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1420896240,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40469429","duration":300,"bikeId":"12859","endDate":1420897140,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1420896840,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40469463","duration":420,"bikeId":"343","endDate":1420897320,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1420896900,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40469532","duration":420,"bikeId":"8176","endDate":1420897500,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1420897080,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40469372","duration":960,"bikeId":"10397","endDate":1420897680,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1420896720,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40469511","duration":780,"bikeId":"4630","endDate":1420897800,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1420897020,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40469578","duration":840,"bikeId":"10887","endDate":1420897980,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1420897140,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40469956","duration":60,"bikeId":"10616","endDate":1420898160,"endStationId":"634","endStationName":"Brook Green South, Brook Green","startDate":1420898100,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"40469483","duration":1320,"bikeId":"7319","endDate":1420898280,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1420896960,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40469268","duration":1980,"bikeId":"7446","endDate":1420898460,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1420896480,"startStationId":"765","startStationName":"Ranelagh Gardens, Fulham"}, +{"_id":"40469460","duration":1740,"bikeId":"3269","endDate":1420898640,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1420896900,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40470043","duration":540,"bikeId":"11078","endDate":1420898820,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1420898280,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40470033","duration":720,"bikeId":"12224","endDate":1420899000,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1420898280,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40464335","duration":34800,"bikeId":"10383","endDate":1420899180,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1420864380,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40470154","duration":720,"bikeId":"7304","endDate":1420899360,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1420898640,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40470035","duration":1200,"bikeId":"11505","endDate":1420899480,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1420898280,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40470219","duration":960,"bikeId":"9","endDate":1420899720,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1420898760,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"40470349","duration":780,"bikeId":"431","endDate":1420899900,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1420899120,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40470665","duration":240,"bikeId":"2032","endDate":1420900080,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1420899840,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"40470759","duration":240,"bikeId":"11560","endDate":1420900260,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1420900020,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"40470288","duration":1440,"bikeId":"10022","endDate":1420900380,"endStationId":"174","endStationName":"Strand, Strand","startDate":1420898940,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"40470136","duration":1980,"bikeId":"2302","endDate":1420900560,"endStationId":"174","endStationName":"Strand, Strand","startDate":1420898580,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"40470513","duration":1260,"bikeId":"12125","endDate":1420900740,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1420899480,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"40470875","duration":480,"bikeId":"3352","endDate":1420900860,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1420900380,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"40470911","duration":600,"bikeId":"9300","endDate":1420901040,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1420900440,"startStationId":"363","startStationName":"Lord's, St. John's Wood"}, +{"_id":"40470521","duration":1740,"bikeId":"7828","endDate":1420901220,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1420899480,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"40471176","duration":360,"bikeId":"10427","endDate":1420901400,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1420901040,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"40471150","duration":540,"bikeId":"10303","endDate":1420901520,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1420900980,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40470896","duration":1320,"bikeId":"12645","endDate":1420901700,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420900380,"startStationId":"759","startStationName":"Broadley Terrace, Marylebone"}, +{"_id":"40471372","duration":360,"bikeId":"6207","endDate":1420901820,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1420901460,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40471477","duration":240,"bikeId":"2945","endDate":1420902060,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1420901820,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40469827","duration":4440,"bikeId":"10021","endDate":1420902180,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1420897740,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40471511","duration":420,"bikeId":"10847","endDate":1420902360,"endStationId":"317","endStationName":"Dickens Square, Borough","startDate":1420901940,"startStationId":"139","startStationName":"Lambeth Road, Vauxhall"}, +{"_id":"40471524","duration":540,"bikeId":"10577","endDate":1420902540,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1420902000,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40471697","duration":300,"bikeId":"8222","endDate":1420902720,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1420902420,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40471775","duration":300,"bikeId":"2540","endDate":1420902900,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420902600,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40471682","duration":720,"bikeId":"12198","endDate":1420903080,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1420902360,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"40471854","duration":420,"bikeId":"9397","endDate":1420903200,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1420902780,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"40472024","duration":240,"bikeId":"11537","endDate":1420903380,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1420903140,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40471945","duration":600,"bikeId":"9267","endDate":1420903560,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1420902960,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40472132","duration":360,"bikeId":"819","endDate":1420903740,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1420903380,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40472209","duration":360,"bikeId":"7561","endDate":1420903920,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1420903560,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"40472144","duration":600,"bikeId":"7565","endDate":1420904040,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1420903440,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40471915","duration":1320,"bikeId":"6370","endDate":1420904220,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1420902900,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40472470","duration":180,"bikeId":"7222","endDate":1420904400,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1420904220,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"40472415","duration":480,"bikeId":"9755","endDate":1420904580,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420904100,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40472301","duration":960,"bikeId":"4171","endDate":1420904760,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1420903800,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40471643","duration":2640,"bikeId":"1363","endDate":1420904940,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1420902300,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40472534","duration":720,"bikeId":"4835","endDate":1420905060,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1420904340,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40472463","duration":1080,"bikeId":"9447","endDate":1420905240,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1420904160,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40472791","duration":480,"bikeId":"9759","endDate":1420905420,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1420904940,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40472884","duration":420,"bikeId":"12376","endDate":1420905600,"endStationId":"683","endStationName":"Dorothy Road, Clapham Junction","startDate":1420905180,"startStationId":"690","startStationName":"Stanley Grove, Battersea"}, +{"_id":"40472825","duration":720,"bikeId":"11748","endDate":1420905780,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1420905060,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"40472697","duration":1200,"bikeId":"11455","endDate":1420905960,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1420904760,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40472875","duration":900,"bikeId":"7395","endDate":1420906080,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1420905180,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40473079","duration":540,"bikeId":"8746","endDate":1420906200,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1420905660,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40473095","duration":660,"bikeId":"6766","endDate":1420906380,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1420905720,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"40473372","duration":180,"bikeId":"6713","endDate":1420906560,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1420906380,"startStationId":"208","startStationName":"Mallory Street, Marylebone"}, +{"_id":"40473302","duration":480,"bikeId":"12757","endDate":1420906740,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1420906260,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40473347","duration":540,"bikeId":"129","endDate":1420906920,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1420906380,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"40471734","duration":4500,"bikeId":"8429","endDate":1420907040,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1420902540,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40473585","duration":300,"bikeId":"6163","endDate":1420907220,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1420906920,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40473598","duration":420,"bikeId":"2043","endDate":1420907400,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1420906980,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40473617","duration":480,"bikeId":"12011","endDate":1420907520,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1420907040,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40473757","duration":300,"bikeId":"7491","endDate":1420907700,"endStationId":"497","endStationName":"Coborn Street, Mile End","startDate":1420907400,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40473816","duration":300,"bikeId":"2424","endDate":1420907880,"endStationId":"212","endStationName":"Campden Hill Road, Notting Hill","startDate":1420907580,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"40473632","duration":1020,"bikeId":"7242","endDate":1420908060,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1420907040,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40473712","duration":900,"bikeId":"6483","endDate":1420908180,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1420907280,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"40473737","duration":1020,"bikeId":"6453","endDate":1420908360,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1420907340,"startStationId":"466","startStationName":"Whiston Road, Haggerston"}, +{"_id":"40473691","duration":1260,"bikeId":"143","endDate":1420908480,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1420907220,"startStationId":"276","startStationName":"Lower Thames Street, Monument"}, +{"_id":"40473715","duration":1440,"bikeId":"7205","endDate":1420908720,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1420907280,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40474260","duration":120,"bikeId":"626","endDate":1420908960,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1420908840,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40473775","duration":1620,"bikeId":"10119","endDate":1420909080,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1420907460,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40473810","duration":1680,"bikeId":"8794","endDate":1420909260,"endStationId":"171","endStationName":"Collingham Gardens, Earl's Court","startDate":1420907580,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40473450","duration":2880,"bikeId":"1888","endDate":1420909440,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1420906560,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40473855","duration":1920,"bikeId":"2809","endDate":1420909560,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1420907640,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40474491","duration":240,"bikeId":"6427","endDate":1420909740,"endStationId":"550","endStationName":"Harford Street, Mile End","startDate":1420909500,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"40474340","duration":840,"bikeId":"1021","endDate":1420909920,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1420909080,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40474475","duration":660,"bikeId":"12958","endDate":1420910100,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1420909440,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40474601","duration":540,"bikeId":"12645","endDate":1420910340,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1420909800,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40474522","duration":1020,"bikeId":"9214","endDate":1420910580,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1420909560,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"40474834","duration":240,"bikeId":"10471","endDate":1420910760,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1420910520,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"40474631","duration":1020,"bikeId":"2092","endDate":1420910940,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1420909920,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40474954","duration":240,"bikeId":"1667","endDate":1420911180,"endStationId":"247","endStationName":"St. John's Wood Church, Regent's Park","startDate":1420910940,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40474939","duration":480,"bikeId":"12152","endDate":1420911360,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1420910880,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"40474942","duration":660,"bikeId":"3228","endDate":1420911540,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1420910880,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40474964","duration":720,"bikeId":"1544","endDate":1420911720,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1420911000,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40474847","duration":1380,"bikeId":"1260","endDate":1420911960,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1420910580,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"40474971","duration":1200,"bikeId":"11062","endDate":1420912200,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1420911000,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40475189","duration":660,"bikeId":"1","endDate":1420912380,"endStationId":"712","endStationName":"Mile End Stadium, Mile End","startDate":1420911720,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40475144","duration":1080,"bikeId":"5479","endDate":1420912620,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1420911540,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40475462","duration":240,"bikeId":"6821","endDate":1420912860,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1420912620,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40475486","duration":360,"bikeId":"1681","endDate":1420913100,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1420912740,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40475327","duration":1140,"bikeId":"1740","endDate":1420913280,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1420912140,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40475546","duration":540,"bikeId":"9664","endDate":1420913520,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1420912980,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40475708","duration":300,"bikeId":"11149","endDate":1420913820,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1420913520,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40475722","duration":480,"bikeId":"6651","endDate":1420914060,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420913580,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40475737","duration":600,"bikeId":"10277","endDate":1420914240,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1420913640,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40475909","duration":180,"bikeId":"4147","endDate":1420914480,"endStationId":"656","endStationName":"Broomhouse Lane, Parsons Green","startDate":1420914300,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40475966","duration":240,"bikeId":"8949","endDate":1420914780,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1420914540,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40475724","duration":1440,"bikeId":"11860","endDate":1420915020,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1420913580,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"40475942","duration":1020,"bikeId":"7264","endDate":1420915440,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1420914420,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40476199","duration":120,"bikeId":"10331","endDate":1420915740,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1420915620,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40475992","duration":1320,"bikeId":"5711","endDate":1420915920,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420914600,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40476099","duration":960,"bikeId":"2588","endDate":1420916160,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1420915200,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40476261","duration":600,"bikeId":"1620","endDate":1420916460,"endStationId":"507","endStationName":"Clarkson Street, Bethnal Green","startDate":1420915860,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"40476263","duration":840,"bikeId":"10523","endDate":1420916700,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1420915860,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40476454","duration":360,"bikeId":"6462","endDate":1420917000,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1420916640,"startStationId":"728","startStationName":"Putney Bridge Road, East Putney"}, +{"_id":"40476500","duration":420,"bikeId":"2490","endDate":1420917300,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1420916880,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40476499","duration":720,"bikeId":"8127","endDate":1420917600,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1420916880,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"40476584","duration":720,"bikeId":"12689","endDate":1420917900,"endStationId":"623","endStationName":"Nantes Close, Wandsworth","startDate":1420917180,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"40476552","duration":1140,"bikeId":"10039","endDate":1420918200,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1420917060,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"40476809","duration":300,"bikeId":"10983","endDate":1420918500,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1420918200,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40476751","duration":840,"bikeId":"923","endDate":1420918860,"endStationId":"283","endStationName":"Kingsway, Covent Garden","startDate":1420918020,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40476861","duration":720,"bikeId":"5672","endDate":1420919160,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1420918440,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40476940","duration":540,"bikeId":"4419","endDate":1420919400,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1420918860,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"40476988","duration":600,"bikeId":"4347","endDate":1420919760,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1420919160,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40477132","duration":300,"bikeId":"8945","endDate":1420920180,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1420919880,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"40477178","duration":360,"bikeId":"6934","endDate":1420920540,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1420920180,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40477201","duration":540,"bikeId":"8516","endDate":1420920840,"endStationId":"100","endStationName":"Albert Embankment, Vauxhall","startDate":1420920300,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"40477186","duration":1080,"bikeId":"5635","endDate":1420921260,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1420920180,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40477237","duration":1200,"bikeId":"11129","endDate":1420921680,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1420920480,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"40477270","duration":1320,"bikeId":"9026","endDate":1420921980,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1420920660,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40477500","duration":240,"bikeId":"12525","endDate":1420922340,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1420922100,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40477584","duration":300,"bikeId":"8546","endDate":1420922820,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1420922520,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40477512","duration":1080,"bikeId":"12322","endDate":1420923240,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1420922160,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40477735","duration":180,"bikeId":"1861","endDate":1420923780,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1420923600,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40477680","duration":960,"bikeId":"1895","endDate":1420924200,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1420923240,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"40477812","duration":420,"bikeId":"3211","endDate":1420924740,"endStationId":"365","endStationName":"City Road, Angel","startDate":1420924320,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40477870","duration":300,"bikeId":"10979","endDate":1420925220,"endStationId":"586","endStationName":"Mudchute DLR, Cubitt Town","startDate":1420924920,"startStationId":"455","startStationName":"East Ferry Road, Cubitt Town"}, +{"_id":"40477857","duration":1080,"bikeId":"4612","endDate":1420925880,"endStationId":"238","endStationName":"Frampton Street, Paddington","startDate":1420924800,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40477953","duration":840,"bikeId":"6990","endDate":1420926540,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1420925700,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40477989","duration":1320,"bikeId":"9005","endDate":1420927380,"endStationId":"775","endStationName":"Little Brook Green, Brook Green","startDate":1420926060,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"40478112","duration":480,"bikeId":"3214","endDate":1420927860,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420927380,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40478054","duration":2100,"bikeId":"7805","endDate":1420928820,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1420926720,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40478263","duration":480,"bikeId":"6039","endDate":1420929480,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1420929000,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40478339","duration":420,"bikeId":"11150","endDate":1420930260,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1420929840,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40478434","duration":240,"bikeId":"12959","endDate":1420930860,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1420930620,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40478491","duration":420,"bikeId":"12452","endDate":1420931520,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1420931100,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"40478516","duration":780,"bikeId":"12546","endDate":1420932120,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1420931340,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40478646","duration":240,"bikeId":"7203","endDate":1420932900,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1420932660,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40478669","duration":600,"bikeId":"5315","endDate":1420933380,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1420932780,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40478649","duration":1260,"bikeId":"12847","endDate":1420933920,"endStationId":"117","endStationName":"Lollard Street, Vauxhall","startDate":1420932660,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40477499","duration":12600,"bikeId":"11236","endDate":1420934700,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1420922100,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40478890","duration":300,"bikeId":"8883","endDate":1420935540,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1420935240,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"40464321","duration":72180,"bikeId":"4848","endDate":1420936320,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1420864140,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40478956","duration":1140,"bikeId":"1877","endDate":1420937040,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1420935900,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40479134","duration":120,"bikeId":"5660","endDate":1420937640,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1420937520,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"40479108","duration":1080,"bikeId":"12217","endDate":1420938240,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1420937160,"startStationId":"721","startStationName":"Wendon Street, Old Ford"}, +{"_id":"40479098","duration":1920,"bikeId":"8818","endDate":1420939020,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1420937100,"startStationId":"276","startStationName":"Lower Thames Street, Monument"}, +{"_id":"40479216","duration":1260,"bikeId":"13079","endDate":1420939740,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1420938480,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"40479120","duration":3240,"bikeId":"5415","endDate":1420940520,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1420937280,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40479428","duration":420,"bikeId":"9157","endDate":1420941540,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1420941120,"startStationId":"598","startStationName":"Southerton Road, Hammersmith"}, +{"_id":"40479479","duration":420,"bikeId":"9637","endDate":1420942320,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1420941900,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"40479514","duration":1020,"bikeId":"9206","endDate":1420943520,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1420942500,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"40479470","duration":3120,"bikeId":"10385","endDate":1420944840,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1420941720,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40479683","duration":360,"bikeId":"414","endDate":1420945680,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1420945320,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40479731","duration":780,"bikeId":"7326","endDate":1420947180,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1420946400,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40479799","duration":1020,"bikeId":"2300","endDate":1420948860,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1420947840,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"40479848","duration":1980,"bikeId":"3525","endDate":1420951440,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1420949460,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40479941","duration":1440,"bikeId":"7846","endDate":1420954860,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1420953420,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40480015","duration":780,"bikeId":"780","endDate":1420958520,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1420957740,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40480076","duration":840,"bikeId":"9451","endDate":1420962180,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1420961340,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"40480158","duration":360,"bikeId":"850","endDate":1420963980,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1420963620,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40480260","duration":240,"bikeId":"133","endDate":1420965720,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1420965480,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"40480314","duration":480,"bikeId":"7641","endDate":1420966500,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1420966020,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40480326","duration":1020,"bikeId":"4297","endDate":1420967220,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1420966200,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40480397","duration":1080,"bikeId":"3478","endDate":1420967880,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1420966800,"startStationId":"600","startStationName":"South Lambeth Road, Vauxhall"}, +{"_id":"40480307","duration":2580,"bikeId":"1686","endDate":1420968540,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1420965960,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40480628","duration":420,"bikeId":"3989","endDate":1420968960,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1420968540,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40480615","duration":960,"bikeId":"10451","endDate":1420969440,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1420968480,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40480764","duration":360,"bikeId":"3923","endDate":1420969860,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1420969500,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40480827","duration":480,"bikeId":"8197","endDate":1420970280,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1420969800,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40480663","duration":1800,"bikeId":"6466","endDate":1420970640,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1420968840,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40481028","duration":420,"bikeId":"8200","endDate":1420971000,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1420970580,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40481118","duration":360,"bikeId":"8206","endDate":1420971300,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1420970940,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"40481209","duration":300,"bikeId":"4682","endDate":1420971660,"endStationId":"164","endStationName":"Cleveland Gardens, Bayswater","startDate":1420971360,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40481306","duration":180,"bikeId":"5715","endDate":1420971960,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420971780,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40481246","duration":600,"bikeId":"2229","endDate":1420972200,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1420971600,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40481150","duration":1440,"bikeId":"1868","endDate":1420972560,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1420971120,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"40481469","duration":420,"bikeId":"5736","endDate":1420972860,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1420972440,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40481526","duration":480,"bikeId":"10909","endDate":1420973160,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420972680,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40481520","duration":840,"bikeId":"10707","endDate":1420973460,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1420972620,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40481493","duration":1200,"bikeId":"5506","endDate":1420973760,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1420972560,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40481774","duration":600,"bikeId":"6920","endDate":1420974000,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1420973400,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40481528","duration":1500,"bikeId":"6863","endDate":1420974180,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1420972680,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40481990","duration":360,"bikeId":"5851","endDate":1420974480,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1420974120,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"40481928","duration":840,"bikeId":"5485","endDate":1420974720,"endStationId":"609","endStationName":"Sugden Road, Battersea","startDate":1420973880,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"40482021","duration":720,"bikeId":"2294","endDate":1420974960,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1420974240,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"40481640","duration":2160,"bikeId":"12026","endDate":1420975200,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1420973040,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40482137","duration":780,"bikeId":"6592","endDate":1420975440,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1420974660,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"40482085","duration":1080,"bikeId":"242","endDate":1420975620,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1420974540,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"40482170","duration":1140,"bikeId":"3014","endDate":1420975860,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1420974720,"startStationId":"59","startStationName":"Rodney Street, Angel"}, +{"_id":"40482478","duration":480,"bikeId":"7408","endDate":1420976100,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1420975620,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40482326","duration":1140,"bikeId":"11982","endDate":1420976280,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1420975140,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"40482670","duration":480,"bikeId":"1950","endDate":1420976520,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1420976040,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40482378","duration":1380,"bikeId":"3011","endDate":1420976700,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1420975320,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"40482761","duration":660,"bikeId":"7684","endDate":1420976940,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1420976280,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40482691","duration":1020,"bikeId":"12646","endDate":1420977120,"endStationId":"669","endStationName":"Teversham Lane, Stockwell","startDate":1420976100,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40482942","duration":600,"bikeId":"9360","endDate":1420977240,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1420976640,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40480959","duration":6960,"bikeId":"4486","endDate":1420977360,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1420970400,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40482944","duration":840,"bikeId":"3052","endDate":1420977480,"endStationId":"599","endStationName":"Manbre Road, Hammersmith","startDate":1420976640,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40483271","duration":180,"bikeId":"1027","endDate":1420977660,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1420977480,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40483332","duration":180,"bikeId":"10422","endDate":1420977840,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1420977660,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40482742","duration":1740,"bikeId":"12924","endDate":1420977960,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1420976220,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40483040","duration":1200,"bikeId":"1740","endDate":1420978140,"endStationId":"111","endStationName":"Park Lane , Hyde Park","startDate":1420976940,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40483276","duration":840,"bikeId":"12379","endDate":1420978320,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1420977480,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40483431","duration":600,"bikeId":"6725","endDate":1420978500,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1420977900,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"40483529","duration":540,"bikeId":"8633","endDate":1420978680,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1420978140,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"40483536","duration":780,"bikeId":"2251","endDate":1420978920,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1420978140,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40483566","duration":780,"bikeId":"10533","endDate":1420979040,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1420978260,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40483451","duration":1260,"bikeId":"4934","endDate":1420979220,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1420977960,"startStationId":"692","startStationName":"Cadogan Close, Victoria Park"}, +{"_id":"40483381","duration":1620,"bikeId":"8809","endDate":1420979400,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1420977780,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40484094","duration":180,"bikeId":"1717","endDate":1420979580,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1420979400,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40483399","duration":1860,"bikeId":"8257","endDate":1420979700,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1420977840,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40484074","duration":540,"bikeId":"9175","endDate":1420979880,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1420979340,"startStationId":"606","startStationName":"Addison Road, Holland Park"}, +{"_id":"40483652","duration":1620,"bikeId":"8473","endDate":1420980060,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1420978440,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"40484032","duration":1020,"bikeId":"11061","endDate":1420980240,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1420979220,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40484069","duration":1020,"bikeId":"4789","endDate":1420980360,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1420979340,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40484030","duration":1320,"bikeId":"1954","endDate":1420980540,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1420979220,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40484419","duration":660,"bikeId":"7563","endDate":1420980720,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1420980060,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40481947","duration":6900,"bikeId":"5189","endDate":1420980840,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1420973940,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40482253","duration":6000,"bikeId":"10978","endDate":1420980960,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1420974960,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"40484667","duration":480,"bikeId":"6352","endDate":1420981140,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1420980660,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40484840","duration":300,"bikeId":"2044","endDate":1420981260,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1420980960,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40484615","duration":840,"bikeId":"6183","endDate":1420981380,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1420980540,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40484582","duration":1080,"bikeId":"9723","endDate":1420981500,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1420980420,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40484963","duration":540,"bikeId":"10563","endDate":1420981680,"endStationId":"174","endStationName":"Strand, Strand","startDate":1420981140,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40485222","duration":180,"bikeId":"6431","endDate":1420981860,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1420981680,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40484928","duration":900,"bikeId":"10631","endDate":1420981980,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1420981080,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40484875","duration":1020,"bikeId":"1879","endDate":1420982040,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1420981020,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40485361","duration":300,"bikeId":"4515","endDate":1420982220,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1420981920,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40485302","duration":540,"bikeId":"11980","endDate":1420982340,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1420981800,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40485153","duration":900,"bikeId":"9355","endDate":1420982460,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1420981560,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"40484657","duration":2040,"bikeId":"8876","endDate":1420982640,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1420980600,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40485680","duration":300,"bikeId":"7475","endDate":1420982760,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1420982460,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40485658","duration":420,"bikeId":"2796","endDate":1420982880,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1420982460,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"40485192","duration":1380,"bikeId":"10698","endDate":1420983000,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1420981620,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40485074","duration":1740,"bikeId":"863","endDate":1420983120,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1420981380,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40485937","duration":360,"bikeId":"1884","endDate":1420983300,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1420982940,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"40484953","duration":2280,"bikeId":"11860","endDate":1420983420,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1420981140,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40485831","duration":720,"bikeId":"12902","endDate":1420983480,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1420982760,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40485689","duration":1200,"bikeId":"9953","endDate":1420983660,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1420982460,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40486012","duration":780,"bikeId":"8571","endDate":1420983840,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1420983060,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40486430","duration":180,"bikeId":"5945","endDate":1420983960,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1420983780,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40486187","duration":780,"bikeId":"9428","endDate":1420984080,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1420983300,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40486311","duration":660,"bikeId":"964","endDate":1420984200,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1420983540,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40486611","duration":120,"bikeId":"3310","endDate":1420984320,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1420984200,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40486315","duration":900,"bikeId":"6305","endDate":1420984440,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1420983540,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40486499","duration":600,"bikeId":"1542","endDate":1420984560,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1420983960,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40485486","duration":2520,"bikeId":"9236","endDate":1420984680,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1420982160,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40486065","duration":1620,"bikeId":"1610","endDate":1420984800,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1420983180,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"40486225","duration":1560,"bikeId":"10390","endDate":1420984980,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1420983420,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"40483946","duration":6060,"bikeId":"4954","endDate":1420985100,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1420979040,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40486742","duration":780,"bikeId":"11122","endDate":1420985220,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1420984440,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40486386","duration":1620,"bikeId":"9414","endDate":1420985340,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1420983720,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40485991","duration":2460,"bikeId":"6588","endDate":1420985460,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1420983000,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40487107","duration":420,"bikeId":"12793","endDate":1420985580,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1420985160,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40486641","duration":1560,"bikeId":"6003","endDate":1420985760,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1420984200,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40487212","duration":540,"bikeId":"10550","endDate":1420985880,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1420985340,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"40486744","duration":1560,"bikeId":"1247","endDate":1420986000,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1420984440,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"40487273","duration":720,"bikeId":"8269","endDate":1420986180,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1420985460,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40487150","duration":1020,"bikeId":"1336","endDate":1420986240,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1420985220,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40487340","duration":720,"bikeId":"6417","endDate":1420986360,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1420985640,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40487310","duration":1020,"bikeId":"4817","endDate":1420986540,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1420985520,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40487112","duration":1440,"bikeId":"2305","endDate":1420986600,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1420985160,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40487010","duration":1860,"bikeId":"2439","endDate":1420986780,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1420984920,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40487607","duration":720,"bikeId":"12019","endDate":1420986900,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1420986180,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"40487854","duration":360,"bikeId":"12023","endDate":1420987080,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1420986720,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"40487531","duration":1140,"bikeId":"12363","endDate":1420987200,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1420986060,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40487850","duration":660,"bikeId":"2431","endDate":1420987380,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1420986720,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40487864","duration":780,"bikeId":"11078","endDate":1420987560,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1420986780,"startStationId":"250","startStationName":"Royal Avenue 1, Chelsea"}, +{"_id":"40487182","duration":2400,"bikeId":"11308","endDate":1420987680,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1420985280,"startStationId":"384","startStationName":"Marloes Road, Kensington"}, +{"_id":"40487694","duration":1500,"bikeId":"3979","endDate":1420987860,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1420986360,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40488189","duration":600,"bikeId":"1327","endDate":1420987980,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1420987380,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40488341","duration":420,"bikeId":"10144","endDate":1420988160,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1420987740,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40488203","duration":840,"bikeId":"7265","endDate":1420988280,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1420987440,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40488143","duration":1080,"bikeId":"12752","endDate":1420988400,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1420987320,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40488475","duration":540,"bikeId":"4864","endDate":1420988580,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1420988040,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40488366","duration":900,"bikeId":"9772","endDate":1420988700,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1420987800,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40486223","duration":5400,"bikeId":"11785","endDate":1420988820,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1420983420,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40488539","duration":780,"bikeId":"12938","endDate":1420988940,"endStationId":"398","endStationName":"Holland Park, Kensington","startDate":1420988160,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40488561","duration":900,"bikeId":"3596","endDate":1420989120,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1420988220,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40487122","duration":4020,"bikeId":"10676","endDate":1420989240,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1420985220,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40488224","duration":1920,"bikeId":"9828","endDate":1420989360,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1420987440,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40488824","duration":780,"bikeId":"3605","endDate":1420989540,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1420988760,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40488326","duration":1980,"bikeId":"10537","endDate":1420989660,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1420987680,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40488963","duration":660,"bikeId":"4041","endDate":1420989780,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1420989120,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40489106","duration":540,"bikeId":"12158","endDate":1420989960,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1420989420,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40489092","duration":720,"bikeId":"5406","endDate":1420990080,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1420989360,"startStationId":"517","startStationName":"Ford Road, Old Ford"}, +{"_id":"40489230","duration":600,"bikeId":"649","endDate":1420990260,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1420989660,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40489162","duration":840,"bikeId":"10157","endDate":1420990380,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1420989540,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40488692","duration":2040,"bikeId":"6948","endDate":1420990500,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1420988460,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"40489221","duration":1020,"bikeId":"2120","endDate":1420990680,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1420989660,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40489282","duration":1020,"bikeId":"12816","endDate":1420990800,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1420989780,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40488926","duration":1920,"bikeId":"11212","endDate":1420990920,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1420989000,"startStationId":"673","startStationName":"Hibbert Street, Battersea"}, +{"_id":"40489534","duration":660,"bikeId":"3016","endDate":1420991040,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1420990380,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40489580","duration":840,"bikeId":"6039","endDate":1420991280,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1420990440,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40489814","duration":360,"bikeId":"1537","endDate":1420991340,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1420990980,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40489119","duration":2100,"bikeId":"5322","endDate":1420991520,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1420989420,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40489737","duration":900,"bikeId":"4281","endDate":1420991700,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1420990800,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40489971","duration":480,"bikeId":"4718","endDate":1420991880,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1420991400,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40487768","duration":5400,"bikeId":"2915","endDate":1420992000,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1420986600,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40489704","duration":1440,"bikeId":"7109","endDate":1420992180,"endStationId":"667","endStationName":"Shepherd's Bush Road North, Shepherd's Bush","startDate":1420990740,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"40490209","duration":360,"bikeId":"10164","endDate":1420992300,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1420991940,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40487764","duration":5940,"bikeId":"11915","endDate":1420992480,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1420986540,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40490298","duration":420,"bikeId":"10744","endDate":1420992600,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1420992180,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"40489637","duration":2220,"bikeId":"343","endDate":1420992780,"endStationId":"777","endStationName":"Limburg Road, Clapham Common","startDate":1420990560,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40490341","duration":600,"bikeId":"8196","endDate":1420992960,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1420992360,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40490328","duration":840,"bikeId":"10359","endDate":1420993140,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1420992300,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40490375","duration":900,"bikeId":"11210","endDate":1420993320,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1420992420,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"40478206","duration":65160,"bikeId":"11143","endDate":1420993500,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1420928340,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40490745","duration":120,"bikeId":"9026","endDate":1420993680,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1420993560,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40490750","duration":300,"bikeId":"5398","endDate":1420993860,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1420993560,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40490554","duration":1020,"bikeId":"3639","endDate":1420993980,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1420992960,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40490363","duration":1860,"bikeId":"12735","endDate":1420994220,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1420992360,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40490536","duration":1500,"bikeId":"2322","endDate":1420994400,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1420992900,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40490938","duration":420,"bikeId":"10036","endDate":1420994520,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1420994100,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40490862","duration":780,"bikeId":"11102","endDate":1420994700,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1420993920,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"40491106","duration":180,"bikeId":"4101","endDate":1420994880,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1420994700,"startStationId":"592","startStationName":"Bishop's Bridge Road East, Bayswater"}, +{"_id":"40490800","duration":1320,"bikeId":"6784","endDate":1420995060,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1420993740,"startStationId":"774","startStationName":"Hurlingham Park, Parsons Green"}, +{"_id":"40491084","duration":660,"bikeId":"12403","endDate":1420995300,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1420994640,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40491293","duration":180,"bikeId":"2032","endDate":1420995480,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1420995300,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"40491314","duration":360,"bikeId":"613","endDate":1420995720,"endStationId":"611","endStationName":"Princedale Road , Holland Park","startDate":1420995360,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"40491162","duration":1080,"bikeId":"1914","endDate":1420995960,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1420994880,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40491461","duration":300,"bikeId":"990","endDate":1420996200,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1420995900,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40491417","duration":660,"bikeId":"12306","endDate":1420996380,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1420995720,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40491580","duration":360,"bikeId":"4385","endDate":1420996620,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1420996260,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40491438","duration":1020,"bikeId":"12139","endDate":1420996800,"endStationId":"518","endStationName":"Antill Road, Mile End","startDate":1420995780,"startStationId":"576","startStationName":"Alpha Grove, Millwall"}, +{"_id":"40490326","duration":4680,"bikeId":"10274","endDate":1420996980,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1420992300,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40491550","duration":1080,"bikeId":"5891","endDate":1420997220,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1420996140,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40491772","duration":480,"bikeId":"11741","endDate":1420997460,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1420996980,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40491545","duration":1560,"bikeId":"6742","endDate":1420997700,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1420996140,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40491377","duration":2340,"bikeId":"5986","endDate":1420997940,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1420995600,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40491895","duration":660,"bikeId":"12946","endDate":1420998180,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1420997520,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40492031","duration":300,"bikeId":"127","endDate":1420998420,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1420998120,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40492046","duration":660,"bikeId":"9819","endDate":1420998780,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1420998120,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"40492166","duration":240,"bikeId":"7305","endDate":1420999020,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1420998780,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40492120","duration":780,"bikeId":"12388","endDate":1420999320,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1420998540,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40492192","duration":720,"bikeId":"9956","endDate":1420999620,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1420998900,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40492202","duration":960,"bikeId":"7684","endDate":1420999920,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1420998960,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40492185","duration":1620,"bikeId":"12230","endDate":1421000460,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1420998840,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40492407","duration":660,"bikeId":"1820","endDate":1421000880,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421000220,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40492438","duration":900,"bikeId":"4663","endDate":1421001360,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1421000460,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40492503","duration":900,"bikeId":"12976","endDate":1421001900,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421001000,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40492467","duration":1500,"bikeId":"10659","endDate":1421002260,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1421000760,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40492585","duration":1080,"bikeId":"9624","endDate":1421002620,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421001540,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40492804","duration":180,"bikeId":"1745","endDate":1421003040,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1421002860,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40492822","duration":420,"bikeId":"2869","endDate":1421003400,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1421002980,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40492844","duration":780,"bikeId":"7166","endDate":1421003940,"endStationId":"339","endStationName":"Risinghill Street, Angel","startDate":1421003160,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40492956","duration":540,"bikeId":"7347","endDate":1421004360,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1421003820,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40492926","duration":1080,"bikeId":"7215","endDate":1421004780,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1421003700,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40493110","duration":360,"bikeId":"927","endDate":1421005200,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1421004840,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40493155","duration":300,"bikeId":"11923","endDate":1421005620,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1421005320,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40493198","duration":540,"bikeId":"249","endDate":1421006160,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1421005620,"startStationId":"164","startStationName":"Cleveland Gardens, Bayswater"}, +{"_id":"40493205","duration":960,"bikeId":"2926","endDate":1421006640,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1421005680,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40493180","duration":1560,"bikeId":"2382","endDate":1421007060,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421005500,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40493383","duration":720,"bikeId":"11238","endDate":1421007840,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1421007120,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40493453","duration":600,"bikeId":"5238","endDate":1421008260,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1421007660,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40493511","duration":600,"bikeId":"6633","endDate":1421008920,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421008320,"startStationId":"564","startStationName":"Somerset House, Strand"}, +{"_id":"40493565","duration":660,"bikeId":"9003","endDate":1421009700,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1421009040,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40493609","duration":1260,"bikeId":"11754","endDate":1421010780,"endStationId":"60","endStationName":"Lisson Grove, St. John's Wood","startDate":1421009520,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40493742","duration":360,"bikeId":"12843","endDate":1421011680,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1421011320,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40493737","duration":1260,"bikeId":"10728","endDate":1421012520,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1421011260,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40493867","duration":300,"bikeId":"526","endDate":1421013360,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1421013060,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40493936","duration":180,"bikeId":"3302","endDate":1421014200,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421014020,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40493909","duration":1440,"bikeId":"11095","endDate":1421015100,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1421013660,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40494024","duration":840,"bikeId":"10766","endDate":1421016060,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1421015220,"startStationId":"49","startStationName":"Curzon Street, Mayfair"}, +{"_id":"40494099","duration":720,"bikeId":"5959","endDate":1421017020,"endStationId":"286","endStationName":"St. John's Wood Road, St. John's Wood","startDate":1421016300,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40494172","duration":540,"bikeId":"7568","endDate":1421018100,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1421017560,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40494208","duration":1620,"bikeId":"11867","endDate":1421019540,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1421017920,"startStationId":"482","startStationName":"Thornfield House, Poplar"}, +{"_id":"40494325","duration":300,"bikeId":"10487","endDate":1421020920,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1421020620,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40494363","duration":900,"bikeId":"10130","endDate":1421022540,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1421021640,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40494449","duration":360,"bikeId":"10534","endDate":1421024520,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1421024160,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40494511","duration":480,"bikeId":"12103","endDate":1421029560,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1421029080,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40494577","duration":960,"bikeId":"959","endDate":1421037240,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1421036280,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"40494636","duration":960,"bikeId":"225","endDate":1421041980,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1421041020,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"40494733","duration":420,"bikeId":"7099","endDate":1421043480,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421043060,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40494814","duration":300,"bikeId":"2629","endDate":1421044320,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1421044020,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40494839","duration":780,"bikeId":"3884","endDate":1421044980,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1421044200,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40494961","duration":360,"bikeId":"3590","endDate":1421045460,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421045100,"startStationId":"134","startStationName":"Wapping High Street, Wapping"}, +{"_id":"40495097","duration":60,"bikeId":"7773","endDate":1421045880,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1421045820,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40494932","duration":1320,"bikeId":"4208","endDate":1421046240,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1421044920,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40495037","duration":1080,"bikeId":"12184","endDate":1421046600,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421045520,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40495172","duration":840,"bikeId":"5241","endDate":1421046900,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1421046060,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40495259","duration":660,"bikeId":"1825","endDate":1421047140,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1421046480,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"40495486","duration":300,"bikeId":"11878","endDate":1421047440,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421047140,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"40495306","duration":1020,"bikeId":"8536","endDate":1421047620,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1421046600,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"40495266","duration":1320,"bikeId":"11879","endDate":1421047800,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1421046480,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40495373","duration":1200,"bikeId":"9","endDate":1421048040,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1421046840,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40495602","duration":720,"bikeId":"8351","endDate":1421048160,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1421047440,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40495689","duration":660,"bikeId":"5721","endDate":1421048340,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1421047680,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40495617","duration":960,"bikeId":"8977","endDate":1421048460,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421047500,"startStationId":"714","startStationName":"Stewart's Road, Nine Elms"}, +{"_id":"40495621","duration":1140,"bikeId":"2608","endDate":1421048640,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421047500,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40495990","duration":540,"bikeId":"4680","endDate":1421048820,"endStationId":"606","endStationName":"Addison Road, Holland Park","startDate":1421048280,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"40495819","duration":960,"bikeId":"5204","endDate":1421048940,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421047980,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40496054","duration":660,"bikeId":"5596","endDate":1421049120,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1421048460,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40495969","duration":960,"bikeId":"747","endDate":1421049240,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1421048280,"startStationId":"490","startStationName":"Pennington Street, Wapping"}, +{"_id":"40496148","duration":780,"bikeId":"12552","endDate":1421049360,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1421048580,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40495875","duration":1380,"bikeId":"9159","endDate":1421049480,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1421048100,"startStationId":"729","startStationName":"St. Peter's Terrace, Fulham"}, +{"_id":"40496415","duration":480,"bikeId":"10928","endDate":1421049600,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1421049120,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40496530","duration":420,"bikeId":"8858","endDate":1421049720,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1421049300,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40496466","duration":660,"bikeId":"10739","endDate":1421049840,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1421049180,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40496274","duration":1020,"bikeId":"8823","endDate":1421049900,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421048880,"startStationId":"598","startStationName":"Southerton Road, Hammersmith"}, +{"_id":"40496610","duration":600,"bikeId":"2349","endDate":1421050020,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421049420,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40496773","duration":540,"bikeId":"2388","endDate":1421050140,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1421049600,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40496659","duration":720,"bikeId":"10317","endDate":1421050200,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421049480,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40497342","duration":0,"bikeId":"8225","endDate":1421050320,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1421050320,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40496708","duration":840,"bikeId":"896","endDate":1421050380,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1421049540,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40496835","duration":780,"bikeId":"1652","endDate":1421050500,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1421049720,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40497207","duration":420,"bikeId":"10627","endDate":1421050560,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1421050140,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"40496922","duration":900,"bikeId":"12507","endDate":1421050680,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421049780,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40497059","duration":780,"bikeId":"10260","endDate":1421050740,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1421049960,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40496162","duration":2160,"bikeId":"7685","endDate":1421050800,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1421048640,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40497108","duration":900,"bikeId":"2942","endDate":1421050920,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421050020,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40497243","duration":780,"bikeId":"4521","endDate":1421050980,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1421050200,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40497693","duration":360,"bikeId":"7258","endDate":1421051040,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1421050680,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40496738","duration":1500,"bikeId":"12958","endDate":1421051100,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421049600,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40497183","duration":1140,"bikeId":"3253","endDate":1421051220,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1421050080,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40497939","duration":360,"bikeId":"7766","endDate":1421051280,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1421050920,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40497562","duration":780,"bikeId":"8163","endDate":1421051340,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1421050560,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40497235","duration":1260,"bikeId":"11149","endDate":1421051400,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1421050140,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40497432","duration":1080,"bikeId":"6573","endDate":1421051460,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1421050380,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40497881","duration":720,"bikeId":"895","endDate":1421051580,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1421050860,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40498061","duration":600,"bikeId":"10023","endDate":1421051640,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1421051040,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40497663","duration":1020,"bikeId":"12737","endDate":1421051700,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1421050680,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40498428","duration":360,"bikeId":"12182","endDate":1421051820,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421051460,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40497803","duration":1080,"bikeId":"422","endDate":1421051880,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1421050800,"startStationId":"507","startStationName":"Clarkson Street, Bethnal Green"}, +{"_id":"40498176","duration":780,"bikeId":"11798","endDate":1421051940,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1421051160,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40498520","duration":480,"bikeId":"6957","endDate":1421052000,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1421051520,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40497700","duration":1440,"bikeId":"8839","endDate":1421052120,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1421050680,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40498046","duration":1140,"bikeId":"9037","endDate":1421052180,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1421051040,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40498382","duration":780,"bikeId":"11949","endDate":1421052240,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1421051460,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40498714","duration":600,"bikeId":"4812","endDate":1421052300,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1421051700,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40498181","duration":1140,"bikeId":"10279","endDate":1421052360,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421051220,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40498892","duration":600,"bikeId":"6768","endDate":1421052420,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421051820,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40498698","duration":780,"bikeId":"12315","endDate":1421052480,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1421051700,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"40499200","duration":540,"bikeId":"7321","endDate":1421052600,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1421052060,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"40499691","duration":120,"bikeId":"11253","endDate":1421052600,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1421052480,"startStationId":"599","startStationName":"Manbre Road, Hammersmith"}, +{"_id":"40498974","duration":780,"bikeId":"8095","endDate":1421052660,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1421051880,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40499022","duration":780,"bikeId":"923","endDate":1421052720,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1421051940,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40499405","duration":540,"bikeId":"8193","endDate":1421052780,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1421052240,"startStationId":"468","startStationName":"Cantrell Road, Bow"}, +{"_id":"40499711","duration":360,"bikeId":"7378","endDate":1421052840,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1421052480,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"40499249","duration":720,"bikeId":"12670","endDate":1421052840,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421052120,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40499767","duration":360,"bikeId":"6508","endDate":1421052900,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421052540,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40498904","duration":1140,"bikeId":"2968","endDate":1421052960,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1421051820,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40498968","duration":1140,"bikeId":"10897","endDate":1421053020,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421051880,"startStationId":"505","startStationName":"Ackroyd Drive, Bow"}, +{"_id":"40498590","duration":1440,"bikeId":"12102","endDate":1421053080,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421051640,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40498886","duration":1320,"bikeId":"753","endDate":1421053140,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1421051820,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40499299","duration":1020,"bikeId":"7795","endDate":1421053200,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421052180,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"40499738","duration":720,"bikeId":"11128","endDate":1421053260,"endStationId":"551","endStationName":"Montgomery Square, Canary Wharf","startDate":1421052540,"startStationId":"461","startStationName":"Aston Street, Stepney"}, +{"_id":"40500111","duration":360,"bikeId":"8847","endDate":1421053260,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1421052900,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"40500368","duration":180,"bikeId":"515","endDate":1421053380,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1421053200,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40499876","duration":720,"bikeId":"12191","endDate":1421053380,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421052660,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40499042","duration":1500,"bikeId":"10106","endDate":1421053440,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421051940,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40499951","duration":840,"bikeId":"7455","endDate":1421053560,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1421052720,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40499866","duration":960,"bikeId":"10279","endDate":1421053620,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1421052660,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40499267","duration":1560,"bikeId":"1332","endDate":1421053680,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1421052120,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"40500215","duration":720,"bikeId":"10648","endDate":1421053740,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421053020,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40500360","duration":600,"bikeId":"11381","endDate":1421053800,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1421053200,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40500172","duration":900,"bikeId":"8270","endDate":1421053860,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421052960,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40500165","duration":960,"bikeId":"4786","endDate":1421053920,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1421052960,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40500630","duration":600,"bikeId":"4064","endDate":1421054040,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421053440,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40500537","duration":720,"bikeId":"9099","endDate":1421054100,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421053380,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40500268","duration":1080,"bikeId":"10925","endDate":1421054160,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421053080,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40500544","duration":900,"bikeId":"11214","endDate":1421054280,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421053380,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40500910","duration":540,"bikeId":"9407","endDate":1421054340,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1421053800,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40500982","duration":540,"bikeId":"9684","endDate":1421054460,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1421053920,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"40500280","duration":1440,"bikeId":"3696","endDate":1421054520,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1421053080,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40500894","duration":780,"bikeId":"993","endDate":1421054580,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1421053800,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40500422","duration":1440,"bikeId":"10906","endDate":1421054700,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1421053260,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40501383","duration":300,"bikeId":"528","endDate":1421054820,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1421054520,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40501242","duration":600,"bikeId":"8228","endDate":1421054880,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421054280,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40500895","duration":1200,"bikeId":"218","endDate":1421055000,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1421053800,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"40501533","duration":300,"bikeId":"3659","endDate":1421055060,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1421054760,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40501157","duration":1020,"bikeId":"6212","endDate":1421055180,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421054160,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40501113","duration":1200,"bikeId":"856","endDate":1421055300,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1421054100,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40501459","duration":780,"bikeId":"7304","endDate":1421055420,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1421054640,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40501583","duration":660,"bikeId":"11743","endDate":1421055540,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1421054880,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40501490","duration":960,"bikeId":"5227","endDate":1421055660,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421054700,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"40501526","duration":1080,"bikeId":"5543","endDate":1421055840,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421054760,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40501905","duration":360,"bikeId":"7807","endDate":1421055960,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421055600,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40501720","duration":960,"bikeId":"7375","endDate":1421056140,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1421055180,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40501966","duration":540,"bikeId":"1603","endDate":1421056260,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1421055720,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40501559","duration":1620,"bikeId":"4463","endDate":1421056440,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1421054820,"startStationId":"353","startStationName":"Greycoat Street , Westminster"}, +{"_id":"40502133","duration":420,"bikeId":"10077","endDate":1421056620,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1421056200,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40502059","duration":720,"bikeId":"1294","endDate":1421056740,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421056020,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40502003","duration":1080,"bikeId":"2142","endDate":1421056920,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1421055840,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40502318","duration":360,"bikeId":"3811","endDate":1421057160,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1421056800,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"40502287","duration":660,"bikeId":"10580","endDate":1421057400,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421056740,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"40502439","duration":300,"bikeId":"7012","endDate":1421057700,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1421057400,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"40502265","duration":1380,"bikeId":"12966","endDate":1421058000,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1421056620,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40502418","duration":960,"bikeId":"9757","endDate":1421058240,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1421057280,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40502557","duration":780,"bikeId":"12824","endDate":1421058600,"endStationId":"692","endStationName":"Cadogan Close, Victoria Park","startDate":1421057820,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40502609","duration":840,"bikeId":"10022","endDate":1421058960,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1421058120,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40502606","duration":1260,"bikeId":"7041","endDate":1421059320,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1421058060,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"40502860","duration":300,"bikeId":"8268","endDate":1421059620,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421059320,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40502933","duration":300,"bikeId":"7883","endDate":1421059980,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1421059680,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40502986","duration":360,"bikeId":"10705","endDate":1421060280,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1421059920,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40502879","duration":1200,"bikeId":"9695","endDate":1421060580,"endStationId":"174","endStationName":"Strand, Strand","startDate":1421059380,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40502855","duration":1680,"bikeId":"7089","endDate":1421060940,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1421059260,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"40503011","duration":1380,"bikeId":"11122","endDate":1421061360,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1421059980,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40503327","duration":0,"bikeId":"4024","endDate":1421061660,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1421061660,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40503280","duration":540,"bikeId":"7819","endDate":1421061960,"endStationId":"60","endStationName":"Lisson Grove, St. John's Wood","startDate":1421061420,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40503300","duration":840,"bikeId":"6984","endDate":1421062380,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1421061540,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40503485","duration":180,"bikeId":"1762","endDate":1421062680,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1421062500,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40503541","duration":240,"bikeId":"2285","endDate":1421063100,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1421062860,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"40503563","duration":540,"bikeId":"12491","endDate":1421063460,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1421062920,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40503702","duration":300,"bikeId":"5914","endDate":1421063820,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421063520,"startStationId":"176","startStationName":"Gloucester Terrace, Bayswater"}, +{"_id":"40503559","duration":1200,"bikeId":"8733","endDate":1421064060,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1421062860,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40503779","duration":420,"bikeId":"3604","endDate":1421064360,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1421063940,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40503815","duration":600,"bikeId":"13075","endDate":1421064780,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421064180,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40503707","duration":1500,"bikeId":"4052","endDate":1421065080,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1421063580,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40504022","duration":300,"bikeId":"10417","endDate":1421065380,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1421065080,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40503998","duration":660,"bikeId":"7041","endDate":1421065680,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1421065020,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40504152","duration":300,"bikeId":"7590","endDate":1421065980,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421065680,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"40504128","duration":660,"bikeId":"4722","endDate":1421066280,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1421065620,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40504266","duration":420,"bikeId":"9105","endDate":1421066700,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421066280,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40504160","duration":1200,"bikeId":"1820","endDate":1421066940,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1421065740,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40504448","duration":180,"bikeId":"8673","endDate":1421067300,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1421067120,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40504294","duration":1080,"bikeId":"8181","endDate":1421067540,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1421066460,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40504398","duration":900,"bikeId":"3370","endDate":1421067840,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421066940,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40504590","duration":240,"bikeId":"3344","endDate":1421068140,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1421067900,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"40504625","duration":420,"bikeId":"8435","endDate":1421068500,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1421068080,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40504582","duration":1080,"bikeId":"7157","endDate":1421068920,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1421067840,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40504772","duration":300,"bikeId":"7720","endDate":1421069280,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421068980,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40504838","duration":360,"bikeId":"1317","endDate":1421069760,"endStationId":"642","endStationName":"Fawcett Close, Battersea","startDate":1421069400,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40504810","duration":960,"bikeId":"10169","endDate":1421070180,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421069220,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40504910","duration":720,"bikeId":"6592","endDate":1421070540,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1421069820,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40504848","duration":1440,"bikeId":"2911","endDate":1421070900,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421069460,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40505091","duration":540,"bikeId":"8095","endDate":1421071200,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421070660,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40505201","duration":360,"bikeId":"8894","endDate":1421071560,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1421071200,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40505126","duration":1080,"bikeId":"11174","endDate":1421071920,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421070840,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"40505313","duration":420,"bikeId":"1650","endDate":1421072340,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421071920,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40505285","duration":1020,"bikeId":"5127","endDate":1421072760,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1421071740,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40505435","duration":360,"bikeId":"11207","endDate":1421073060,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1421072700,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40505384","duration":1080,"bikeId":"12973","endDate":1421073480,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421072400,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40505509","duration":840,"bikeId":"3710","endDate":1421073960,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421073120,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40505650","duration":420,"bikeId":"5543","endDate":1421074500,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421074080,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40505692","duration":540,"bikeId":"12035","endDate":1421074980,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1421074440,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40505754","duration":540,"bikeId":"11547","endDate":1421075460,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1421074920,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40505834","duration":360,"bikeId":"10930","endDate":1421076000,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1421075640,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40505923","duration":240,"bikeId":"4712","endDate":1421076660,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421076420,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40505941","duration":780,"bikeId":"4732","endDate":1421077380,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421076600,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40505987","duration":900,"bikeId":"12702","endDate":1421077980,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1421077080,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40506105","duration":360,"bikeId":"8833","endDate":1421078400,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1421078040,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40506129","duration":660,"bikeId":"10894","endDate":1421078940,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1421078280,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"40506232","duration":600,"bikeId":"2047","endDate":1421079540,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421078940,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40506264","duration":840,"bikeId":"4119","endDate":1421080020,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1421079180,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40506410","duration":360,"bikeId":"7732","endDate":1421080320,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1421079960,"startStationId":"741","startStationName":"Freston Road, Avondale"}, +{"_id":"40506392","duration":780,"bikeId":"752","endDate":1421080680,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1421079900,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40506443","duration":840,"bikeId":"8912","endDate":1421081040,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1421080200,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40506544","duration":720,"bikeId":"4617","endDate":1421081400,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421080680,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40506621","duration":660,"bikeId":"4885","endDate":1421081760,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1421081100,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40506487","duration":1560,"bikeId":"7809","endDate":1421082000,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421080440,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40506701","duration":780,"bikeId":"10767","endDate":1421082240,"endStationId":"538","endStationName":"Naval Row, Blackwall","startDate":1421081460,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"40506460","duration":2160,"bikeId":"12012","endDate":1421082480,"endStationId":"134","endStationName":"Wapping High Street, Wapping","startDate":1421080320,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40506939","duration":480,"bikeId":"567","endDate":1421082720,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421082240,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40506855","duration":960,"bikeId":"8543","endDate":1421082960,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421082000,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40506747","duration":1500,"bikeId":"8407","endDate":1421083080,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1421081580,"startStationId":"612","startStationName":"Wandsworth Rd, Isley Court, Wandsworth Road"}, +{"_id":"40506849","duration":1260,"bikeId":"12101","endDate":1421083260,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1421082000,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40506985","duration":1080,"bikeId":"482","endDate":1421083440,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421082360,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40507250","duration":600,"bikeId":"8659","endDate":1421083620,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421083020,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40507252","duration":840,"bikeId":"12206","endDate":1421083860,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421083020,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40507271","duration":960,"bikeId":"4205","endDate":1421084040,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1421083080,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40507561","duration":360,"bikeId":"10181","endDate":1421084220,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1421083860,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40507396","duration":960,"bikeId":"4612","endDate":1421084400,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1421083440,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40507637","duration":480,"bikeId":"4649","endDate":1421084520,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421084040,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40507451","duration":1080,"bikeId":"9131","endDate":1421084640,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421083560,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40507575","duration":900,"bikeId":"11827","endDate":1421084820,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1421083920,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40507651","duration":900,"bikeId":"12226","endDate":1421084940,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1421084040,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40507814","duration":720,"bikeId":"7999","endDate":1421085060,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421084340,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"40507898","duration":720,"bikeId":"11998","endDate":1421085180,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1421084460,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40507899","duration":840,"bikeId":"4606","endDate":1421085300,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1421084460,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40508197","duration":420,"bikeId":"10010","endDate":1421085420,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1421085000,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40508306","duration":360,"bikeId":"1641","endDate":1421085600,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1421085240,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"40508330","duration":420,"bikeId":"581","endDate":1421085720,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1421085300,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40508251","duration":780,"bikeId":"4081","endDate":1421085840,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1421085060,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40508178","duration":1020,"bikeId":"4153","endDate":1421086020,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1421085000,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40508356","duration":840,"bikeId":"2796","endDate":1421086200,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1421085360,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40508653","duration":240,"bikeId":"7479","endDate":1421086380,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1421086140,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40508737","duration":240,"bikeId":"8410","endDate":1421086560,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1421086320,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40508256","duration":1560,"bikeId":"11372","endDate":1421086680,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1421085120,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40508906","duration":120,"bikeId":"7284","endDate":1421086860,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1421086740,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40508015","duration":2340,"bikeId":"2477","endDate":1421087040,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1421084700,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40508798","duration":720,"bikeId":"5258","endDate":1421087160,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421086440,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40508793","duration":900,"bikeId":"9617","endDate":1421087340,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1421086440,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40508563","duration":1620,"bikeId":"9864","endDate":1421087520,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1421085900,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40508667","duration":1560,"bikeId":"12971","endDate":1421087700,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1421086140,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"40509217","duration":180,"bikeId":"5409","endDate":1421087880,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1421087700,"startStationId":"673","startStationName":"Hibbert Street, Battersea"}, +{"_id":"40508877","duration":1440,"bikeId":"1255","endDate":1421088120,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1421086680,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40509212","duration":660,"bikeId":"9521","endDate":1421088300,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1421087640,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40509133","duration":1080,"bikeId":"10233","endDate":1421088480,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1421087400,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40509383","duration":480,"bikeId":"9542","endDate":1421088660,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1421088180,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40509295","duration":960,"bikeId":"5665","endDate":1421088900,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1421087940,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40509584","duration":300,"bikeId":"7733","endDate":1421089140,"endStationId":"463","endStationName":"Thurtle Road, Haggerston","startDate":1421088840,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40509586","duration":480,"bikeId":"3315","endDate":1421089380,"endStationId":"725","endStationName":"Thessaly Road North, Nine Elms","startDate":1421088900,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"40509580","duration":720,"bikeId":"10776","endDate":1421089560,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1421088840,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40509411","duration":1440,"bikeId":"3274","endDate":1421089740,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1421088300,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40509822","duration":480,"bikeId":"2706","endDate":1421089980,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1421089500,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"40509845","duration":540,"bikeId":"85","endDate":1421090160,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1421089620,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40509912","duration":540,"bikeId":"4339","endDate":1421090340,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1421089800,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40509915","duration":720,"bikeId":"11876","endDate":1421090520,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1421089800,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40509921","duration":960,"bikeId":"6103","endDate":1421090760,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1421089800,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40509684","duration":1800,"bikeId":"1905","endDate":1421091000,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1421089200,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40510084","duration":780,"bikeId":"6905","endDate":1421091120,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1421090340,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40510304","duration":420,"bikeId":"6076","endDate":1421091360,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1421090940,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40510405","duration":300,"bikeId":"184","endDate":1421091540,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1421091240,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40510349","duration":660,"bikeId":"11781","endDate":1421091720,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421091060,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40510442","duration":600,"bikeId":"9177","endDate":1421091900,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1421091300,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40510496","duration":600,"bikeId":"10539","endDate":1421092080,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1421091480,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40510495","duration":780,"bikeId":"9997","endDate":1421092260,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1421091480,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40510563","duration":780,"bikeId":"2007","endDate":1421092500,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421091720,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40510745","duration":360,"bikeId":"10113","endDate":1421092740,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1421092380,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40510688","duration":720,"bikeId":"3771","endDate":1421092920,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1421092200,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40510756","duration":720,"bikeId":"3271","endDate":1421093160,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421092440,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"40510785","duration":960,"bikeId":"8461","endDate":1421093460,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1421092500,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40510916","duration":720,"bikeId":"1805","endDate":1421093700,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1421092980,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"40510967","duration":720,"bikeId":"8890","endDate":1421093880,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1421093160,"startStationId":"611","startStationName":"Princedale Road , Holland Park"}, +{"_id":"40511155","duration":360,"bikeId":"9496","endDate":1421094180,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1421093820,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40511144","duration":660,"bikeId":"10468","endDate":1421094420,"endStationId":"291","endStationName":"Claverton Street, Pimlico","startDate":1421093760,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40511304","duration":180,"bikeId":"3203","endDate":1421094720,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1421094540,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40511272","duration":720,"bikeId":"12348","endDate":1421095080,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1421094360,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40510969","duration":2100,"bikeId":"1333","endDate":1421095260,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1421093160,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"40511448","duration":420,"bikeId":"12810","endDate":1421095680,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421095260,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40511266","duration":1620,"bikeId":"1564","endDate":1421095980,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1421094360,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"40511566","duration":480,"bikeId":"13032","endDate":1421096340,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421095860,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40511635","duration":480,"bikeId":"4483","endDate":1421096640,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1421096160,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40511636","duration":900,"bikeId":"11218","endDate":1421097060,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1421096160,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40511697","duration":840,"bikeId":"6536","endDate":1421097360,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421096520,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40511813","duration":600,"bikeId":"12861","endDate":1421097720,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1421097120,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"40511849","duration":780,"bikeId":"7800","endDate":1421098140,"endStationId":"423","endStationName":"Eaton Square (South), Belgravia","startDate":1421097360,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40511891","duration":960,"bikeId":"11319","endDate":1421098620,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1421097660,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40512050","duration":420,"bikeId":"5523","endDate":1421099220,"endStationId":"592","endStationName":"Bishop's Bridge Road East, Bayswater","startDate":1421098800,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40512024","duration":1080,"bikeId":"6868","endDate":1421099700,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421098620,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40512159","duration":540,"bikeId":"12030","endDate":1421100180,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1421099640,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"40512165","duration":1080,"bikeId":"13061","endDate":1421100780,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1421099700,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"40512216","duration":1380,"bikeId":"1372","endDate":1421101500,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1421100120,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40512345","duration":360,"bikeId":"3590","endDate":1421102640,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1421102280,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"40512417","duration":480,"bikeId":"12410","endDate":1421104620,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421104140,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40512486","duration":360,"bikeId":"9235","endDate":1421106960,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1421106600,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"40512553","duration":420,"bikeId":"6469","endDate":1421110500,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1421110080,"startStationId":"439","startStationName":"Killick Street, Kings Cross"}, +{"_id":"40512606","duration":1260,"bikeId":"5514","endDate":1421117820,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1421116560,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40512688","duration":600,"bikeId":"11757","endDate":1421126640,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421126040,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40512757","duration":660,"bikeId":"10992","endDate":1421128860,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1421128200,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40512877","duration":240,"bikeId":"4922","endDate":1421129940,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1421129700,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40512863","duration":900,"bikeId":"2778","endDate":1421130480,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1421129580,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40513003","duration":480,"bikeId":"12193","endDate":1421131020,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421130540,"startStationId":"134","startStationName":"Wapping High Street, Wapping"}, +{"_id":"40513083","duration":420,"bikeId":"5611","endDate":1421131440,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421131020,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40513063","duration":900,"bikeId":"11263","endDate":1421131800,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1421130900,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40513255","duration":360,"bikeId":"13003","endDate":1421132100,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421131740,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40513335","duration":300,"bikeId":"2913","endDate":1421132340,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421132040,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40513392","duration":300,"bikeId":"11293","endDate":1421132580,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1421132280,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40513455","duration":420,"bikeId":"11426","endDate":1421132880,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1421132460,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40513461","duration":600,"bikeId":"2311","endDate":1421133120,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1421132520,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40513643","duration":300,"bikeId":"2200","endDate":1421133420,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1421133120,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40513725","duration":180,"bikeId":"9028","endDate":1421133600,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1421133420,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"40513560","duration":960,"bikeId":"12042","endDate":1421133840,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1421132880,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40513839","duration":420,"bikeId":"9779","endDate":1421134140,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1421133720,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"40513928","duration":300,"bikeId":"3701","endDate":1421134320,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1421134020,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40514020","duration":300,"bikeId":"12409","endDate":1421134500,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1421134200,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40514054","duration":300,"bikeId":"6799","endDate":1421134620,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1421134320,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40514155","duration":360,"bikeId":"10061","endDate":1421134860,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421134500,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40513811","duration":1320,"bikeId":"3885","endDate":1421134980,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1421133660,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40514152","duration":660,"bikeId":"9940","endDate":1421135160,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421134500,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40514118","duration":900,"bikeId":"8038","endDate":1421135280,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1421134380,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40514114","duration":1080,"bikeId":"10903","endDate":1421135460,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1421134380,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40514467","duration":540,"bikeId":"5307","endDate":1421135520,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421134980,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40514335","duration":840,"bikeId":"11365","endDate":1421135640,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1421134800,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40514117","duration":1380,"bikeId":"12845","endDate":1421135760,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421134380,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40514712","duration":480,"bikeId":"10788","endDate":1421135880,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421135400,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40514289","duration":1260,"bikeId":"7870","endDate":1421135940,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421134680,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"40514823","duration":480,"bikeId":"6390","endDate":1421136060,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1421135580,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"40514682","duration":840,"bikeId":"11352","endDate":1421136180,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1421135340,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40514932","duration":600,"bikeId":"10244","endDate":1421136300,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1421135700,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40514713","duration":1020,"bikeId":"7014","endDate":1421136420,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1421135400,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40514968","duration":720,"bikeId":"9933","endDate":1421136480,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1421135760,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"40515412","duration":300,"bikeId":"1584","endDate":1421136600,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1421136300,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40515598","duration":240,"bikeId":"6666","endDate":1421136720,"endStationId":"172","endStationName":"Sumner Place, South Kensington","startDate":1421136480,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40515773","duration":180,"bikeId":"11546","endDate":1421136780,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1421136600,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"40514883","duration":1260,"bikeId":"5222","endDate":1421136900,"endStationId":"530","endStationName":"Newby Place, Poplar","startDate":1421135640,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40515042","duration":1080,"bikeId":"3388","endDate":1421136960,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1421135880,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40515212","duration":900,"bikeId":"7900","endDate":1421137020,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1421136120,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40515562","duration":660,"bikeId":"7473","endDate":1421137080,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421136420,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40515762","duration":540,"bikeId":"11748","endDate":1421137140,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421136600,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40515786","duration":540,"bikeId":"10643","endDate":1421137200,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1421136660,"startStationId":"757","startStationName":"Harcourt Terrace, West Brompton"}, +{"_id":"40515173","duration":1320,"bikeId":"8737","endDate":1421137320,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1421136000,"startStationId":"767","startStationName":"Santos Road, Wandsworth"}, +{"_id":"40516143","duration":360,"bikeId":"6770","endDate":1421137320,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1421136960,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40515072","duration":1560,"bikeId":"3166","endDate":1421137440,"endStationId":"556","endStationName":"Heron Quays DLR, Canary Wharf","startDate":1421135880,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40516132","duration":540,"bikeId":"8544","endDate":1421137500,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421136960,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"40516180","duration":540,"bikeId":"6230","endDate":1421137560,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1421137020,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40515730","duration":1020,"bikeId":"4439","endDate":1421137620,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421136600,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40516343","duration":600,"bikeId":"3914","endDate":1421137740,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1421137140,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40515924","duration":1020,"bikeId":"13011","endDate":1421137800,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1421136780,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"40515271","duration":1740,"bikeId":"2753","endDate":1421137860,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1421136120,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"40516823","duration":300,"bikeId":"12406","endDate":1421137920,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1421137620,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40516096","duration":1020,"bikeId":"12680","endDate":1421137980,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421136960,"startStationId":"274","startStationName":"Warwick Road, Olympia"}, +{"_id":"40515803","duration":1380,"bikeId":"5356","endDate":1421138040,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1421136660,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40515705","duration":1560,"bikeId":"9911","endDate":1421138100,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421136540,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40517344","duration":120,"bikeId":"6043","endDate":1421138160,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1421138040,"startStationId":"647","startStationName":"Richmond Way, Shepherd's Bush"}, +{"_id":"40516321","duration":1080,"bikeId":"7168","endDate":1421138220,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1421137140,"startStationId":"684","startStationName":"Neville Gill Close, Wandsworth"}, +{"_id":"40517197","duration":360,"bikeId":"11521","endDate":1421138280,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421137920,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40516477","duration":1020,"bikeId":"11372","endDate":1421138340,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421137320,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40517180","duration":480,"bikeId":"11168","endDate":1421138400,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421137920,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40515887","duration":1740,"bikeId":"10549","endDate":1421138460,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1421136720,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40517247","duration":540,"bikeId":"12258","endDate":1421138520,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1421137980,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40516415","duration":1320,"bikeId":"2323","endDate":1421138580,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421137260,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"40517094","duration":840,"bikeId":"2718","endDate":1421138640,"endStationId":"561","endStationName":"Rectory Square, Stepney","startDate":1421137800,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40517185","duration":780,"bikeId":"10723","endDate":1421138700,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1421137920,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40516636","duration":1320,"bikeId":"4338","endDate":1421138760,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1421137440,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40517569","duration":600,"bikeId":"12440","endDate":1421138820,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421138220,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40517982","duration":300,"bikeId":"11509","endDate":1421138820,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1421138520,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40517145","duration":1020,"bikeId":"12975","endDate":1421138880,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421137860,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40517639","duration":660,"bikeId":"1899","endDate":1421138940,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1421138280,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"40517393","duration":900,"bikeId":"4867","endDate":1421139000,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1421138100,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40517663","duration":780,"bikeId":"13071","endDate":1421139060,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1421138280,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40517741","duration":780,"bikeId":"3482","endDate":1421139120,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1421138340,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40518048","duration":660,"bikeId":"4779","endDate":1421139180,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1421138520,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40518001","duration":720,"bikeId":"8180","endDate":1421139240,"endStationId":"375","endStationName":"Kensington Town Hall, Kensington","startDate":1421138520,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40518208","duration":660,"bikeId":"7712","endDate":1421139300,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1421138640,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40517460","duration":1140,"bikeId":"10997","endDate":1421139300,"endStationId":"667","endStationName":"Shepherd's Bush Road North, Shepherd's Bush","startDate":1421138160,"startStationId":"774","startStationName":"Hurlingham Park, Parsons Green"}, +{"_id":"40518461","duration":540,"bikeId":"1811","endDate":1421139360,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1421138820,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40518486","duration":600,"bikeId":"8346","endDate":1421139420,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421138820,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40518625","duration":480,"bikeId":"177","endDate":1421139420,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1421138940,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40518304","duration":780,"bikeId":"2538","endDate":1421139480,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1421138700,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40518948","duration":360,"bikeId":"6691","endDate":1421139540,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1421139180,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40518699","duration":540,"bikeId":"9436","endDate":1421139540,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1421139000,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"40518138","duration":1020,"bikeId":"9900","endDate":1421139600,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1421138580,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40518720","duration":660,"bikeId":"431","endDate":1421139660,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1421139000,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"40518513","duration":840,"bikeId":"9319","endDate":1421139720,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421138880,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40518728","duration":720,"bikeId":"7025","endDate":1421139720,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1421139000,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40518427","duration":960,"bikeId":"6085","endDate":1421139780,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1421138820,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"40518952","duration":660,"bikeId":"1211","endDate":1421139840,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1421139180,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40518693","duration":900,"bikeId":"8718","endDate":1421139900,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1421139000,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"40517504","duration":1800,"bikeId":"12890","endDate":1421139960,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1421138160,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40518484","duration":1140,"bikeId":"6720","endDate":1421140020,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1421138880,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40518464","duration":1260,"bikeId":"4006","endDate":1421140080,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421138820,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40518070","duration":1560,"bikeId":"9668","endDate":1421140140,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421138580,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40518053","duration":1680,"bikeId":"775","endDate":1421140200,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1421138520,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40519002","duration":1020,"bikeId":"6022","endDate":1421140260,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1421139240,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40516699","duration":2820,"bikeId":"12101","endDate":1421140320,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1421137500,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40518986","duration":1140,"bikeId":"4696","endDate":1421140380,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1421139240,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40519738","duration":600,"bikeId":"6959","endDate":1421140500,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421139900,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40519635","duration":780,"bikeId":"6367","endDate":1421140560,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1421139780,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40519663","duration":780,"bikeId":"7110","endDate":1421140620,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1421139840,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"40519856","duration":660,"bikeId":"7006","endDate":1421140680,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1421140020,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"40519929","duration":660,"bikeId":"2926","endDate":1421140740,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1421140080,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40519127","duration":1560,"bikeId":"259","endDate":1421140860,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1421139300,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40520366","duration":300,"bikeId":"1330","endDate":1421140920,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421140620,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40519776","duration":1140,"bikeId":"403","endDate":1421141040,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1421139900,"startStationId":"516","startStationName":"Chrisp Street Market, Poplar"}, +{"_id":"40520371","duration":480,"bikeId":"6745","endDate":1421141100,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421140620,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40520189","duration":720,"bikeId":"10719","endDate":1421141160,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1421140440,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40520163","duration":900,"bikeId":"11880","endDate":1421141280,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421140380,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40520372","duration":720,"bikeId":"12609","endDate":1421141340,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1421140620,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"40520410","duration":720,"bikeId":"3997","endDate":1421141400,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1421140680,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40520852","duration":180,"bikeId":"301","endDate":1421141520,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1421141340,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40520586","duration":720,"bikeId":"3213","endDate":1421141640,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1421140920,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40520739","duration":540,"bikeId":"7933","endDate":1421141700,"endStationId":"365","endStationName":"City Road, Angel","startDate":1421141160,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40520756","duration":600,"bikeId":"8049","endDate":1421141820,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1421141220,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"40520362","duration":1320,"bikeId":"12063","endDate":1421141940,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1421140620,"startStationId":"611","startStationName":"Princedale Road , Holland Park"}, +{"_id":"40520930","duration":540,"bikeId":"9998","endDate":1421142060,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1421141520,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"40521012","duration":540,"bikeId":"11763","endDate":1421142180,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421141640,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"40520919","duration":840,"bikeId":"12205","endDate":1421142300,"endStationId":"207","endStationName":"Grosvenor Crescent, Belgravia","startDate":1421141460,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"40521312","duration":300,"bikeId":"11038","endDate":1421142480,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421142180,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40521363","duration":300,"bikeId":"17","endDate":1421142600,"endStationId":"366","endStationName":"Millennium Hotel, Mayfair","startDate":1421142300,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"40521079","duration":960,"bikeId":"12203","endDate":1421142720,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1421141760,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40521233","duration":780,"bikeId":"8424","endDate":1421142840,"endStationId":"402","endStationName":"Penfold Street, Marylebone","startDate":1421142060,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"40513544","duration":10140,"bikeId":"10789","endDate":1421142960,"endStationId":"7","endStationName":"Charlbert Street, St. John's Wood","startDate":1421132820,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"40521154","duration":1140,"bikeId":"5862","endDate":1421143080,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1421141940,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40521021","duration":1560,"bikeId":"2929","endDate":1421143200,"endStationId":"538","endStationName":"Naval Row, Blackwall","startDate":1421141640,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40521506","duration":720,"bikeId":"12225","endDate":1421143380,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1421142660,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40521569","duration":780,"bikeId":"3809","endDate":1421143560,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1421142780,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40521657","duration":720,"bikeId":"12720","endDate":1421143740,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1421143020,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"40521773","duration":600,"bikeId":"11146","endDate":1421143980,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1421143380,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40521813","duration":660,"bikeId":"11455","endDate":1421144220,"endStationId":"538","endStationName":"Naval Row, Blackwall","startDate":1421143560,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"40521837","duration":780,"bikeId":"501","endDate":1421144400,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421143620,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40522041","duration":360,"bikeId":"449","endDate":1421144640,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1421144280,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"40521953","duration":900,"bikeId":"8873","endDate":1421144880,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1421143980,"startStationId":"384","startStationName":"Marloes Road, Kensington"}, +{"_id":"40522112","duration":660,"bikeId":"8913","endDate":1421145060,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421144400,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40522204","duration":540,"bikeId":"10370","endDate":1421145300,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1421144760,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40522146","duration":1020,"bikeId":"4557","endDate":1421145540,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1421144520,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"40522409","duration":300,"bikeId":"10202","endDate":1421145840,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1421145540,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"40522492","duration":300,"bikeId":"732","endDate":1421146080,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1421145780,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40522495","duration":480,"bikeId":"8951","endDate":1421146260,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1421145780,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"40522448","duration":900,"bikeId":"4583","endDate":1421146560,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421145660,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"40522186","duration":2100,"bikeId":"6861","endDate":1421146800,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1421144700,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"40522613","duration":840,"bikeId":"3570","endDate":1421147100,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1421146260,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40522713","duration":660,"bikeId":"12328","endDate":1421147340,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421146680,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40522673","duration":1200,"bikeId":"12316","endDate":1421147700,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1421146500,"startStationId":"576","startStationName":"Alpha Grove, Millwall"}, +{"_id":"40522874","duration":600,"bikeId":"6613","endDate":1421147940,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1421147340,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40522122","duration":3720,"bikeId":"12620","endDate":1421148180,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421144460,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40522928","duration":960,"bikeId":"7520","endDate":1421148480,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1421147520,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40523158","duration":420,"bikeId":"11326","endDate":1421148780,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1421148360,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40523088","duration":840,"bikeId":"3443","endDate":1421149020,"endStationId":"103","endStationName":"Vicarage Gate, Kensington","startDate":1421148180,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"40523242","duration":660,"bikeId":"10454","endDate":1421149320,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421148660,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"40523405","duration":300,"bikeId":"3054","endDate":1421149680,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1421149380,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"40523322","duration":840,"bikeId":"10841","endDate":1421149920,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1421149080,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"40523467","duration":480,"bikeId":"3614","endDate":1421150100,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421149620,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40523654","duration":60,"bikeId":"9779","endDate":1421150340,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1421150280,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40523560","duration":720,"bikeId":"10946","endDate":1421150640,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1421149920,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40523535","duration":1020,"bikeId":"12509","endDate":1421150880,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1421149860,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40523661","duration":780,"bikeId":"5904","endDate":1421151060,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1421150280,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40523729","duration":780,"bikeId":"3119","endDate":1421151300,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1421150520,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40523864","duration":540,"bikeId":"12957","endDate":1421151600,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1421151060,"startStationId":"384","startStationName":"Marloes Road, Kensington"}, +{"_id":"40523875","duration":720,"bikeId":"10551","endDate":1421151780,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421151060,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40523971","duration":660,"bikeId":"8029","endDate":1421151960,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421151300,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"40523892","duration":1080,"bikeId":"3219","endDate":1421152200,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421151120,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40524237","duration":240,"bikeId":"9118","endDate":1421152440,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1421152200,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40524209","duration":540,"bikeId":"11035","endDate":1421152620,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1421152080,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40524196","duration":780,"bikeId":"12186","endDate":1421152800,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1421152020,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40524454","duration":180,"bikeId":"12465","endDate":1421153040,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1421152860,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40524303","duration":900,"bikeId":"7480","endDate":1421153280,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1421152380,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"40524488","duration":480,"bikeId":"2376","endDate":1421153460,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1421152980,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40524517","duration":600,"bikeId":"3513","endDate":1421153640,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421153040,"startStationId":"44","startStationName":"Bruton Street, Mayfair"}, +{"_id":"40524644","duration":420,"bikeId":"7781","endDate":1421153880,"endStationId":"550","endStationName":"Harford Street, Mile End","startDate":1421153460,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40524640","duration":660,"bikeId":"2067","endDate":1421154060,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1421153400,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40524219","duration":2160,"bikeId":"7596","endDate":1421154300,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1421152140,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40524882","duration":300,"bikeId":"11076","endDate":1421154600,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421154300,"startStationId":"441","startStationName":"Sail Street, Vauxhall"}, +{"_id":"40524864","duration":600,"bikeId":"4081","endDate":1421154840,"endStationId":"768","endStationName":"Clapham Common Northside, Clapham Common","startDate":1421154240,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40524893","duration":780,"bikeId":"9547","endDate":1421155140,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1421154360,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40525058","duration":240,"bikeId":"1625","endDate":1421155560,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421155320,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40525145","duration":180,"bikeId":"6256","endDate":1421155980,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1421155800,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40524845","duration":2160,"bikeId":"3155","endDate":1421156340,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1421154180,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40525094","duration":1140,"bikeId":"3978","endDate":1421156700,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1421155560,"startStationId":"692","startStationName":"Cadogan Close, Victoria Park"}, +{"_id":"40525346","duration":360,"bikeId":"9594","endDate":1421157000,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421156640,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40524771","duration":3360,"bikeId":"6381","endDate":1421157240,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1421153880,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40525570","duration":0,"bikeId":"9384","endDate":1421157540,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1421157540,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40525514","duration":480,"bikeId":"6365","endDate":1421157780,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421157300,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40525658","duration":240,"bikeId":"2005","endDate":1421158080,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1421157840,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40525704","duration":420,"bikeId":"7055","endDate":1421158380,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1421157960,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40525539","duration":1200,"bikeId":"12993","endDate":1421158620,"endStationId":"725","endStationName":"Thessaly Road North, Nine Elms","startDate":1421157420,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40525479","duration":1680,"bikeId":"1884","endDate":1421158860,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1421157180,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40525792","duration":720,"bikeId":"8344","endDate":1421159100,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1421158380,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"40525724","duration":1440,"bikeId":"4863","endDate":1421159520,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1421158080,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40526008","duration":540,"bikeId":"5265","endDate":1421159820,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1421159280,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40525993","duration":960,"bikeId":"8787","endDate":1421160180,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421159220,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40526193","duration":360,"bikeId":"7735","endDate":1421160480,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421160120,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40526011","duration":1440,"bikeId":"8234","endDate":1421160720,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1421159280,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"40526049","duration":1500,"bikeId":"8527","endDate":1421160960,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421159460,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40526162","duration":1380,"bikeId":"7165","endDate":1421161320,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1421159940,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40526394","duration":600,"bikeId":"7599","endDate":1421161620,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1421161020,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"40511689","duration":65460,"bikeId":"11883","endDate":1421161980,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1421096520,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40526611","duration":300,"bikeId":"13068","endDate":1421162340,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421162040,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"40526577","duration":660,"bikeId":"11170","endDate":1421162580,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421161920,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"40526593","duration":900,"bikeId":"90","endDate":1421162880,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1421161980,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40526769","duration":420,"bikeId":"8278","endDate":1421163120,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1421162700,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40526829","duration":480,"bikeId":"7327","endDate":1421163420,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1421162940,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40526917","duration":540,"bikeId":"874","endDate":1421163780,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1421163240,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40526937","duration":660,"bikeId":"4074","endDate":1421164020,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1421163360,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40526658","duration":1980,"bikeId":"8150","endDate":1421164200,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1421162220,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40527179","duration":300,"bikeId":"2214","endDate":1421164440,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1421164140,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40526828","duration":1740,"bikeId":"8878","endDate":1421164680,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421162940,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40527003","duration":1380,"bikeId":"3361","endDate":1421164920,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1421163540,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40527274","duration":720,"bikeId":"12983","endDate":1421165160,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1421164440,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40527076","duration":1500,"bikeId":"7200","endDate":1421165340,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1421163840,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40527303","duration":1020,"bikeId":"2226","endDate":1421165580,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421164560,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40527469","duration":720,"bikeId":"13023","endDate":1421165760,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1421165040,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40527597","duration":600,"bikeId":"12631","endDate":1421165940,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1421165340,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40527264","duration":1740,"bikeId":"11117","endDate":1421166120,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1421164380,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"40527818","duration":360,"bikeId":"7220","endDate":1421166300,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1421165940,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40527909","duration":300,"bikeId":"3458","endDate":1421166480,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1421166180,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40527895","duration":540,"bikeId":"895","endDate":1421166660,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1421166120,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40527903","duration":660,"bikeId":"2253","endDate":1421166840,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1421166180,"startStationId":"274","startStationName":"Warwick Road, Olympia"}, +{"_id":"40527977","duration":600,"bikeId":"10067","endDate":1421167020,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1421166420,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40526882","duration":4080,"bikeId":"5445","endDate":1421167200,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1421163120,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40527978","duration":960,"bikeId":"8680","endDate":1421167380,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1421166420,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40528204","duration":660,"bikeId":"5726","endDate":1421167560,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1421166900,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"40528427","duration":300,"bikeId":"10114","endDate":1421167740,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1421167440,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40528380","duration":600,"bikeId":"10019","endDate":1421167920,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1421167320,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40528511","duration":420,"bikeId":"6525","endDate":1421168040,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1421167620,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40528507","duration":540,"bikeId":"13070","endDate":1421168160,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421167620,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40528335","duration":1080,"bikeId":"9880","endDate":1421168280,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1421167200,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40528649","duration":480,"bikeId":"1372","endDate":1421168460,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421167980,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40528838","duration":240,"bikeId":"10057","endDate":1421168580,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421168340,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40528818","duration":360,"bikeId":"2293","endDate":1421168700,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421168340,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40528861","duration":480,"bikeId":"2138","endDate":1421168880,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421168400,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"40528956","duration":420,"bikeId":"9707","endDate":1421169000,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1421168580,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40529158","duration":300,"bikeId":"12417","endDate":1421169120,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421168820,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40529039","duration":540,"bikeId":"2994","endDate":1421169240,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1421168700,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40528864","duration":900,"bikeId":"2284","endDate":1421169300,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421168400,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40528879","duration":960,"bikeId":"1045","endDate":1421169420,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1421168460,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40529446","duration":360,"bikeId":"1727","endDate":1421169540,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421169180,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40529264","duration":660,"bikeId":"7153","endDate":1421169600,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1421168940,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40529206","duration":840,"bikeId":"3162","endDate":1421169720,"endStationId":"384","endStationName":"Marloes Road, Kensington","startDate":1421168880,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40529443","duration":660,"bikeId":"305","endDate":1421169840,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1421169180,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40529560","duration":540,"bikeId":"1916","endDate":1421169900,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1421169360,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40529639","duration":480,"bikeId":"5936","endDate":1421169960,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1421169480,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40529607","duration":660,"bikeId":"1535","endDate":1421170080,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421169420,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40529649","duration":660,"bikeId":"11224","endDate":1421170200,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1421169540,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40529745","duration":660,"bikeId":"8395","endDate":1421170320,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1421169660,"startStationId":"538","startStationName":"Naval Row, Blackwall"}, +{"_id":"40529759","duration":720,"bikeId":"12094","endDate":1421170380,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421169660,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40529811","duration":780,"bikeId":"9435","endDate":1421170500,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421169720,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40529836","duration":780,"bikeId":"887","endDate":1421170560,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1421169780,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40530341","duration":240,"bikeId":"11250","endDate":1421170680,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421170440,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40529549","duration":1380,"bikeId":"10703","endDate":1421170740,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1421169360,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"40530235","duration":540,"bikeId":"6140","endDate":1421170860,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421170320,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40530308","duration":540,"bikeId":"11301","endDate":1421170920,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1421170380,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40530414","duration":480,"bikeId":"11492","endDate":1421171040,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1421170560,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40529653","duration":1560,"bikeId":"9996","endDate":1421171100,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1421169540,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"40530425","duration":600,"bikeId":"3418","endDate":1421171160,"endStationId":"365","endStationName":"City Road, Angel","startDate":1421170560,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40529864","duration":1440,"bikeId":"8765","endDate":1421171220,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1421169780,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40530661","duration":540,"bikeId":"12034","endDate":1421171340,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421170800,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40530940","duration":360,"bikeId":"1288","endDate":1421171400,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421171040,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40530432","duration":900,"bikeId":"7999","endDate":1421171460,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1421170560,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40530717","duration":660,"bikeId":"4985","endDate":1421171520,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421170860,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40530125","duration":1380,"bikeId":"7941","endDate":1421171580,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1421170200,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"40531102","duration":540,"bikeId":"12355","endDate":1421171700,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1421171160,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"40530966","duration":720,"bikeId":"5715","endDate":1421171760,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1421171040,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40531344","duration":420,"bikeId":"7961","endDate":1421171820,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421171400,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40531117","duration":660,"bikeId":"10213","endDate":1421171880,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421171220,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40530672","duration":1140,"bikeId":"957","endDate":1421171940,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1421170800,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40531291","duration":600,"bikeId":"6118","endDate":1421172000,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1421171400,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40530836","duration":1140,"bikeId":"4516","endDate":1421172060,"endStationId":"454","endStationName":"Napier Avenue, Millwall","startDate":1421170920,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40531107","duration":960,"bikeId":"6296","endDate":1421172180,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421171220,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40531726","duration":420,"bikeId":"4678","endDate":1421172240,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1421171820,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40531522","duration":720,"bikeId":"6896","endDate":1421172300,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1421171580,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40531811","duration":480,"bikeId":"12985","endDate":1421172360,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1421171880,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"40530353","duration":1920,"bikeId":"2139","endDate":1421172420,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1421170500,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"40531146","duration":1260,"bikeId":"10207","endDate":1421172480,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1421171220,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40531470","duration":1020,"bikeId":"8157","endDate":1421172540,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1421171520,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40531805","duration":720,"bikeId":"6304","endDate":1421172600,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421171880,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40531552","duration":1080,"bikeId":"994","endDate":1421172720,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1421171640,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40531566","duration":1140,"bikeId":"7099","endDate":1421172780,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421171640,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40532071","duration":660,"bikeId":"5397","endDate":1421172840,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1421172180,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"40531175","duration":1620,"bikeId":"12478","endDate":1421172900,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1421171280,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40532161","duration":720,"bikeId":"583","endDate":1421173020,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421172300,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40532357","duration":600,"bikeId":"9862","endDate":1421173080,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1421172480,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40532526","duration":480,"bikeId":"3570","endDate":1421173140,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1421172660,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"40532285","duration":780,"bikeId":"12506","endDate":1421173200,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421172420,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40532353","duration":840,"bikeId":"7179","endDate":1421173320,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421172480,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40532338","duration":900,"bikeId":"12813","endDate":1421173380,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1421172480,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40532385","duration":960,"bikeId":"8285","endDate":1421173440,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421172480,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40532753","duration":600,"bikeId":"1558","endDate":1421173500,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421172900,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40531824","duration":1620,"bikeId":"7635","endDate":1421173560,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1421171940,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40532912","duration":540,"bikeId":"11449","endDate":1421173620,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1421173080,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40533250","duration":240,"bikeId":"5279","endDate":1421173740,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1421173500,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40533192","duration":420,"bikeId":"7963","endDate":1421173800,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1421173380,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40533344","duration":300,"bikeId":"11260","endDate":1421173860,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1421173560,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"40532716","duration":1140,"bikeId":"12423","endDate":1421173980,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1421172840,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40532880","duration":1020,"bikeId":"6183","endDate":1421174040,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1421173020,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"40531151","duration":2880,"bikeId":"10328","endDate":1421174100,"endStationId":"592","endStationName":"Bishop's Bridge Road East, Bayswater","startDate":1421171220,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40533435","duration":480,"bikeId":"12168","endDate":1421174220,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421173740,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40533389","duration":660,"bikeId":"3334","endDate":1421174280,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421173620,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40533143","duration":960,"bikeId":"8054","endDate":1421174340,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1421173380,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40533426","duration":720,"bikeId":"6681","endDate":1421174460,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421173740,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40533806","duration":300,"bikeId":"5588","endDate":1421174580,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1421174280,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40533896","duration":240,"bikeId":"3013","endDate":1421174640,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1421174400,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40533197","duration":1260,"bikeId":"8167","endDate":1421174700,"endStationId":"477","endStationName":"Spindrift Avenue, Millwall","startDate":1421173440,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40533701","duration":720,"bikeId":"423","endDate":1421174820,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1421174100,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40533906","duration":540,"bikeId":"5137","endDate":1421174940,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1421174400,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"40533626","duration":1020,"bikeId":"13056","endDate":1421175000,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1421173980,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40533807","duration":840,"bikeId":"13070","endDate":1421175120,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1421174280,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40534257","duration":300,"bikeId":"8590","endDate":1421175240,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1421174940,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40533968","duration":780,"bikeId":"12051","endDate":1421175300,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421174520,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40534504","duration":120,"bikeId":"9896","endDate":1421175420,"endStationId":"297","endStationName":"Geraldine Street, Elephant & Castle","startDate":1421175300,"startStationId":"441","startStationName":"Sail Street, Vauxhall"}, +{"_id":"40534093","duration":840,"bikeId":"9249","endDate":1421175540,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1421174700,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40534471","duration":420,"bikeId":"11372","endDate":1421175660,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421175240,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40534482","duration":480,"bikeId":"12627","endDate":1421175720,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1421175240,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"40534637","duration":360,"bikeId":"12057","endDate":1421175840,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1421175480,"startStationId":"759","startStationName":"Broadley Terrace, Marylebone"}, +{"_id":"40533942","duration":1440,"bikeId":"4462","endDate":1421175900,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1421174460,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"40533944","duration":1560,"bikeId":"2191","endDate":1421176020,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1421174460,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40534790","duration":420,"bikeId":"6210","endDate":1421176140,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1421175720,"startStationId":"736","startStationName":"Queensdale Road, Shepherd's Bush"}, +{"_id":"40534724","duration":540,"bikeId":"9165","endDate":1421176200,"endStationId":"7","endStationName":"Charlbert Street, St. John's Wood","startDate":1421175660,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40534828","duration":540,"bikeId":"4426","endDate":1421176320,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1421175780,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40534687","duration":840,"bikeId":"8067","endDate":1421176380,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1421175540,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40534775","duration":780,"bikeId":"11227","endDate":1421176500,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421175720,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40534686","duration":1080,"bikeId":"5952","endDate":1421176620,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1421175540,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40534428","duration":1560,"bikeId":"7589","endDate":1421176740,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1421175180,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"40535256","duration":300,"bikeId":"7119","endDate":1421176860,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1421176560,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40535316","duration":300,"bikeId":"4790","endDate":1421176980,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1421176680,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40535026","duration":960,"bikeId":"11290","endDate":1421177100,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1421176140,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40535233","duration":720,"bikeId":"9039","endDate":1421177220,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1421176500,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40535441","duration":360,"bikeId":"6619","endDate":1421177340,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1421176980,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"40535156","duration":1200,"bikeId":"2336","endDate":1421177520,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1421176320,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40535457","duration":660,"bikeId":"5262","endDate":1421177640,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1421176980,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40535624","duration":420,"bikeId":"1560","endDate":1421177760,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1421177340,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"40535804","duration":180,"bikeId":"8745","endDate":1421177940,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1421177760,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40535526","duration":960,"bikeId":"10346","endDate":1421178120,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1421177160,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40535754","duration":660,"bikeId":"10082","endDate":1421178300,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1421177640,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40535350","duration":1680,"bikeId":"9026","endDate":1421178420,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421176740,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40535813","duration":780,"bikeId":"1241","endDate":1421178540,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421177760,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40535848","duration":840,"bikeId":"12743","endDate":1421178720,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421177880,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40535949","duration":720,"bikeId":"12579","endDate":1421178840,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421178120,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40535995","duration":840,"bikeId":"10115","endDate":1421179020,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1421178180,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40536005","duration":960,"bikeId":"8881","endDate":1421179200,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1421178240,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40535977","duration":1260,"bikeId":"8640","endDate":1421179440,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421178180,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"40536034","duration":1260,"bikeId":"3263","endDate":1421179560,"endStationId":"538","endStationName":"Naval Row, Blackwall","startDate":1421178300,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40536375","duration":480,"bikeId":"9378","endDate":1421179740,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1421179260,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40536458","duration":480,"bikeId":"6041","endDate":1421179980,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1421179500,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40536610","duration":240,"bikeId":"9138","endDate":1421180220,"endStationId":"599","endStationName":"Manbre Road, Hammersmith","startDate":1421179980,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40536492","duration":780,"bikeId":"9924","endDate":1421180400,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421179620,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40536551","duration":780,"bikeId":"1890","endDate":1421180580,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421179800,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40536720","duration":420,"bikeId":"2657","endDate":1421180760,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421180340,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"40536854","duration":240,"bikeId":"2129","endDate":1421181000,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421180760,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40536882","duration":420,"bikeId":"10790","endDate":1421181300,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421180880,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40536269","duration":2580,"bikeId":"11059","endDate":1421181540,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1421178960,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"40536435","duration":2340,"bikeId":"12067","endDate":1421181780,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1421179440,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"40536795","duration":1440,"bikeId":"7820","endDate":1421182020,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421180580,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40537098","duration":660,"bikeId":"10382","endDate":1421182320,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1421181660,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40537061","duration":1020,"bikeId":"10173","endDate":1421182560,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1421181540,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40537176","duration":780,"bikeId":"12972","endDate":1421182740,"endStationId":"164","endStationName":"Cleveland Gardens, Bayswater","startDate":1421181960,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"40537239","duration":900,"bikeId":"1769","endDate":1421183100,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1421182200,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40537424","duration":360,"bikeId":"4806","endDate":1421183400,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1421183040,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40537354","duration":960,"bikeId":"5545","endDate":1421183700,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1421182740,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40537479","duration":720,"bikeId":"4421","endDate":1421184000,"endStationId":"339","endStationName":"Risinghill Street, Angel","startDate":1421183280,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40537597","duration":600,"bikeId":"8805","endDate":1421184360,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1421183760,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"40537507","duration":1260,"bikeId":"1764","endDate":1421184600,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1421183340,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40537707","duration":540,"bikeId":"7374","endDate":1421184960,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1421184420,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40537750","duration":660,"bikeId":"10274","endDate":1421185320,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1421184660,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40537816","duration":600,"bikeId":"7407","endDate":1421185620,"endStationId":"754","endStationName":"Grenfell Road, Avondale","startDate":1421185020,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"40537865","duration":720,"bikeId":"9782","endDate":1421185980,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1421185260,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40537963","duration":600,"bikeId":"10508","endDate":1421186340,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421185740,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"40537686","duration":2400,"bikeId":"12198","endDate":1421186700,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1421184300,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"40537946","duration":1620,"bikeId":"12556","endDate":1421187240,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1421185620,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40538204","duration":480,"bikeId":"12416","endDate":1421187660,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1421187180,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40538146","duration":1200,"bikeId":"6385","endDate":1421188080,"endStationId":"725","endStationName":"Thessaly Road North, Nine Elms","startDate":1421186880,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40538330","duration":360,"bikeId":"3969","endDate":1421188440,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1421188080,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40538396","duration":420,"bikeId":"10042","endDate":1421188920,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421188500,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40538448","duration":600,"bikeId":"10358","endDate":1421189400,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1421188800,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40538548","duration":360,"bikeId":"11971","endDate":1421189880,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1421189520,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"40538393","duration":1860,"bikeId":"4242","endDate":1421190360,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1421188500,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"40538623","duration":720,"bikeId":"12600","endDate":1421190900,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1421190180,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40538674","duration":960,"bikeId":"4472","endDate":1421191500,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1421190540,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"40538809","duration":540,"bikeId":"1608","endDate":1421192160,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1421191620,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"40538789","duration":1200,"bikeId":"6975","endDate":1421192640,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1421191440,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40538933","duration":540,"bikeId":"535","endDate":1421193420,"endStationId":"441","endStationName":"Sail Street, Vauxhall","startDate":1421192880,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40538989","duration":540,"bikeId":"3085","endDate":1421194440,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421193900,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40539046","duration":720,"bikeId":"2843","endDate":1421195760,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1421195040,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"40539079","duration":1440,"bikeId":"5775","endDate":1421197260,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421195820,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"40539195","duration":120,"bikeId":"11458","endDate":1421199240,"endStationId":"189","endStationName":"Claremont Square, Angel","startDate":1421199120,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40539242","duration":1140,"bikeId":"9585","endDate":1421202120,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1421200980,"startStationId":"609","startStationName":"Sugden Road, Battersea"}, +{"_id":"40539345","duration":0,"bikeId":"4849","endDate":1421206800,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421206800,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40539398","duration":480,"bikeId":"4011","endDate":1421211360,"endStationId":"280","endStationName":"Royal Avenue 2, Chelsea","startDate":1421210880,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40539455","duration":840,"bikeId":"5888","endDate":1421214900,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1421214060,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40539479","duration":1500,"bikeId":"7834","endDate":1421216160,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421214660,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40539577","duration":780,"bikeId":"10810","endDate":1421216940,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1421216160,"startStationId":"297","startStationName":"Geraldine Street, Elephant & Castle"}, +{"_id":"40539686","duration":540,"bikeId":"5197","endDate":1421217540,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1421217000,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40539843","duration":300,"bikeId":"9939","endDate":1421218020,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1421217720,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40539845","duration":600,"bikeId":"8432","endDate":1421218320,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1421217720,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40539822","duration":840,"bikeId":"6673","endDate":1421218560,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1421217720,"startStationId":"222","startStationName":"Knightsbridge, Hyde Park"}, +{"_id":"40539991","duration":420,"bikeId":"12012","endDate":1421218800,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1421218380,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"40540070","duration":420,"bikeId":"350","endDate":1421219100,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421218680,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40540134","duration":420,"bikeId":"835","endDate":1421219340,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1421218920,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40540159","duration":600,"bikeId":"4389","endDate":1421219640,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421219040,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40540378","duration":240,"bikeId":"723","endDate":1421219820,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421219580,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"40540249","duration":780,"bikeId":"5075","endDate":1421220060,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1421219280,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40540551","duration":300,"bikeId":"668","endDate":1421220240,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1421219940,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40540594","duration":360,"bikeId":"6780","endDate":1421220420,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1421220060,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40540596","duration":480,"bikeId":"7701","endDate":1421220540,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1421220060,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"40540304","duration":1380,"bikeId":"7938","endDate":1421220780,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1421219400,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40540855","duration":240,"bikeId":"7297","endDate":1421220900,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421220660,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40540573","duration":1080,"bikeId":"13003","endDate":1421221080,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421220000,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40540853","duration":540,"bikeId":"12019","endDate":1421221200,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1421220660,"startStationId":"715","startStationName":"Aylward Street, Stepney"}, +{"_id":"40540420","duration":1620,"bikeId":"5064","endDate":1421221320,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1421219700,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40540519","duration":1560,"bikeId":"1374","endDate":1421221440,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1421219880,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"40541172","duration":360,"bikeId":"7465","endDate":1421221620,"endStationId":"665","endStationName":"Smugglers Way, Wandsworth","startDate":1421221260,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"40540974","duration":780,"bikeId":"4598","endDate":1421221680,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421220900,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40540715","duration":1440,"bikeId":"12030","endDate":1421221800,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1421220360,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"40541230","duration":600,"bikeId":"9711","endDate":1421221920,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1421221320,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40540818","duration":1440,"bikeId":"828","endDate":1421222040,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421220600,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"40541753","duration":120,"bikeId":"386","endDate":1421222160,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421222040,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"40541558","duration":420,"bikeId":"4571","endDate":1421222220,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1421221800,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40541599","duration":480,"bikeId":"10742","endDate":1421222340,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1421221860,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40541703","duration":420,"bikeId":"12069","endDate":1421222400,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421221980,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40541706","duration":540,"bikeId":"7161","endDate":1421222520,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1421221980,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40541663","duration":660,"bikeId":"12735","endDate":1421222580,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1421221920,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40541647","duration":780,"bikeId":"9794","endDate":1421222700,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1421221920,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40541513","duration":1080,"bikeId":"4677","endDate":1421222760,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421221680,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40542119","duration":360,"bikeId":"1231","endDate":1421222880,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421222520,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40541707","duration":1020,"bikeId":"10509","endDate":1421223000,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1421221980,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40542172","duration":480,"bikeId":"11551","endDate":1421223060,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1421222580,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40541305","duration":1680,"bikeId":"10847","endDate":1421223120,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1421221440,"startStationId":"297","startStationName":"Geraldine Street, Elephant & Castle"}, +{"_id":"40542007","duration":840,"bikeId":"2544","endDate":1421223240,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421222400,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"40541553","duration":1560,"bikeId":"106","endDate":1421223300,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1421221740,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40542298","duration":720,"bikeId":"2720","endDate":1421223420,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1421222700,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40547243","duration":1440,"bikeId":"10643","endDate":1421223480,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1421222040,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40542548","duration":540,"bikeId":"8536","endDate":1421223540,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1421223000,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40542923","duration":240,"bikeId":"1140","endDate":1421223600,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1421223360,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40542844","duration":420,"bikeId":"9060","endDate":1421223720,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421223300,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40542991","duration":360,"bikeId":"5249","endDate":1421223780,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1421223420,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40542687","duration":720,"bikeId":"11461","endDate":1421223840,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421223120,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40542999","duration":480,"bikeId":"7516","endDate":1421223900,"endStationId":"556","endStationName":"Heron Quays DLR, Canary Wharf","startDate":1421223420,"startStationId":"547","startStationName":"East India DLR, Blackwall"}, +{"_id":"40543569","duration":0,"bikeId":"9895","endDate":1421223960,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1421223960,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"40543736","duration":0,"bikeId":"9064","endDate":1421224080,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1421224080,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40543237","duration":540,"bikeId":"12508","endDate":1421224140,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1421223600,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40541892","duration":1980,"bikeId":"9569","endDate":1421224200,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1421222220,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40543574","duration":300,"bikeId":"12011","endDate":1421224260,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1421223960,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40543384","duration":540,"bikeId":"3771","endDate":1421224320,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1421223780,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40542824","duration":1140,"bikeId":"8743","endDate":1421224380,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1421223240,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"40540216","duration":5220,"bikeId":"10229","endDate":1421224440,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421219220,"startStationId":"609","startStationName":"Sugden Road, Battersea"}, +{"_id":"40543645","duration":480,"bikeId":"13002","endDate":1421224500,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1421224020,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"40543331","duration":840,"bikeId":"11322","endDate":1421224560,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1421223720,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"40541565","duration":2820,"bikeId":"10984","endDate":1421224620,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421221800,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40543588","duration":720,"bikeId":"12832","endDate":1421224680,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421223960,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40543428","duration":900,"bikeId":"11276","endDate":1421224740,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1421223840,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40543355","duration":1080,"bikeId":"5905","endDate":1421224800,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1421223720,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"40543985","duration":600,"bikeId":"7269","endDate":1421224860,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1421224260,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"40544459","duration":300,"bikeId":"2842","endDate":1421224920,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1421224620,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40544272","duration":540,"bikeId":"529","endDate":1421224980,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1421224440,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40544396","duration":480,"bikeId":"9042","endDate":1421225040,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1421224560,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40544023","duration":780,"bikeId":"657","endDate":1421225040,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1421224260,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40544185","duration":720,"bikeId":"7388","endDate":1421225100,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1421224380,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40544173","duration":780,"bikeId":"7430","endDate":1421225160,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1421224380,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40544220","duration":780,"bikeId":"10076","endDate":1421225220,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1421224440,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40543939","duration":1080,"bikeId":"6525","endDate":1421225280,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1421224200,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40543532","duration":1440,"bikeId":"3127","endDate":1421225340,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421223900,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40543292","duration":1740,"bikeId":"11514","endDate":1421225400,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421223660,"startStationId":"606","startStationName":"Addison Road, Holland Park"}, +{"_id":"40544987","duration":360,"bikeId":"11850","endDate":1421225400,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1421225040,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40544393","duration":900,"bikeId":"12882","endDate":1421225460,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421224560,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40545007","duration":480,"bikeId":"9985","endDate":1421225520,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421225040,"startStationId":"565","startStationName":"Selby Street, Whitechapel"}, +{"_id":"40543673","duration":1560,"bikeId":"6609","endDate":1421225580,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421224020,"startStationId":"496","startStationName":"Devons Road, Bow"}, +{"_id":"40544969","duration":540,"bikeId":"5214","endDate":1421225580,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421225040,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40543870","duration":1500,"bikeId":"5182","endDate":1421225640,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421224140,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40544183","duration":1320,"bikeId":"3526","endDate":1421225700,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1421224380,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40544306","duration":1260,"bikeId":"10919","endDate":1421225760,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421224500,"startStationId":"475","startStationName":"Lightermans Road, Millwall"}, +{"_id":"40545027","duration":780,"bikeId":"1525","endDate":1421225820,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421225040,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40544685","duration":1080,"bikeId":"4157","endDate":1421225880,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421224800,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40545277","duration":600,"bikeId":"11274","endDate":1421225880,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1421225280,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"40544601","duration":1200,"bikeId":"5034","endDate":1421225940,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421224740,"startStationId":"317","startStationName":"Dickens Square, Borough"}, +{"_id":"40545841","duration":300,"bikeId":"2349","endDate":1421226000,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1421225700,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40544860","duration":1140,"bikeId":"9633","endDate":1421226060,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1421224920,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40544588","duration":1440,"bikeId":"11322","endDate":1421226120,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1421224680,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"40546178","duration":180,"bikeId":"12777","endDate":1421226180,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1421226000,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"40546094","duration":300,"bikeId":"7814","endDate":1421226240,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421225940,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40546002","duration":480,"bikeId":"9998","endDate":1421226300,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1421225820,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"40545310","duration":1020,"bikeId":"4876","endDate":1421226300,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1421225280,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"40546052","duration":480,"bikeId":"6592","endDate":1421226360,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421225880,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40546090","duration":480,"bikeId":"4000","endDate":1421226420,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1421225940,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"40545799","duration":840,"bikeId":"3947","endDate":1421226480,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421225640,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40546584","duration":120,"bikeId":"9872","endDate":1421226600,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1421226480,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"40545177","duration":1500,"bikeId":"8662","endDate":1421226660,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1421225160,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40546485","duration":360,"bikeId":"4005","endDate":1421226720,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421226360,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40546340","duration":600,"bikeId":"4757","endDate":1421226780,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421226180,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40546457","duration":540,"bikeId":"10653","endDate":1421226840,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421226300,"startStationId":"451","startStationName":"Hermitage Court, Wapping"}, +{"_id":"40545640","duration":1380,"bikeId":"3703","endDate":1421226900,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1421225520,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40545175","duration":1800,"bikeId":"4924","endDate":1421226960,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421225160,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40546719","duration":420,"bikeId":"9150","endDate":1421227080,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421226660,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40546741","duration":480,"bikeId":"7040","endDate":1421227140,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1421226660,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"40546868","duration":420,"bikeId":"6038","endDate":1421227200,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1421226780,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40546350","duration":1080,"bikeId":"8339","endDate":1421227260,"endStationId":"556","endStationName":"Heron Quays DLR, Canary Wharf","startDate":1421226180,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40546974","duration":420,"bikeId":"6911","endDate":1421227320,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1421226900,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40546781","duration":660,"bikeId":"1186","endDate":1421227380,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1421226720,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40547182","duration":240,"bikeId":"12992","endDate":1421227500,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421227260,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40547001","duration":600,"bikeId":"4714","endDate":1421227560,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421226960,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40547272","duration":240,"bikeId":"10377","endDate":1421227620,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421227380,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40546752","duration":1080,"bikeId":"5093","endDate":1421227740,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1421226660,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40547209","duration":540,"bikeId":"10203","endDate":1421227800,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1421227260,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40547085","duration":840,"bikeId":"6766","endDate":1421227920,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1421227080,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40547373","duration":540,"bikeId":"6224","endDate":1421228040,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1421227500,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"40546306","duration":2040,"bikeId":"4384","endDate":1421228160,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1421226120,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40547404","duration":720,"bikeId":"9961","endDate":1421228280,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1421227560,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"40547306","duration":960,"bikeId":"11377","endDate":1421228400,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1421227440,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"40547254","duration":1140,"bikeId":"3121","endDate":1421228520,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421227380,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40546266","duration":2520,"bikeId":"151","endDate":1421228640,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421226120,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"40547693","duration":660,"bikeId":"12125","endDate":1421228760,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1421228100,"startStationId":"757","startStationName":"Harcourt Terrace, West Brompton"}, +{"_id":"40547384","duration":1320,"bikeId":"2059","endDate":1421228880,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1421227560,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40547780","duration":780,"bikeId":"6867","endDate":1421229060,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1421228280,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40547740","duration":960,"bikeId":"1345","endDate":1421229180,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421228220,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40547855","duration":900,"bikeId":"8897","endDate":1421229300,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1421228400,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"40548128","duration":360,"bikeId":"9930","endDate":1421229420,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1421229060,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40548143","duration":480,"bikeId":"10641","endDate":1421229600,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421229120,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40548103","duration":780,"bikeId":"2088","endDate":1421229780,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421229000,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40548362","duration":300,"bikeId":"12397","endDate":1421230020,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1421229720,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40548417","duration":300,"bikeId":"3504","endDate":1421230140,"endStationId":"365","endStationName":"City Road, Angel","startDate":1421229840,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"40548363","duration":720,"bikeId":"7694","endDate":1421230440,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1421229720,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40548018","duration":1800,"bikeId":"12180","endDate":1421230620,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421228820,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"40548399","duration":1020,"bikeId":"3828","endDate":1421230860,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1421229840,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40548483","duration":900,"bikeId":"6367","endDate":1421231100,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1421230200,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40548437","duration":1440,"bikeId":"2541","endDate":1421231400,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1421229960,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40512359","duration":129120,"bikeId":"7763","endDate":1421231640,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1421102520,"startStationId":"353","startStationName":"Greycoat Street , Westminster"}, +{"_id":"40548736","duration":840,"bikeId":"1880","endDate":1421232000,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1421231160,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40548875","duration":420,"bikeId":"1586","endDate":1421232240,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1421231820,"startStationId":"715","startStationName":"Aylward Street, Stepney"}, +{"_id":"40548722","duration":1380,"bikeId":"9304","endDate":1421232540,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421231160,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"40548925","duration":840,"bikeId":"8314","endDate":1421232780,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1421231940,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"40548889","duration":1200,"bikeId":"577","endDate":1421233020,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421231820,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40549187","duration":240,"bikeId":"3345","endDate":1421233260,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1421233020,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40549267","duration":300,"bikeId":"8569","endDate":1421233620,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421233320,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"40549297","duration":420,"bikeId":"10023","endDate":1421233920,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421233500,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40549434","duration":120,"bikeId":"10546","endDate":1421234220,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1421234100,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40549374","duration":720,"bikeId":"4618","endDate":1421234520,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421233800,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"40549322","duration":1200,"bikeId":"8230","endDate":1421234820,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1421233620,"startStationId":"134","startStationName":"Wapping High Street, Wapping"}, +{"_id":"40549087","duration":2520,"bikeId":"12051","endDate":1421235120,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1421232600,"startStationId":"363","startStationName":"Lord's, St. John's Wood"}, +{"_id":"40549634","duration":300,"bikeId":"6380","endDate":1421235540,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1421235240,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40549581","duration":1020,"bikeId":"11134","endDate":1421235960,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421234940,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40534173","duration":61380,"bikeId":"7098","endDate":1421236200,"endStationId":"527","endStationName":"Hansard Mews, Shepherds Bush","startDate":1421174820,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40549811","duration":540,"bikeId":"9796","endDate":1421236500,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1421235960,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40549924","duration":240,"bikeId":"5462","endDate":1421236740,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1421236500,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40549923","duration":480,"bikeId":"11847","endDate":1421236980,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1421236500,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40550022","duration":420,"bikeId":"12382","endDate":1421237280,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1421236860,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40550134","duration":360,"bikeId":"9384","endDate":1421237580,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1421237220,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40550136","duration":660,"bikeId":"2330","endDate":1421237880,"endStationId":"327","endStationName":"New North Road 1, Hoxton","startDate":1421237220,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"40550267","duration":360,"bikeId":"11207","endDate":1421238120,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1421237760,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40550239","duration":660,"bikeId":"7137","endDate":1421238360,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1421237700,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"40550101","duration":1500,"bikeId":"8331","endDate":1421238600,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1421237100,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40550263","duration":1080,"bikeId":"8316","endDate":1421238840,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1421237760,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40550388","duration":900,"bikeId":"9966","endDate":1421239020,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1421238120,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"40550365","duration":1260,"bikeId":"11360","endDate":1421239260,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1421238000,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40550566","duration":840,"bikeId":"11698","endDate":1421239500,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1421238660,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40550575","duration":960,"bikeId":"9762","endDate":1421239680,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1421238720,"startStationId":"765","startStationName":"Ranelagh Gardens, Fulham"}, +{"_id":"40550843","duration":360,"bikeId":"5782","endDate":1421239920,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1421239560,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40550612","duration":1320,"bikeId":"1229","endDate":1421240100,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1421238780,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40550903","duration":660,"bikeId":"1906","endDate":1421240340,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1421239680,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40550745","duration":1380,"bikeId":"2170","endDate":1421240580,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1421239200,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"40551078","duration":480,"bikeId":"11698","endDate":1421240880,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421240400,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40551139","duration":480,"bikeId":"4006","endDate":1421241060,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1421240580,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40551029","duration":1140,"bikeId":"136","endDate":1421241300,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1421240160,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40551388","duration":240,"bikeId":"5853","endDate":1421241540,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421241300,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40551437","duration":300,"bikeId":"1327","endDate":1421241720,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421241420,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40551375","duration":660,"bikeId":"5643","endDate":1421241900,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1421241240,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40551114","duration":1620,"bikeId":"11315","endDate":1421242140,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421240520,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40551488","duration":720,"bikeId":"10157","endDate":1421242320,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1421241600,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"40551372","duration":1320,"bikeId":"12997","endDate":1421242560,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1421241240,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40551718","duration":480,"bikeId":"3465","endDate":1421242800,"endStationId":"561","endStationName":"Rectory Square, Stepney","startDate":1421242320,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"40551873","duration":180,"bikeId":"10018","endDate":1421242980,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1421242800,"startStationId":"754","startStationName":"Grenfell Road, Avondale"}, +{"_id":"40551872","duration":660,"bikeId":"2858","endDate":1421243220,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1421242560,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"40551218","duration":2580,"bikeId":"9541","endDate":1421243400,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1421240820,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40551977","duration":480,"bikeId":"11778","endDate":1421243640,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421243160,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40551990","duration":540,"bikeId":"2485","endDate":1421243760,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1421243220,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40552144","duration":300,"bikeId":"1789","endDate":1421244000,"endStationId":"145","endStationName":"Ilchester Place, Kensington","startDate":1421243700,"startStationId":"606","startStationName":"Addison Road, Holland Park"}, +{"_id":"40551991","duration":1020,"bikeId":"5353","endDate":1421244240,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1421243220,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40552273","duration":240,"bikeId":"430","endDate":1421244480,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1421244240,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40552316","duration":360,"bikeId":"4080","endDate":1421244720,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1421244360,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40552002","duration":1740,"bikeId":"9752","endDate":1421245020,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421243280,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40552229","duration":1260,"bikeId":"5087","endDate":1421245320,"endStationId":"60","endStationName":"Lisson Grove, St. John's Wood","startDate":1421244060,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"40552453","duration":720,"bikeId":"10075","endDate":1421245560,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1421244840,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40552646","duration":120,"bikeId":"11315","endDate":1421245800,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1421245680,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40552086","duration":2520,"bikeId":"1119","endDate":1421246040,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1421243520,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40552701","duration":420,"bikeId":"3872","endDate":1421246340,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1421245920,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40552790","duration":420,"bikeId":"8638","endDate":1421246640,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1421246220,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40552860","duration":420,"bikeId":"6399","endDate":1421246880,"endStationId":"60","endStationName":"Lisson Grove, St. John's Wood","startDate":1421246460,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"40552732","duration":1080,"bikeId":"1628","endDate":1421247120,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1421246040,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40552851","duration":900,"bikeId":"4207","endDate":1421247360,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1421246460,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40552856","duration":1140,"bikeId":"8410","endDate":1421247600,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1421246460,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"40553144","duration":360,"bikeId":"4668","endDate":1421247900,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421247540,"startStationId":"611","startStationName":"Princedale Road , Holland Park"}, +{"_id":"40553137","duration":600,"bikeId":"6253","endDate":1421248140,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1421247540,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40552899","duration":1860,"bikeId":"9239","endDate":1421248440,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1421246580,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40551972","duration":5520,"bikeId":"1356","endDate":1421248680,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1421243160,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40553446","duration":360,"bikeId":"4668","endDate":1421248980,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421248620,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40553504","duration":360,"bikeId":"9406","endDate":1421249220,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1421248860,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"40553233","duration":1500,"bikeId":"10109","endDate":1421249400,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421247900,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40553633","duration":360,"bikeId":"12242","endDate":1421249700,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1421249340,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40553595","duration":660,"bikeId":"2191","endDate":1421249880,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1421249220,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40553395","duration":1680,"bikeId":"8860","endDate":1421250120,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421248440,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40553695","duration":780,"bikeId":"13017","endDate":1421250420,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1421249640,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40553838","duration":480,"bikeId":"4653","endDate":1421250660,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1421250180,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"40553886","duration":660,"bikeId":"12019","endDate":1421250960,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421250300,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40554122","duration":120,"bikeId":"12175","endDate":1421251140,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1421251020,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40554186","duration":180,"bikeId":"1359","endDate":1421251380,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1421251200,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40554237","duration":240,"bikeId":"9552","endDate":1421251560,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1421251320,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40553833","duration":1620,"bikeId":"9406","endDate":1421251740,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1421250120,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40553764","duration":1980,"bikeId":"12752","endDate":1421251920,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421249940,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40554297","duration":660,"bikeId":"977","endDate":1421252160,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1421251500,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40554490","duration":240,"bikeId":"6195","endDate":1421252340,"endStationId":"526","endStationName":"Lancaster Drive, Blackwall","startDate":1421252100,"startStationId":"455","startStationName":"East Ferry Road, Cubitt Town"}, +{"_id":"40554397","duration":720,"bikeId":"1048","endDate":1421252520,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1421251800,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"40554609","duration":300,"bikeId":"3302","endDate":1421252700,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1421252400,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40554322","duration":1260,"bikeId":"12855","endDate":1421252880,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1421251620,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40554578","duration":780,"bikeId":"10945","endDate":1421253060,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421252280,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40554743","duration":480,"bikeId":"1156","endDate":1421253300,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421252820,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40554476","duration":1440,"bikeId":"4527","endDate":1421253480,"endStationId":"550","endStationName":"Harford Street, Mile End","startDate":1421252040,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40554965","duration":360,"bikeId":"10014","endDate":1421253720,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1421253360,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"40554531","duration":1680,"bikeId":"7750","endDate":1421253840,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421252160,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40554794","duration":1080,"bikeId":"6756","endDate":1421254020,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1421252940,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40555065","duration":540,"bikeId":"12806","endDate":1421254140,"endStationId":"375","endStationName":"Kensington Town Hall, Kensington","startDate":1421253600,"startStationId":"559","startStationName":"Abbotsbury Road, Holland Park"}, +{"_id":"40554908","duration":1080,"bikeId":"7826","endDate":1421254320,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1421253240,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40554827","duration":1380,"bikeId":"8788","endDate":1421254440,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421253060,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"40555303","duration":540,"bikeId":"8285","endDate":1421254620,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421254080,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40554499","duration":2580,"bikeId":"955","endDate":1421254680,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421252100,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40555534","duration":240,"bikeId":"8945","endDate":1421254860,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1421254620,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40555493","duration":420,"bikeId":"5087","endDate":1421254980,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1421254560,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"40555346","duration":960,"bikeId":"7557","endDate":1421255160,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1421254200,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40555399","duration":960,"bikeId":"685","endDate":1421255280,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1421254320,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40555437","duration":1020,"bikeId":"5209","endDate":1421255400,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1421254380,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40555508","duration":960,"bikeId":"541","endDate":1421255520,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1421254560,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"40555873","duration":540,"bikeId":"5970","endDate":1421255700,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1421255160,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40555764","duration":780,"bikeId":"12628","endDate":1421255820,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421255040,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40555807","duration":780,"bikeId":"13003","endDate":1421255880,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1421255100,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40555996","duration":660,"bikeId":"9145","endDate":1421256000,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1421255340,"startStationId":"667","startStationName":"Shepherd's Bush Road North, Shepherd's Bush"}, +{"_id":"40555567","duration":1380,"bikeId":"690","endDate":1421256060,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1421254680,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40556326","duration":360,"bikeId":"8414","endDate":1421256180,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1421255820,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40555837","duration":1200,"bikeId":"5824","endDate":1421256300,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1421255100,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"40556093","duration":900,"bikeId":"5627","endDate":1421256360,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1421255460,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40556449","duration":420,"bikeId":"6736","endDate":1421256480,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1421256060,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40555960","duration":1320,"bikeId":"2095","endDate":1421256600,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1421255280,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40555319","duration":2580,"bikeId":"1283","endDate":1421256720,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1421254140,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40556573","duration":540,"bikeId":"9290","endDate":1421256780,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421256240,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40556918","duration":120,"bikeId":"5357","endDate":1421256900,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1421256780,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40556574","duration":780,"bikeId":"11092","endDate":1421257020,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1421256240,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40556973","duration":300,"bikeId":"5285","endDate":1421257140,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421256840,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40556770","duration":660,"bikeId":"12817","endDate":1421257200,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1421256540,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"40556494","duration":1200,"bikeId":"3871","endDate":1421257320,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1421256120,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40556445","duration":1320,"bikeId":"3764","endDate":1421257380,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1421256060,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40557018","duration":660,"bikeId":"79","endDate":1421257500,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1421256840,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40556928","duration":780,"bikeId":"12640","endDate":1421257560,"endStationId":"505","endStationName":"Ackroyd Drive, Bow","startDate":1421256780,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40557379","duration":420,"bikeId":"12088","endDate":1421257620,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421257200,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40556680","duration":1260,"bikeId":"4677","endDate":1421257680,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1421256420,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"40556906","duration":1020,"bikeId":"6671","endDate":1421257740,"endStationId":"693","endStationName":"Felsham Road, Putney","startDate":1421256720,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"40557415","duration":600,"bikeId":"3864","endDate":1421257860,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421257260,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40557749","duration":300,"bikeId":"11098","endDate":1421257920,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1421257620,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"40557307","duration":840,"bikeId":"2344","endDate":1421257980,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421257140,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40557884","duration":240,"bikeId":"4775","endDate":1421258040,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1421257800,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40557101","duration":1140,"bikeId":"4440","endDate":1421258100,"endStationId":"592","endStationName":"Bishop's Bridge Road East, Bayswater","startDate":1421256960,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40557356","duration":960,"bikeId":"7200","endDate":1421258160,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1421257200,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40558055","duration":240,"bikeId":"12060","endDate":1421258280,"endStationId":"551","endStationName":"Montgomery Square, Canary Wharf","startDate":1421258040,"startStationId":"538","startStationName":"Naval Row, Blackwall"}, +{"_id":"40557362","duration":1140,"bikeId":"7693","endDate":1421258340,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1421257200,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40557145","duration":1440,"bikeId":"10791","endDate":1421258400,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1421256960,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40558171","duration":300,"bikeId":"4590","endDate":1421258460,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1421258160,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40557786","duration":840,"bikeId":"12366","endDate":1421258520,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1421257680,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40558395","duration":180,"bikeId":"3254","endDate":1421258640,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1421258460,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40558200","duration":540,"bikeId":"11790","endDate":1421258700,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421258160,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"40558044","duration":780,"bikeId":"6980","endDate":1421258760,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1421257980,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40558309","duration":600,"bikeId":"1852","endDate":1421258880,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421258280,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40558515","duration":360,"bikeId":"7865","endDate":1421258940,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1421258580,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"40558528","duration":480,"bikeId":"445","endDate":1421259060,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1421258580,"startStationId":"525","startStationName":"Churchill Place, Canary Wharf"}, +{"_id":"40558698","duration":300,"bikeId":"11810","endDate":1421259120,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1421258820,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40558212","duration":960,"bikeId":"3529","endDate":1421259180,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421258220,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40558665","duration":480,"bikeId":"13071","endDate":1421259240,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1421258760,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40558413","duration":900,"bikeId":"10813","endDate":1421259360,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1421258460,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40559017","duration":300,"bikeId":"8120","endDate":1421259480,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1421259180,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40558762","duration":660,"bikeId":"9135","endDate":1421259540,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1421258880,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40558625","duration":900,"bikeId":"9900","endDate":1421259600,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421258700,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40558659","duration":960,"bikeId":"10138","endDate":1421259720,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1421258760,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40558755","duration":960,"bikeId":"5014","endDate":1421259840,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421258880,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"40559006","duration":720,"bikeId":"9968","endDate":1421259900,"endStationId":"435","endStationName":"Kennington Station, Kennington","startDate":1421259180,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40558733","duration":1200,"bikeId":"807","endDate":1421260020,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421258820,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40558936","duration":1080,"bikeId":"10932","endDate":1421260140,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1421259060,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"40561226","duration":240,"bikeId":"10366","endDate":1421260260,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1421260020,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40558106","duration":2340,"bikeId":"10532","endDate":1421260380,"endStationId":"463","endStationName":"Thurtle Road, Haggerston","startDate":1421258040,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"40559526","duration":360,"bikeId":"4893","endDate":1421260500,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1421260140,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"40559395","duration":720,"bikeId":"3207","endDate":1421260620,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421259900,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"40559054","duration":1500,"bikeId":"7496","endDate":1421260740,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421259240,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"40559720","duration":360,"bikeId":"740","endDate":1421260860,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421260500,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40559804","duration":240,"bikeId":"5698","endDate":1421260920,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1421260680,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40559703","duration":600,"bikeId":"961","endDate":1421261100,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421260500,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40559648","duration":840,"bikeId":"2562","endDate":1421261220,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1421260380,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40560085","duration":120,"bikeId":"12088","endDate":1421261340,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1421261220,"startStationId":"464","startStationName":"St. Mary and St. Michael Church, Stepney"}, +{"_id":"40559557","duration":1260,"bikeId":"10660","endDate":1421261460,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1421260200,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40559927","duration":720,"bikeId":"8395","endDate":1421261580,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1421260860,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40559844","duration":960,"bikeId":"7174","endDate":1421261700,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1421260740,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"40560059","duration":720,"bikeId":"10666","endDate":1421261880,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421261160,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40559871","duration":1200,"bikeId":"3780","endDate":1421262000,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1421260800,"startStationId":"647","startStationName":"Richmond Way, Shepherd's Bush"}, +{"_id":"40560099","duration":840,"bikeId":"13027","endDate":1421262120,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421261280,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40560406","duration":300,"bikeId":"12957","endDate":1421262240,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421261940,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40560506","duration":180,"bikeId":"11210","endDate":1421262420,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1421262240,"startStationId":"599","startStationName":"Manbre Road, Hammersmith"}, +{"_id":"40560183","duration":1080,"bikeId":"8820","endDate":1421262540,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1421261460,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40560227","duration":1260,"bikeId":"5729","endDate":1421262780,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1421261520,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"40560385","duration":960,"bikeId":"6464","endDate":1421262900,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1421261940,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40560739","duration":180,"bikeId":"5211","endDate":1421263020,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1421262840,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40560670","duration":600,"bikeId":"2490","endDate":1421263200,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421262600,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40560697","duration":660,"bikeId":"7961","endDate":1421263320,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421262660,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40560233","duration":1980,"bikeId":"2190","endDate":1421263500,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1421261520,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40560786","duration":780,"bikeId":"12665","endDate":1421263680,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1421262900,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40560600","duration":1380,"bikeId":"6447","endDate":1421263800,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1421262420,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40560414","duration":1980,"bikeId":"12239","endDate":1421263980,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421262000,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40561031","duration":660,"bikeId":"6307","endDate":1421264160,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421263500,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40560720","duration":1560,"bikeId":"8163","endDate":1421264340,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1421262780,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40560676","duration":1980,"bikeId":"1291","endDate":1421264580,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1421262600,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40561319","duration":420,"bikeId":"2242","endDate":1421264700,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1421264280,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40561187","duration":1020,"bikeId":"10596","endDate":1421264940,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1421263920,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40561498","duration":360,"bikeId":"12947","endDate":1421265180,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421264820,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"40561478","duration":600,"bikeId":"3580","endDate":1421265360,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1421264760,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40561622","duration":360,"bikeId":"7010","endDate":1421265600,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1421265240,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"40561343","duration":1380,"bikeId":"9955","endDate":1421265780,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421264400,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"40561630","duration":660,"bikeId":"8936","endDate":1421265960,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1421265300,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40561710","duration":660,"bikeId":"11511","endDate":1421266200,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1421265540,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"40561830","duration":420,"bikeId":"10439","endDate":1421266440,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1421266020,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40561966","duration":240,"bikeId":"2766","endDate":1421266680,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1421266440,"startStationId":"297","startStationName":"Geraldine Street, Elephant & Castle"}, +{"_id":"40561397","duration":2340,"bikeId":"7728","endDate":1421266860,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1421264520,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40561658","duration":1740,"bikeId":"9744","endDate":1421267100,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1421265360,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"40561956","duration":960,"bikeId":"3557","endDate":1421267340,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421266380,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40562181","duration":420,"bikeId":"12871","endDate":1421267580,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421267160,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40562255","duration":360,"bikeId":"12131","endDate":1421267820,"endStationId":"371","endStationName":"King Edward Walk, Waterloo","startDate":1421267460,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40562141","duration":1020,"bikeId":"1159","endDate":1421268060,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1421267040,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40562091","duration":1440,"bikeId":"4471","endDate":1421268300,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1421266860,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"40562080","duration":1680,"bikeId":"11976","endDate":1421268540,"endStationId":"712","endStationName":"Mile End Stadium, Mile End","startDate":1421266860,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40562330","duration":1020,"bikeId":"1502","endDate":1421268780,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1421267760,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40562515","duration":600,"bikeId":"6953","endDate":1421269200,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1421268600,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"40562528","duration":840,"bikeId":"11499","endDate":1421269500,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1421268660,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40562650","duration":660,"bikeId":"3585","endDate":1421269860,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1421269200,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40562704","duration":720,"bikeId":"2388","endDate":1421270220,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1421269500,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40562566","duration":1800,"bikeId":"3492","endDate":1421270580,"endStationId":"708","endStationName":"Disraeli Road, Putney","startDate":1421268780,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"40562899","duration":300,"bikeId":"6725","endDate":1421270940,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1421270640,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40562390","duration":3240,"bikeId":"11448","endDate":1421271240,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1421268000,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40563039","duration":120,"bikeId":"10744","endDate":1421271660,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1421271540,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40562887","duration":1560,"bikeId":"10927","endDate":1421272140,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1421270580,"startStationId":"283","startStationName":"Kingsway, Covent Garden"}, +{"_id":"40563101","duration":540,"bikeId":"12395","endDate":1421272620,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1421272080,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40563207","duration":240,"bikeId":"9414","endDate":1421273100,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1421272860,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"40563125","duration":1320,"bikeId":"12862","endDate":1421273580,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1421272260,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40563179","duration":1380,"bikeId":"10185","endDate":1421274060,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1421272680,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40563270","duration":1380,"bikeId":"7663","endDate":1421274720,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421273340,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40563454","duration":240,"bikeId":"12539","endDate":1421275260,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1421275020,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40563513","duration":360,"bikeId":"8116","endDate":1421276040,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1421275680,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40563565","duration":480,"bikeId":"2778","endDate":1421276760,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1421276280,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40563602","duration":1080,"bikeId":"7180","endDate":1421277840,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1421276760,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40563705","duration":360,"bikeId":"12572","endDate":1421278860,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421278500,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40563765","duration":360,"bikeId":"6016","endDate":1421280240,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1421279880,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40563830","duration":120,"bikeId":"4606","endDate":1421282400,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1421282280,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"40563888","duration":480,"bikeId":"10164","endDate":1421285400,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1421284920,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40563946","duration":600,"bikeId":"765","endDate":1421289300,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1421288700,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40564013","duration":1380,"bikeId":"9171","endDate":1421299560,"endStationId":"467","endStationName":"Southern Grove, Bow","startDate":1421298180,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40564091","duration":420,"bikeId":"2436","endDate":1421302380,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1421301960,"startStationId":"469","startStationName":"Lindfield Street, Poplar"}, +{"_id":"40564162","duration":660,"bikeId":"7314","endDate":1421303400,"endStationId":"551","endStationName":"Montgomery Square, Canary Wharf","startDate":1421302740,"startStationId":"716","startStationName":"Stainsby Road , Poplar"}, +{"_id":"40564250","duration":540,"bikeId":"7087","endDate":1421304060,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421303520,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40564336","duration":480,"bikeId":"2480","endDate":1421304540,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421304060,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40564309","duration":960,"bikeId":"12887","endDate":1421304900,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1421303940,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40564329","duration":1260,"bikeId":"4550","endDate":1421305320,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1421304060,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40564556","duration":480,"bikeId":"4653","endDate":1421305560,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421305080,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40564670","duration":300,"bikeId":"7393","endDate":1421305860,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421305560,"startStationId":"549","startStationName":"Gaywood Street, Elephant & Castle"}, +{"_id":"40564595","duration":840,"bikeId":"7340","endDate":1421306100,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1421305260,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40564604","duration":1080,"bikeId":"3543","endDate":1421306340,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1421305260,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40564938","duration":240,"bikeId":"1374","endDate":1421306580,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421306340,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40564822","duration":720,"bikeId":"2519","endDate":1421306760,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1421306040,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"40564986","duration":420,"bikeId":"5593","endDate":1421306940,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1421306520,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40564635","duration":1740,"bikeId":"8755","endDate":1421307180,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421305440,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"40565128","duration":540,"bikeId":"6337","endDate":1421307360,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1421306820,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40565376","duration":120,"bikeId":"2461","endDate":1421307480,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1421307360,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40565317","duration":420,"bikeId":"3337","endDate":1421307660,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421307240,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"40565120","duration":1020,"bikeId":"12134","endDate":1421307840,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421306820,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40565470","duration":420,"bikeId":"8170","endDate":1421307960,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421307540,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40565329","duration":780,"bikeId":"3745","endDate":1421308080,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421307300,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40565650","duration":360,"bikeId":"2556","endDate":1421308200,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1421307840,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40565142","duration":1440,"bikeId":"841","endDate":1421308320,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1421306880,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"40565565","duration":720,"bikeId":"10986","endDate":1421308440,"endStationId":"76","endStationName":"Longford Street, Regent's Park","startDate":1421307720,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"40565381","duration":1140,"bikeId":"3931","endDate":1421308500,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1421307360,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40565380","duration":1260,"bikeId":"12875","endDate":1421308620,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421307360,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"40566111","duration":180,"bikeId":"8394","endDate":1421308680,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1421308500,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"40565249","duration":1680,"bikeId":"3759","endDate":1421308800,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1421307120,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"40566060","duration":540,"bikeId":"9910","endDate":1421308920,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1421308380,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40566168","duration":480,"bikeId":"378","endDate":1421309040,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421308560,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"40565679","duration":1320,"bikeId":"8568","endDate":1421309160,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421307840,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"40566382","duration":360,"bikeId":"3344","endDate":1421309220,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1421308860,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"40566082","duration":900,"bikeId":"13032","endDate":1421309340,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1421308440,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"40566476","duration":420,"bikeId":"12083","endDate":1421309400,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1421308980,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40565995","duration":1200,"bikeId":"9177","endDate":1421309520,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421308320,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40566830","duration":180,"bikeId":"316","endDate":1421309580,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1421309400,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"40566386","duration":840,"bikeId":"6738","endDate":1421309700,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1421308860,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40566738","duration":420,"bikeId":"6287","endDate":1421309760,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1421309340,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40566792","duration":420,"bikeId":"6663","endDate":1421309820,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421309400,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40566393","duration":1080,"bikeId":"7683","endDate":1421309940,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1421308860,"startStationId":"146","startStationName":"Vauxhall Bridge , Pimlico"}, +{"_id":"40566623","duration":840,"bikeId":"11932","endDate":1421310000,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421309160,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40566534","duration":1080,"bikeId":"11698","endDate":1421310120,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1421309040,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40566123","duration":1680,"bikeId":"687","endDate":1421310180,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1421308500,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40566715","duration":960,"bikeId":"4394","endDate":1421310240,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1421309280,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40565933","duration":2100,"bikeId":"10316","endDate":1421310300,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421308200,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"40567519","duration":300,"bikeId":"1555","endDate":1421310420,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1421310120,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40567517","duration":360,"bikeId":"13078","endDate":1421310480,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1421310120,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40567485","duration":420,"bikeId":"12777","endDate":1421310540,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1421310120,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40567395","duration":600,"bikeId":"7580","endDate":1421310600,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1421310000,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40567594","duration":480,"bikeId":"8540","endDate":1421310660,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1421310180,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40566646","duration":1500,"bikeId":"336","endDate":1421310720,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1421309220,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40568007","duration":180,"bikeId":"5919","endDate":1421310780,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1421310600,"startStationId":"675","startStationName":"Usk Road, Battersea"}, +{"_id":"40567045","duration":1260,"bikeId":"9709","endDate":1421310900,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1421309640,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40567636","duration":720,"bikeId":"1334","endDate":1421310960,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1421310240,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40567901","duration":540,"bikeId":"1490","endDate":1421311020,"endStationId":"236","endStationName":"Fashion Street, Whitechapel","startDate":1421310480,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40568028","duration":420,"bikeId":"3781","endDate":1421311020,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1421310600,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40568310","duration":300,"bikeId":"2869","endDate":1421311140,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421310840,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40567978","duration":660,"bikeId":"13053","endDate":1421311200,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421310540,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"40567980","duration":720,"bikeId":"9839","endDate":1421311260,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1421310540,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40567701","duration":1020,"bikeId":"6667","endDate":1421311320,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1421310300,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40567912","duration":900,"bikeId":"11326","endDate":1421311380,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421310480,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"40567698","duration":1140,"bikeId":"5013","endDate":1421311440,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421310300,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"40568399","duration":600,"bikeId":"1070","endDate":1421311500,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1421310900,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40568746","duration":360,"bikeId":"2996","endDate":1421311560,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1421311200,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40568645","duration":540,"bikeId":"10622","endDate":1421311620,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421311080,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40567785","duration":1320,"bikeId":"10504","endDate":1421311680,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421310360,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40568757","duration":540,"bikeId":"12582","endDate":1421311740,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421311200,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40568464","duration":840,"bikeId":"6141","endDate":1421311800,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421310960,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40569102","duration":420,"bikeId":"8851","endDate":1421311860,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1421311440,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40568284","duration":1020,"bikeId":"458","endDate":1421311860,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1421310840,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40568580","duration":840,"bikeId":"4485","endDate":1421311920,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1421311080,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40569094","duration":540,"bikeId":"8227","endDate":1421311980,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1421311440,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40568507","duration":1020,"bikeId":"9667","endDate":1421312040,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1421311020,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40568974","duration":720,"bikeId":"6255","endDate":1421312100,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421311380,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40568178","duration":1380,"bikeId":"1011","endDate":1421312100,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421310720,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40568980","duration":780,"bikeId":"5909","endDate":1421312160,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1421311380,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40568913","duration":900,"bikeId":"5647","endDate":1421312220,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1421311320,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40569193","duration":720,"bikeId":"3095","endDate":1421312280,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421311560,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40569625","duration":420,"bikeId":"5895","endDate":1421312340,"endStationId":"375","endStationName":"Kensington Town Hall, Kensington","startDate":1421311920,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40568441","duration":1440,"bikeId":"3456","endDate":1421312400,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421310960,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"40569745","duration":480,"bikeId":"8929","endDate":1421312460,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1421311980,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40568535","duration":1440,"bikeId":"8695","endDate":1421312460,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421311020,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40568812","duration":1260,"bikeId":"3145","endDate":1421312520,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1421311260,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"40570260","duration":60,"bikeId":"4860","endDate":1421312580,"endStationId":"466","endStationName":"Whiston Road, Haggerston","startDate":1421312520,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"40569389","duration":960,"bikeId":"5462","endDate":1421312640,"endStationId":"174","endStationName":"Strand, Strand","startDate":1421311680,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"40568938","duration":1380,"bikeId":"4904","endDate":1421312700,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1421311320,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40569907","duration":600,"bikeId":"10434","endDate":1421312760,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1421312160,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"40569896","duration":660,"bikeId":"8637","endDate":1421312820,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421312160,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40569908","duration":720,"bikeId":"10","endDate":1421312880,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421312160,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"40570264","duration":420,"bikeId":"9400","endDate":1421312940,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421312520,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40570394","duration":360,"bikeId":"12314","endDate":1421313060,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1421312700,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40570186","duration":720,"bikeId":"6676","endDate":1421313120,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1421312400,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"40570589","duration":240,"bikeId":"9953","endDate":1421313180,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1421312940,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40570564","duration":360,"bikeId":"10013","endDate":1421313240,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1421312880,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40569773","duration":1260,"bikeId":"7059","endDate":1421313300,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1421312040,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40569569","duration":1500,"bikeId":"2899","endDate":1421313360,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421311860,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"40569188","duration":1920,"bikeId":"11711","endDate":1421313480,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421311560,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"40569458","duration":1800,"bikeId":"3052","endDate":1421313540,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1421311740,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40570968","duration":240,"bikeId":"11966","endDate":1421313660,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1421313420,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40570811","duration":480,"bikeId":"12440","endDate":1421313720,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1421313240,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"40570678","duration":720,"bikeId":"6776","endDate":1421313780,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1421313060,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40570780","duration":720,"bikeId":"9063","endDate":1421313900,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1421313180,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40570890","duration":600,"bikeId":"8058","endDate":1421313960,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421313360,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40570270","duration":1560,"bikeId":"6737","endDate":1421314080,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1421312520,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40570627","duration":1140,"bikeId":"3612","endDate":1421314140,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421313000,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40571286","duration":300,"bikeId":"4221","endDate":1421314260,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1421313960,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"40571089","duration":720,"bikeId":"3969","endDate":1421314320,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421313600,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40570895","duration":1080,"bikeId":"10812","endDate":1421314440,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1421313360,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"40571200","duration":780,"bikeId":"11403","endDate":1421314560,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421313780,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40571561","duration":180,"bikeId":"1265","endDate":1421314680,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1421314500,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40571381","duration":720,"bikeId":"7727","endDate":1421314800,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421314080,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40571288","duration":960,"bikeId":"8925","endDate":1421314920,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1421313960,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40571445","duration":840,"bikeId":"10277","endDate":1421315040,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1421314200,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40571543","duration":720,"bikeId":"8605","endDate":1421315160,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1421314440,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40571740","duration":420,"bikeId":"5439","endDate":1421315280,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421314860,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40571655","duration":780,"bikeId":"9881","endDate":1421315460,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1421314680,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40571818","duration":600,"bikeId":"6034","endDate":1421315580,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1421314980,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"40571946","duration":360,"bikeId":"11702","endDate":1421315700,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1421315340,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"40572021","duration":360,"bikeId":"6193","endDate":1421315880,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1421315520,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"40571869","duration":900,"bikeId":"12908","endDate":1421316000,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421315100,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"40571932","duration":960,"bikeId":"41","endDate":1421316240,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1421315280,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40571847","duration":1380,"bikeId":"1285","endDate":1421316420,"endStationId":"634","endStationName":"Brook Green South, Brook Green","startDate":1421315040,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"40572254","duration":420,"bikeId":"4147","endDate":1421316660,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1421316240,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"40572276","duration":600,"bikeId":"706","endDate":1421316900,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1421316300,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"40572164","duration":1200,"bikeId":"11021","endDate":1421317140,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1421315940,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40572299","duration":1080,"bikeId":"11234","endDate":1421317440,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1421316360,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40572367","duration":960,"bikeId":"3548","endDate":1421317680,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1421316720,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40572557","duration":480,"bikeId":"3499","endDate":1421317920,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1421317440,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40572634","duration":420,"bikeId":"11143","endDate":1421318100,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1421317680,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40572380","duration":1860,"bikeId":"7941","endDate":1421318580,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1421316720,"startStationId":"328","startStationName":"New North Road 2, Hoxton"}, +{"_id":"40572504","duration":1620,"bikeId":"4983","endDate":1421318820,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1421317200,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"40572575","duration":1620,"bikeId":"8348","endDate":1421319120,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1421317500,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40572831","duration":840,"bikeId":"9636","endDate":1421319420,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1421318580,"startStationId":"49","startStationName":"Curzon Street, Mayfair"}, +{"_id":"40572997","duration":420,"bikeId":"2435","endDate":1421319660,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421319240,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"40573091","duration":240,"bikeId":"2103","endDate":1421319900,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421319660,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40572983","duration":1020,"bikeId":"12629","endDate":1421320200,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421319180,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40573045","duration":1020,"bikeId":"10132","endDate":1421320500,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1421319480,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40573315","duration":120,"bikeId":"2305","endDate":1421320920,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1421320800,"startStationId":"412","startStationName":"Cleaver Street, Kennington"}, +{"_id":"40573145","duration":1380,"bikeId":"10572","endDate":1421321280,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1421319900,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40573386","duration":480,"bikeId":"12654","endDate":1421321580,"endStationId":"423","endStationName":"Eaton Square (South), Belgravia","startDate":1421321100,"startStationId":"209","startStationName":"Denyer Street, Knightsbridge"}, +{"_id":"40573482","duration":420,"bikeId":"11819","endDate":1421321940,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1421321520,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40573486","duration":720,"bikeId":"397","endDate":1421322240,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1421321520,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"40573625","duration":420,"bikeId":"12985","endDate":1421322600,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1421322180,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40573735","duration":240,"bikeId":"4569","endDate":1421322900,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421322660,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40573788","duration":240,"bikeId":"3280","endDate":1421323140,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421322900,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40573577","duration":1440,"bikeId":"11530","endDate":1421323380,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1421321940,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40573951","duration":180,"bikeId":"736","endDate":1421323740,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1421323560,"startStationId":"165","startStationName":"Orsett Terrace, Bayswater"}, +{"_id":"40573892","duration":660,"bikeId":"5208","endDate":1421323980,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1421323320,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"40574049","duration":300,"bikeId":"11324","endDate":1421324220,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421323920,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"40574052","duration":600,"bikeId":"6324","endDate":1421324580,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1421323980,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40573974","duration":1200,"bikeId":"13063","endDate":1421324820,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1421323620,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40573682","duration":2700,"bikeId":"1297","endDate":1421325180,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1421322480,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40574258","duration":600,"bikeId":"12903","endDate":1421325600,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421325000,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40574693","duration":600,"bikeId":"6955","endDate":1421325900,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1421325300,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"40574316","duration":960,"bikeId":"12994","endDate":1421326200,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1421325240,"startStationId":"696","startStationName":"Charing Cross Hospital, Hammersmith"}, +{"_id":"40574647","duration":0,"bikeId":"9506","endDate":1421326440,"endStationId":"8","endStationName":"Lodge Road, St. John's Wood","startDate":1421326440,"startStationId":"8","startStationName":"Lodge Road, St. John's Wood"}, +{"_id":"40574640","duration":240,"bikeId":"3538","endDate":1421326680,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1421326440,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"40574711","duration":240,"bikeId":"1192","endDate":1421326920,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421326680,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40574767","duration":240,"bikeId":"3793","endDate":1421327100,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421326860,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40574895","duration":120,"bikeId":"3623","endDate":1421327340,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421327220,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"40574884","duration":360,"bikeId":"5138","endDate":1421327520,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1421327160,"startStationId":"549","startStationName":"Gaywood Street, Elephant & Castle"}, +{"_id":"40574378","duration":2220,"bikeId":"13010","endDate":1421327760,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1421325540,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40575013","duration":420,"bikeId":"116","endDate":1421328000,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421327580,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"40575198","duration":60,"bikeId":"3727","endDate":1421328240,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1421328180,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"40575040","duration":780,"bikeId":"7842","endDate":1421328480,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421327700,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40575173","duration":540,"bikeId":"10378","endDate":1421328660,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1421328120,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40575279","duration":420,"bikeId":"5643","endDate":1421328900,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1421328480,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40575287","duration":600,"bikeId":"4911","endDate":1421329140,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1421328540,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40575448","duration":360,"bikeId":"233","endDate":1421329380,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421329020,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40575395","duration":780,"bikeId":"3043","endDate":1421329620,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1421328840,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"40575464","duration":780,"bikeId":"3536","endDate":1421329860,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421329080,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40575627","duration":360,"bikeId":"2236","endDate":1421330040,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421329680,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40575682","duration":600,"bikeId":"9045","endDate":1421330280,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1421329680,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40575411","duration":1500,"bikeId":"9096","endDate":1421330460,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1421328960,"startStationId":"353","startStationName":"Greycoat Street , Westminster"}, +{"_id":"40575809","duration":300,"bikeId":"6954","endDate":1421330700,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421330400,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40575768","duration":720,"bikeId":"6942","endDate":1421330940,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1421330220,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40575762","duration":1080,"bikeId":"9856","endDate":1421331240,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1421330160,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40576021","duration":240,"bikeId":"1736","endDate":1421331480,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1421331240,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"40576014","duration":660,"bikeId":"10027","endDate":1421331840,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421331180,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40576111","duration":480,"bikeId":"6859","endDate":1421332020,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1421331540,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40576286","duration":120,"bikeId":"4574","endDate":1421332380,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1421332260,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"40576148","duration":900,"bikeId":"7769","endDate":1421332620,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1421331720,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40576283","duration":660,"bikeId":"9268","endDate":1421332920,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1421332260,"startStationId":"250","startStationName":"Royal Avenue 1, Chelsea"}, +{"_id":"40576378","duration":660,"bikeId":"5113","endDate":1421333280,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1421332620,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40576356","duration":960,"bikeId":"1491","endDate":1421333520,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1421332560,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"40576569","duration":240,"bikeId":"10853","endDate":1421333760,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421333520,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40576567","duration":540,"bikeId":"5733","endDate":1421334060,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421333520,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40576576","duration":780,"bikeId":"11396","endDate":1421334360,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421333580,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40576318","duration":2280,"bikeId":"5624","endDate":1421334660,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1421332380,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40575827","duration":4560,"bikeId":"3084","endDate":1421335020,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421330460,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40576896","duration":360,"bikeId":"6877","endDate":1421335320,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1421334960,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40576970","duration":300,"bikeId":"2718","endDate":1421335620,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1421335320,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40576855","duration":1080,"bikeId":"3727","endDate":1421335860,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1421334780,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40576638","duration":2340,"bikeId":"9602","endDate":1421336160,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1421333820,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40577099","duration":600,"bikeId":"12572","endDate":1421336400,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421335800,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40577153","duration":600,"bikeId":"5896","endDate":1421336580,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1421335980,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40577246","duration":600,"bikeId":"8222","endDate":1421336820,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1421336220,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40577469","duration":60,"bikeId":"1932","endDate":1421337000,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1421336940,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40577433","duration":360,"bikeId":"8607","endDate":1421337180,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1421336820,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40577528","duration":300,"bikeId":"541","endDate":1421337420,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1421337120,"startStationId":"527","startStationName":"Hansard Mews, Shepherds Bush"}, +{"_id":"40577507","duration":540,"bikeId":"3821","endDate":1421337600,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1421337060,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40577414","duration":1140,"bikeId":"12062","endDate":1421337900,"endStationId":"571","endStationName":"Westfield Southern Terrace ,Shepherd's Bush","startDate":1421336760,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40577450","duration":1260,"bikeId":"3601","endDate":1421338140,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421336880,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40576965","duration":3120,"bikeId":"311","endDate":1421338380,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1421335260,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40577832","duration":480,"bikeId":"10380","endDate":1421338680,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1421338200,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40577882","duration":480,"bikeId":"6677","endDate":1421338860,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421338380,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40577657","duration":1500,"bikeId":"7297","endDate":1421339100,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1421337600,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40578117","duration":180,"bikeId":"6842","endDate":1421339280,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1421339100,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40578122","duration":360,"bikeId":"9406","endDate":1421339460,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1421339100,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40578262","duration":0,"bikeId":"3407","endDate":1421339580,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1421339580,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40578254","duration":300,"bikeId":"11070","endDate":1421339820,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1421339520,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40578296","duration":360,"bikeId":"6105","endDate":1421340060,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421339700,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40578380","duration":420,"bikeId":"3258","endDate":1421340300,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1421339880,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40578551","duration":180,"bikeId":"8572","endDate":1421340480,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1421340300,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40578412","duration":720,"bikeId":"5163","endDate":1421340600,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1421339880,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40578305","duration":1080,"bikeId":"9190","endDate":1421340780,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1421339700,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40578201","duration":1680,"bikeId":"4427","endDate":1421341020,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1421339340,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40578452","duration":1080,"bikeId":"225","endDate":1421341140,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421340060,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"40578810","duration":360,"bikeId":"302","endDate":1421341260,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1421340900,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40578872","duration":360,"bikeId":"10773","endDate":1421341440,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421341080,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40578642","duration":1140,"bikeId":"11320","endDate":1421341620,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1421340480,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40579044","duration":360,"bikeId":"3941","endDate":1421341740,"endStationId":"208","endStationName":"Mallory Street, Marylebone","startDate":1421341380,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40579080","duration":420,"bikeId":"10804","endDate":1421341860,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1421341440,"startStationId":"714","startStationName":"Stewart's Road, Nine Elms"}, +{"_id":"40578497","duration":1860,"bikeId":"12635","endDate":1421341980,"endStationId":"592","endStationName":"Bishop's Bridge Road East, Bayswater","startDate":1421340120,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40579240","duration":420,"bikeId":"7002","endDate":1421342100,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1421341680,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"40579246","duration":540,"bikeId":"5387","endDate":1421342220,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1421341680,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40579342","duration":480,"bikeId":"6376","endDate":1421342340,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1421341860,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"40579429","duration":480,"bikeId":"5818","endDate":1421342460,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1421341980,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40579268","duration":840,"bikeId":"99","endDate":1421342580,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1421341740,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"40579168","duration":1020,"bikeId":"6778","endDate":1421342640,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421341620,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40578970","duration":1500,"bikeId":"5019","endDate":1421342760,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1421341260,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40579782","duration":300,"bikeId":"8348","endDate":1421342880,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1421342580,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40579488","duration":960,"bikeId":"9011","endDate":1421343000,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1421342040,"startStationId":"291","startStationName":"Claverton Street, Pimlico"}, +{"_id":"40579434","duration":1080,"bikeId":"1290","endDate":1421343060,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1421341980,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40579569","duration":960,"bikeId":"10828","endDate":1421343180,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421342220,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40580095","duration":300,"bikeId":"12011","endDate":1421343300,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1421343000,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"40579567","duration":1140,"bikeId":"1174","endDate":1421343360,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421342220,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40579923","duration":720,"bikeId":"12873","endDate":1421343480,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1421342760,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40580014","duration":660,"bikeId":"12401","endDate":1421343540,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1421342880,"startStationId":"665","startStationName":"Smugglers Way, Wandsworth"}, +{"_id":"40580265","duration":420,"bikeId":"12858","endDate":1421343660,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1421343240,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40580053","duration":780,"bikeId":"13017","endDate":1421343720,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421342940,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40580303","duration":540,"bikeId":"7196","endDate":1421343840,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1421343300,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40580204","duration":780,"bikeId":"8915","endDate":1421343960,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1421343180,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40580462","duration":540,"bikeId":"6758","endDate":1421344020,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421343480,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40580312","duration":780,"bikeId":"9308","endDate":1421344080,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1421343300,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40580122","duration":1080,"bikeId":"97","endDate":1421344140,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421343060,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40580079","duration":1260,"bikeId":"11001","endDate":1421344260,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1421343000,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"40580314","duration":1020,"bikeId":"11236","endDate":1421344320,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421343300,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40581053","duration":240,"bikeId":"9017","endDate":1421344380,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1421344140,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40580858","duration":540,"bikeId":"9246","endDate":1421344440,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1421343900,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40580995","duration":480,"bikeId":"3859","endDate":1421344560,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1421344080,"startStationId":"775","startStationName":"Little Brook Green, Brook Green"}, +{"_id":"40579994","duration":1800,"bikeId":"3489","endDate":1421344620,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1421342820,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"40580636","duration":1080,"bikeId":"1411","endDate":1421344680,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421343600,"startStationId":"530","startStationName":"Newby Place, Poplar"}, +{"_id":"40581175","duration":480,"bikeId":"6721","endDate":1421344800,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1421344320,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40581092","duration":660,"bikeId":"6629","endDate":1421344860,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1421344200,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40581031","duration":780,"bikeId":"8520","endDate":1421344920,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421344140,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40581537","duration":240,"bikeId":"2627","endDate":1421345040,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1421344800,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40581269","duration":660,"bikeId":"11860","endDate":1421345100,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1421344440,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"40581573","duration":420,"bikeId":"11751","endDate":1421345220,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1421344800,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40581781","duration":180,"bikeId":"11456","endDate":1421345280,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1421345100,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40581575","duration":540,"bikeId":"11107","endDate":1421345340,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1421344800,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40581751","duration":420,"bikeId":"7427","endDate":1421345460,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1421345040,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40581625","duration":600,"bikeId":"311","endDate":1421345520,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1421344920,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40581846","duration":480,"bikeId":"9862","endDate":1421345640,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421345160,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40581609","duration":840,"bikeId":"7009","endDate":1421345700,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1421344860,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40581546","duration":1020,"bikeId":"10867","endDate":1421345820,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421344800,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40582210","duration":300,"bikeId":"436","endDate":1421345880,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421345580,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40581141","duration":1680,"bikeId":"12244","endDate":1421345940,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421344260,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40581004","duration":1980,"bikeId":"11136","endDate":1421346060,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1421344080,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40582546","duration":180,"bikeId":"10818","endDate":1421346120,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1421345940,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40582559","duration":180,"bikeId":"9283","endDate":1421346180,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1421346000,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40582728","duration":0,"bikeId":"8137","endDate":1421346240,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1421346240,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40582245","duration":780,"bikeId":"119","endDate":1421346360,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421345580,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40582737","duration":180,"bikeId":"3609","endDate":1421346420,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1421346240,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40582668","duration":360,"bikeId":"7439","endDate":1421346480,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1421346120,"startStationId":"525","startStationName":"Churchill Place, Canary Wharf"}, +{"_id":"40582224","duration":960,"bikeId":"2330","endDate":1421346540,"endStationId":"408","endStationName":"Paddington Green Police Station, Paddington","startDate":1421345580,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40582830","duration":300,"bikeId":"3176","endDate":1421346660,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1421346360,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40582571","duration":720,"bikeId":"1386","endDate":1421346720,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1421346000,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"40583006","duration":240,"bikeId":"7129","endDate":1421346840,"endStationId":"441","endStationName":"Sail Street, Vauxhall","startDate":1421346600,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40582572","duration":960,"bikeId":"1740","endDate":1421346960,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421346000,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40582962","duration":480,"bikeId":"9593","endDate":1421347020,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1421346540,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"40582503","duration":1200,"bikeId":"6259","endDate":1421347140,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1421345940,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40582878","duration":780,"bikeId":"7498","endDate":1421347200,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1421346420,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40582816","duration":1020,"bikeId":"9588","endDate":1421347320,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421346300,"startStationId":"564","startStationName":"Somerset House, Strand"}, +{"_id":"40582882","duration":960,"bikeId":"3130","endDate":1421347380,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1421346420,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"40582853","duration":1080,"bikeId":"7876","endDate":1421347500,"endStationId":"565","endStationName":"Selby Street, Whitechapel","startDate":1421346420,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40583422","duration":420,"bikeId":"5255","endDate":1421347620,"endStationId":"765","endStationName":"Ranelagh Gardens, Fulham","startDate":1421347200,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"40583415","duration":480,"bikeId":"3403","endDate":1421347680,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421347200,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40583244","duration":840,"bikeId":"11014","endDate":1421347800,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1421346960,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40583341","duration":780,"bikeId":"10380","endDate":1421347920,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1421347140,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"40583613","duration":420,"bikeId":"3033","endDate":1421347980,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421347560,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40583495","duration":780,"bikeId":"12379","endDate":1421348100,"endStationId":"698","endStationName":"Shoreditch Court, Haggerston","startDate":1421347320,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40583776","duration":360,"bikeId":"8351","endDate":1421348160,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1421347800,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40583756","duration":540,"bikeId":"9406","endDate":1421348280,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1421347740,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"40583773","duration":600,"bikeId":"11026","endDate":1421348400,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1421347800,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40583762","duration":780,"bikeId":"7423","endDate":1421348520,"endStationId":"59","endStationName":"Rodney Street, Angel","startDate":1421347740,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40583420","duration":1380,"bikeId":"5631","endDate":1421348580,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1421347200,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40583799","duration":900,"bikeId":"10361","endDate":1421348700,"endStationId":"766","endStationName":"Ram Street, Wandsworth","startDate":1421347800,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"40584012","duration":660,"bikeId":"1137","endDate":1421348820,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1421348160,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40584336","duration":120,"bikeId":"12541","endDate":1421348940,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421348820,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40584159","duration":600,"bikeId":"953","endDate":1421349060,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1421348460,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40584182","duration":660,"bikeId":"12133","endDate":1421349180,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1421348520,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40584423","duration":360,"bikeId":"961","endDate":1421349300,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1421348940,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40584519","duration":300,"bikeId":"2527","endDate":1421349480,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1421349180,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40584289","duration":900,"bikeId":"12877","endDate":1421349600,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1421348700,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40584602","duration":360,"bikeId":"5579","endDate":1421349720,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1421349360,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40584694","duration":300,"bikeId":"6108","endDate":1421349900,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1421349600,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40584687","duration":420,"bikeId":"9012","endDate":1421350020,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1421349600,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40584673","duration":600,"bikeId":"4889","endDate":1421350140,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1421349540,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40584698","duration":720,"bikeId":"8899","endDate":1421350320,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1421349600,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40584805","duration":600,"bikeId":"11414","endDate":1421350440,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1421349840,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40584414","duration":1620,"bikeId":"2841","endDate":1421350560,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421348940,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"40584552","duration":1500,"bikeId":"2540","endDate":1421350740,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1421349240,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40584759","duration":1140,"bikeId":"8","endDate":1421350920,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1421349780,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40584967","duration":840,"bikeId":"9019","endDate":1421351100,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1421350260,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"40585009","duration":900,"bikeId":"217","endDate":1421351280,"endStationId":"515","endStationName":"Russell Gardens, Holland Park","startDate":1421350380,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40584791","duration":1620,"bikeId":"12877","endDate":1421351460,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1421349840,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40585298","duration":480,"bikeId":"11964","endDate":1421351700,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1421351220,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40585160","duration":1080,"bikeId":"6023","endDate":1421351940,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1421350860,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40585040","duration":1620,"bikeId":"4080","endDate":1421352120,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1421350500,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40585436","duration":660,"bikeId":"6744","endDate":1421352300,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1421351640,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40585584","duration":360,"bikeId":"2959","endDate":1421352480,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1421352120,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40585497","duration":840,"bikeId":"9279","endDate":1421352660,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1421351820,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40585558","duration":900,"bikeId":"6526","endDate":1421352960,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1421352060,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40585668","duration":780,"bikeId":"6785","endDate":1421353200,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1421352420,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40585786","duration":600,"bikeId":"3260","endDate":1421353440,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1421352840,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40585895","duration":420,"bikeId":"11694","endDate":1421353680,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1421353260,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40585658","duration":1440,"bikeId":"12831","endDate":1421353860,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1421352420,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40586085","duration":120,"bikeId":"8851","endDate":1421354160,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1421354040,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"40585989","duration":960,"bikeId":"11408","endDate":1421354520,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1421353560,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40585910","duration":1560,"bikeId":"8838","endDate":1421354820,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1421353260,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40586159","duration":780,"bikeId":"6226","endDate":1421355180,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1421354400,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"40586219","duration":720,"bikeId":"11041","endDate":1421355480,"endStationId":"716","endStationName":"Stainsby Road , Poplar","startDate":1421354760,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"40586401","duration":240,"bikeId":"3780","endDate":1421355840,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421355600,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40586261","duration":1140,"bikeId":"12511","endDate":1421356080,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1421354940,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40586496","duration":300,"bikeId":"184","endDate":1421356440,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1421356140,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40586427","duration":1080,"bikeId":"9279","endDate":1421356860,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1421355780,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40586550","duration":780,"bikeId":"8324","endDate":1421357220,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1421356440,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40586668","duration":480,"bikeId":"4055","endDate":1421357520,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1421357040,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"40586454","duration":1920,"bikeId":"4590","endDate":1421357820,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1421355900,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40586680","duration":1140,"bikeId":"12182","endDate":1421358240,"endStationId":"471","endStationName":"Hewison Street, Old Ford","startDate":1421357100,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40586805","duration":780,"bikeId":"4002","endDate":1421358600,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1421357820,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40586893","duration":600,"bikeId":"3640","endDate":1421359080,"endStationId":"561","endStationName":"Rectory Square, Stepney","startDate":1421358480,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40586953","duration":660,"bikeId":"2401","endDate":1421359500,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421358840,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40586907","duration":1500,"bikeId":"10643","endDate":1421360040,"endStationId":"412","endStationName":"Cleaver Street, Kennington","startDate":1421358540,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40587152","duration":300,"bikeId":"1928","endDate":1421360460,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1421360160,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40587209","duration":300,"bikeId":"6118","endDate":1421360880,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421360580,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"40587242","duration":540,"bikeId":"8850","endDate":1421361420,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1421360880,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40587164","duration":1680,"bikeId":"10253","endDate":1421361900,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1421360220,"startStationId":"455","startStationName":"East Ferry Road, Cubitt Town"}, +{"_id":"40587229","duration":1680,"bikeId":"12115","endDate":1421362440,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1421360760,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40587401","duration":900,"bikeId":"1402","endDate":1421363100,"endStationId":"726","endStationName":"Alfreda Street, Battersea Park","startDate":1421362200,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"40587418","duration":1320,"bikeId":"1971","endDate":1421363700,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1421362380,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"40587577","duration":540,"bikeId":"2022","endDate":1421364540,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1421364000,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40587564","duration":1260,"bikeId":"9019","endDate":1421365200,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1421363940,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40587446","duration":3360,"bikeId":"10836","endDate":1421365980,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1421362620,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"40587766","duration":420,"bikeId":"3723","endDate":1421366760,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1421366340,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40587842","duration":420,"bikeId":"5047","endDate":1421367660,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1421367240,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40587914","duration":300,"bikeId":"11275","endDate":1421368560,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1421368260,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40587957","duration":840,"bikeId":"11743","endDate":1421369760,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1421368920,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40587994","duration":2040,"bikeId":"777","endDate":1421371980,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1421369940,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40588099","duration":1020,"bikeId":"2234","endDate":1421373960,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1421372940,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40588161","duration":1200,"bikeId":"10739","endDate":1421376840,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1421375640,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40588234","duration":480,"bikeId":"8010","endDate":1421379360,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1421378880,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40588294","duration":1140,"bikeId":"12916","endDate":1421385060,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421383920,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40588362","duration":600,"bikeId":"9361","endDate":1421387760,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1421387160,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"40588431","duration":600,"bikeId":"8928","endDate":1421389380,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1421388780,"startStationId":"608","startStationName":"Colet Gardens, Hammersmith"}, +{"_id":"40588524","duration":360,"bikeId":"2477","endDate":1421390160,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1421389800,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40588618","duration":420,"bikeId":"576","endDate":1421390820,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421390400,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40588544","duration":1200,"bikeId":"9861","endDate":1421391180,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1421389980,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40588782","duration":300,"bikeId":"302","endDate":1421391480,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421391180,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40588579","duration":1440,"bikeId":"11136","endDate":1421391720,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421390280,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40588748","duration":960,"bikeId":"818","endDate":1421392020,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1421391060,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40588892","duration":720,"bikeId":"947","endDate":1421392320,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421391600,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40588902","duration":1020,"bikeId":"9083","endDate":1421392620,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1421391600,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40589019","duration":780,"bikeId":"13008","endDate":1421392860,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1421392080,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40589194","duration":420,"bikeId":"5750","endDate":1421393040,"endStationId":"276","endStationName":"Lower Thames Street, Monument","startDate":1421392620,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40589211","duration":600,"bikeId":"5188","endDate":1421393280,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1421392680,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"40588956","duration":1620,"bikeId":"93","endDate":1421393460,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1421391840,"startStationId":"470","startStationName":"Mostyn Grove, Bow"}, +{"_id":"40589478","duration":360,"bikeId":"11773","endDate":1421393640,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1421393280,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40589655","duration":240,"bikeId":"5839","endDate":1421393820,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1421393580,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40589669","duration":300,"bikeId":"6991","endDate":1421393940,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1421393640,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"40589583","duration":600,"bikeId":"10564","endDate":1421394120,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421393520,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40589769","duration":360,"bikeId":"8890","endDate":1421394240,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1421393880,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40589628","duration":780,"bikeId":"12141","endDate":1421394360,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421393580,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40589971","duration":240,"bikeId":"10476","endDate":1421394480,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1421394240,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40589788","duration":720,"bikeId":"5577","endDate":1421394600,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1421393880,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"40589874","duration":660,"bikeId":"10524","endDate":1421394720,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1421394060,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40590031","duration":540,"bikeId":"8930","endDate":1421394840,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1421394300,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40589961","duration":780,"bikeId":"6959","endDate":1421394960,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1421394180,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40590171","duration":480,"bikeId":"10478","endDate":1421395020,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1421394540,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40590204","duration":540,"bikeId":"2898","endDate":1421395140,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1421394600,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40590299","duration":480,"bikeId":"8649","endDate":1421395260,"endStationId":"551","endStationName":"Montgomery Square, Canary Wharf","startDate":1421394780,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40590398","duration":480,"bikeId":"3494","endDate":1421395380,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1421394900,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40590382","duration":660,"bikeId":"6448","endDate":1421395500,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1421394840,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40590444","duration":660,"bikeId":"11218","endDate":1421395620,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421394960,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"40590131","duration":1200,"bikeId":"12053","endDate":1421395680,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1421394480,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40590338","duration":1020,"bikeId":"7760","endDate":1421395800,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1421394780,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40590978","duration":240,"bikeId":"11400","endDate":1421395920,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421395680,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40590515","duration":960,"bikeId":"146","endDate":1421395980,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421395020,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40589716","duration":2280,"bikeId":"1850","endDate":1421396040,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421393760,"startStationId":"767","startStationName":"Santos Road, Wandsworth"}, +{"_id":"40590702","duration":840,"bikeId":"6328","endDate":1421396160,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1421395320,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40590364","duration":1380,"bikeId":"12876","endDate":1421396220,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1421394840,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"40591016","duration":600,"bikeId":"12765","endDate":1421396340,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1421395740,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40590536","duration":1320,"bikeId":"2513","endDate":1421396400,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1421395080,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40591424","duration":360,"bikeId":"437","endDate":1421396520,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1421396160,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"40591169","duration":660,"bikeId":"7040","endDate":1421396580,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1421395920,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40591414","duration":480,"bikeId":"9146","endDate":1421396640,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1421396160,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40590936","duration":1140,"bikeId":"2446","endDate":1421396760,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1421395620,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40591588","duration":480,"bikeId":"11544","endDate":1421396820,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421396340,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40591730","duration":360,"bikeId":"4053","endDate":1421396880,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1421396520,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"40591589","duration":600,"bikeId":"8622","endDate":1421396940,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421396340,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40591911","duration":420,"bikeId":"8022","endDate":1421397060,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1421396640,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40591434","duration":960,"bikeId":"6273","endDate":1421397120,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421396160,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40591544","duration":840,"bikeId":"3014","endDate":1421397180,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1421396340,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"40591258","duration":1260,"bikeId":"5061","endDate":1421397240,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421395980,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40591698","duration":840,"bikeId":"8862","endDate":1421397300,"endStationId":"189","endStationName":"Claremont Square, Angel","startDate":1421396460,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40592084","duration":540,"bikeId":"4721","endDate":1421397360,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421396820,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40591933","duration":720,"bikeId":"11312","endDate":1421397420,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421396700,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40592426","duration":360,"bikeId":"2126","endDate":1421397480,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1421397120,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40591875","duration":900,"bikeId":"8609","endDate":1421397540,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421396640,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40592192","duration":720,"bikeId":"4513","endDate":1421397600,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1421396880,"startStationId":"521","startStationName":"Driffield Road, Old Ford"}, +{"_id":"40592597","duration":420,"bikeId":"1840","endDate":1421397660,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1421397240,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40591810","duration":1140,"bikeId":"10650","endDate":1421397720,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1421396580,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40591912","duration":1140,"bikeId":"9900","endDate":1421397780,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1421396640,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40592623","duration":540,"bikeId":"7297","endDate":1421397840,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1421397300,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40592842","duration":480,"bikeId":"12141","endDate":1421397900,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421397420,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40593310","duration":120,"bikeId":"10745","endDate":1421397960,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1421397840,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40591738","duration":1500,"bikeId":"11288","endDate":1421398020,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1421396520,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40592331","duration":1080,"bikeId":"11963","endDate":1421398080,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1421397000,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40591655","duration":1680,"bikeId":"9414","endDate":1421398140,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1421396460,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40593472","duration":240,"bikeId":"4424","endDate":1421398200,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1421397960,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40593183","duration":540,"bikeId":"1777","endDate":1421398260,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421397720,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"40592449","duration":1140,"bikeId":"4806","endDate":1421398260,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1421397120,"startStationId":"768","startStationName":"Clapham Common Northside, Clapham Common"}, +{"_id":"40593413","duration":420,"bikeId":"5017","endDate":1421398320,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1421397900,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"40591774","duration":1860,"bikeId":"6220","endDate":1421398380,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421396520,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"40593572","duration":420,"bikeId":"13007","endDate":1421398440,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1421398020,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"40592850","duration":1080,"bikeId":"9690","endDate":1421398500,"endStationId":"289","endStationName":"South Audley Street, Mayfair","startDate":1421397420,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40592908","duration":1080,"bikeId":"9992","endDate":1421398560,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1421397480,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40593258","duration":780,"bikeId":"6040","endDate":1421398560,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1421397780,"startStationId":"722","startStationName":"Finnis Street, Bethnal Green"}, +{"_id":"40593763","duration":360,"bikeId":"9317","endDate":1421398620,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1421398260,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40593134","duration":1020,"bikeId":"12230","endDate":1421398680,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421397660,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"40593400","duration":840,"bikeId":"9639","endDate":1421398740,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421397900,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"40592722","duration":1440,"bikeId":"7637","endDate":1421398800,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421397360,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"40593305","duration":1020,"bikeId":"2046","endDate":1421398860,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421397840,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40593899","duration":540,"bikeId":"7776","endDate":1421398920,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1421398380,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40594150","duration":360,"bikeId":"1202","endDate":1421398980,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1421398620,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40593406","duration":1140,"bikeId":"4162","endDate":1421399040,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421397900,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"40594408","duration":240,"bikeId":"11179","endDate":1421399100,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1421398860,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"40594412","duration":300,"bikeId":"11941","endDate":1421399160,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421398860,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40593417","duration":1320,"bikeId":"4516","endDate":1421399220,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1421397900,"startStationId":"516","startStationName":"Chrisp Street Market, Poplar"}, +{"_id":"40594373","duration":480,"bikeId":"11861","endDate":1421399340,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1421398860,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40594617","duration":300,"bikeId":"13058","endDate":1421399400,"endStationId":"310","endStationName":"Black Prince Road, Vauxhall","startDate":1421399100,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40594676","duration":300,"bikeId":"5155","endDate":1421399460,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1421399160,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"40593622","duration":1440,"bikeId":"4987","endDate":1421399520,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421398080,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40593730","duration":1440,"bikeId":"9302","endDate":1421399640,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1421398200,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40594152","duration":1080,"bikeId":"5594","endDate":1421399700,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1421398620,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"40594863","duration":360,"bikeId":"5026","endDate":1421399760,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1421399400,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40594583","duration":780,"bikeId":"4065","endDate":1421399820,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1421399040,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"40594831","duration":600,"bikeId":"2046","endDate":1421399940,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1421399340,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40595132","duration":240,"bikeId":"6513","endDate":1421400000,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421399760,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40595096","duration":360,"bikeId":"12810","endDate":1421400060,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421399700,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40594770","duration":840,"bikeId":"11270","endDate":1421400120,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1421399280,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40595097","duration":540,"bikeId":"10063","endDate":1421400240,"endStationId":"143","endStationName":"Pont Street, Knightsbridge","startDate":1421399700,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40593923","duration":1920,"bikeId":"11523","endDate":1421400300,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1421398380,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"40594828","duration":1080,"bikeId":"5141","endDate":1421400420,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1421399340,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40595322","duration":540,"bikeId":"435","endDate":1421400540,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421400000,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40595331","duration":540,"bikeId":"8116","endDate":1421400600,"endStationId":"207","endStationName":"Grosvenor Crescent, Belgravia","startDate":1421400060,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40594353","duration":1860,"bikeId":"10385","endDate":1421400660,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1421398800,"startStationId":"724","startStationName":"Alma Road, Wandsworth"}, +{"_id":"40594875","duration":1380,"bikeId":"5600","endDate":1421400780,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1421399400,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"40595246","duration":1020,"bikeId":"9025","endDate":1421400900,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421399880,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40595386","duration":900,"bikeId":"8775","endDate":1421401020,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421400120,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40595691","duration":420,"bikeId":"9490","endDate":1421401140,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421400720,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40595851","duration":240,"bikeId":"5394","endDate":1421401260,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421401020,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40595597","duration":840,"bikeId":"6116","endDate":1421401380,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1421400540,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40595659","duration":840,"bikeId":"6669","endDate":1421401500,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1421400660,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40595874","duration":600,"bikeId":"6821","endDate":1421401680,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1421401080,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"40595394","duration":1620,"bikeId":"6811","endDate":1421401800,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1421400180,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40595995","duration":600,"bikeId":"8833","endDate":1421401920,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421401320,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40595639","duration":1440,"bikeId":"1075","endDate":1421402040,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1421400600,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40596262","duration":240,"bikeId":"1290","endDate":1421402220,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421401980,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40596258","duration":360,"bikeId":"11548","endDate":1421402340,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1421401980,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"40595818","duration":1560,"bikeId":"9330","endDate":1421402520,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1421400960,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40596288","duration":600,"bikeId":"9716","endDate":1421402700,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1421402100,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40596394","duration":480,"bikeId":"3247","endDate":1421402940,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1421402460,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40596362","duration":840,"bikeId":"3128","endDate":1421403180,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1421402340,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40596530","duration":540,"bikeId":"6410","endDate":1421403420,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1421402880,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40596439","duration":1140,"bikeId":"2025","endDate":1421403720,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1421402580,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40596395","duration":1500,"bikeId":"568","endDate":1421403960,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421402460,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40596718","duration":540,"bikeId":"5884","endDate":1421404200,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1421403660,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40596762","duration":660,"bikeId":"11403","endDate":1421404500,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1421403840,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40596798","duration":780,"bikeId":"4109","endDate":1421404800,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1421404020,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40596846","duration":900,"bikeId":"11798","endDate":1421405100,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1421404200,"startStationId":"451","startStationName":"Hermitage Court, Wapping"}, +{"_id":"40597048","duration":420,"bikeId":"840","endDate":1421405340,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1421404920,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"40596817","duration":1560,"bikeId":"9752","endDate":1421405640,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421404080,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40596763","duration":1920,"bikeId":"2901","endDate":1421405820,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1421403900,"startStationId":"725","startStationName":"Thessaly Road North, Nine Elms"}, +{"_id":"40596868","duration":1740,"bikeId":"7919","endDate":1421406060,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1421404320,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"40596612","duration":3060,"bikeId":"5320","endDate":1421406300,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1421403240,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40597290","duration":660,"bikeId":"12917","endDate":1421406600,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1421405940,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40597316","duration":900,"bikeId":"4549","endDate":1421406960,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1421406060,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"40597570","duration":0,"bikeId":"6906","endDate":1421407260,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1421407260,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"40597553","duration":480,"bikeId":"818","endDate":1421407620,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421407140,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40597562","duration":780,"bikeId":"11443","endDate":1421407980,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421407200,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40597677","duration":600,"bikeId":"6182","endDate":1421408400,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1421407800,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"40597860","duration":180,"bikeId":"6918","endDate":1421408700,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1421408520,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40597815","duration":540,"bikeId":"10778","endDate":1421408940,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1421408400,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40597742","duration":1080,"bikeId":"6220","endDate":1421409180,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1421408100,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40597934","duration":600,"bikeId":"6633","endDate":1421409420,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1421408820,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40597878","duration":1140,"bikeId":"7835","endDate":1421409720,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421408580,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40598156","duration":300,"bikeId":"10709","endDate":1421409960,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1421409660,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40598210","duration":360,"bikeId":"12541","endDate":1421410260,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421409900,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40598295","duration":240,"bikeId":"7326","endDate":1421410500,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1421410260,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40597955","duration":1860,"bikeId":"5578","endDate":1421410740,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1421408880,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40598454","duration":180,"bikeId":"2549","endDate":1421410980,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1421410800,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"40598370","duration":720,"bikeId":"9373","endDate":1421411220,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1421410500,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40598532","duration":480,"bikeId":"12073","endDate":1421411460,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1421410980,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40598329","duration":1260,"bikeId":"1571","endDate":1421411640,"endStationId":"189","endStationName":"Claremont Square, Angel","startDate":1421410380,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40598538","duration":840,"bikeId":"9968","endDate":1421411880,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1421411040,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40598712","duration":540,"bikeId":"5360","endDate":1421412120,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1421411580,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40598830","duration":360,"bikeId":"61","endDate":1421412360,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1421412000,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40598511","duration":1620,"bikeId":"3978","endDate":1421412600,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1421410980,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40598932","duration":480,"bikeId":"10379","endDate":1421412840,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1421412360,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40598944","duration":660,"bikeId":"1797","endDate":1421413020,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421412360,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40598951","duration":840,"bikeId":"9229","endDate":1421413260,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1421412420,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40599002","duration":960,"bikeId":"8521","endDate":1421413500,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1421412540,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40599126","duration":780,"bikeId":"11023","endDate":1421413740,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421412960,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40599160","duration":960,"bikeId":"12154","endDate":1421413980,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1421413020,"startStationId":"90","startStationName":"Harrington Square, Camden Town"}, +{"_id":"40598817","duration":2220,"bikeId":"12830","endDate":1421414160,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1421411940,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40599116","duration":1440,"bikeId":"3978","endDate":1421414340,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1421412900,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40599591","duration":300,"bikeId":"236","endDate":1421414640,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1421414340,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40599343","duration":1200,"bikeId":"798","endDate":1421414760,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421413560,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40599723","duration":300,"bikeId":"7891","endDate":1421414940,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1421414640,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"40599783","duration":360,"bikeId":"11228","endDate":1421415180,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421414820,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40599851","duration":360,"bikeId":"6145","endDate":1421415360,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421415000,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"40599877","duration":480,"bikeId":"9193","endDate":1421415540,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1421415060,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40599888","duration":660,"bikeId":"5745","endDate":1421415780,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421415120,"startStationId":"371","startStationName":"King Edward Walk, Waterloo"}, +{"_id":"40599470","duration":1980,"bikeId":"3181","endDate":1421415960,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1421413980,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40600072","duration":480,"bikeId":"9376","endDate":1421416200,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421415720,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"40599481","duration":2400,"bikeId":"1487","endDate":1421416380,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1421413980,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40600209","duration":480,"bikeId":"725","endDate":1421416620,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1421416140,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40600223","duration":660,"bikeId":"3548","endDate":1421416800,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1421416140,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40600254","duration":780,"bikeId":"12004","endDate":1421417040,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421416260,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40600084","duration":1500,"bikeId":"12569","endDate":1421417220,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421415720,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40600330","duration":960,"bikeId":"5526","endDate":1421417460,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1421416500,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"40600638","duration":240,"bikeId":"4791","endDate":1421417760,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421417520,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40600679","duration":300,"bikeId":"4494","endDate":1421418000,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1421417700,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40600430","duration":1440,"bikeId":"3046","endDate":1421418240,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421416800,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40600670","duration":840,"bikeId":"11508","endDate":1421418480,"endStationId":"207","endStationName":"Grosvenor Crescent, Belgravia","startDate":1421417640,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"40600823","duration":540,"bikeId":"4574","endDate":1421418780,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1421418240,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40600928","duration":420,"bikeId":"4880","endDate":1421419020,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1421418600,"startStationId":"759","startStationName":"Broadley Terrace, Marylebone"}, +{"_id":"40601054","duration":120,"bikeId":"4337","endDate":1421419260,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1421419140,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40600993","duration":600,"bikeId":"9977","endDate":1421419500,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1421418900,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"40601029","duration":780,"bikeId":"11733","endDate":1421419800,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421419020,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40601223","duration":360,"bikeId":"11019","endDate":1421420040,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1421419680,"startStationId":"475","startStationName":"Lightermans Road, Millwall"}, +{"_id":"40601162","duration":780,"bikeId":"11360","endDate":1421420280,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421419500,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40601379","duration":300,"bikeId":"5085","endDate":1421420520,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1421420220,"startStationId":"766","startStationName":"Ram Street, Wandsworth"}, +{"_id":"40601473","duration":180,"bikeId":"11186","endDate":1421420760,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1421420580,"startStationId":"716","startStationName":"Stainsby Road , Poplar"}, +{"_id":"40601341","duration":900,"bikeId":"3710","endDate":1421421000,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1421420100,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40601320","duration":1200,"bikeId":"5000","endDate":1421421240,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421420040,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40601686","duration":300,"bikeId":"6677","endDate":1421421480,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1421421180,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40601407","duration":1380,"bikeId":"2663","endDate":1421421720,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1421420340,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40601540","duration":1140,"bikeId":"5432","endDate":1421421900,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1421420760,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40601841","duration":300,"bikeId":"12520","endDate":1421422080,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1421421780,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40601914","duration":360,"bikeId":"1034","endDate":1421422380,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1421422020,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40601760","duration":1020,"bikeId":"10872","endDate":1421422500,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1421421480,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"40601327","duration":2640,"bikeId":"4458","endDate":1421422740,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421420100,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40602081","duration":480,"bikeId":"7040","endDate":1421422980,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1421422500,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"40601769","duration":1620,"bikeId":"841","endDate":1421423160,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421421540,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40601932","duration":1260,"bikeId":"3395","endDate":1421423340,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1421422080,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40602344","duration":360,"bikeId":"12897","endDate":1421423580,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1421423220,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40601422","duration":3360,"bikeId":"3151","endDate":1421423760,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421420400,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40602028","duration":1620,"bikeId":"3633","endDate":1421423940,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1421422320,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40602574","duration":300,"bikeId":"3931","endDate":1421424180,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421423880,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40602618","duration":300,"bikeId":"11719","endDate":1421424360,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421424060,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"40602433","duration":1020,"bikeId":"7525","endDate":1421424540,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1421423520,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"40602599","duration":720,"bikeId":"12968","endDate":1421424720,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421424000,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40602624","duration":840,"bikeId":"6104","endDate":1421424900,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421424060,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40602127","duration":2400,"bikeId":"11011","endDate":1421425020,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1421422620,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40602940","duration":240,"bikeId":"2312","endDate":1421425200,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1421424960,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"40602709","duration":1080,"bikeId":"12398","endDate":1421425380,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421424300,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40602871","duration":840,"bikeId":"4266","endDate":1421425560,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421424720,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40602008","duration":3480,"bikeId":"5827","endDate":1421425740,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1421422260,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40602985","duration":840,"bikeId":"12165","endDate":1421425980,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421425140,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40603182","duration":300,"bikeId":"4848","endDate":1421426220,"endStationId":"771","endStationName":"Rifle Place, Avondale","startDate":1421425920,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"40603170","duration":600,"bikeId":"12570","endDate":1421426460,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1421425860,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40603099","duration":1140,"bikeId":"12333","endDate":1421426760,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1421425620,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40603265","duration":780,"bikeId":"8269","endDate":1421427000,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421426220,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40603584","duration":60,"bikeId":"10189","endDate":1421427180,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1421427120,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40603248","duration":1260,"bikeId":"9274","endDate":1421427420,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1421426160,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"40603589","duration":480,"bikeId":"10922","endDate":1421427600,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1421427120,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40603631","duration":540,"bikeId":"3304","endDate":1421427780,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421427240,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40603436","duration":1140,"bikeId":"3151","endDate":1421427900,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1421426760,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40603939","duration":240,"bikeId":"10889","endDate":1421428080,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1421427840,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"40603923","duration":420,"bikeId":"11303","endDate":1421428260,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421427840,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40603760","duration":900,"bikeId":"9788","endDate":1421428380,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1421427480,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40604291","duration":120,"bikeId":"10188","endDate":1421428500,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1421428380,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40603932","duration":780,"bikeId":"11698","endDate":1421428620,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1421427840,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40603991","duration":780,"bikeId":"3891","endDate":1421428680,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1421427900,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"40604282","duration":420,"bikeId":"7278","endDate":1421428800,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1421428380,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40604119","duration":840,"bikeId":"11474","endDate":1421428920,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1421428080,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40604445","duration":420,"bikeId":"9846","endDate":1421429040,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1421428620,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40604284","duration":780,"bikeId":"10136","endDate":1421429160,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421428380,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40603873","duration":1560,"bikeId":"12212","endDate":1421429280,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1421427720,"startStationId":"291","startStationName":"Claverton Street, Pimlico"}, +{"_id":"40604227","duration":1080,"bikeId":"11027","endDate":1421429340,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1421428260,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"40604563","duration":660,"bikeId":"3030","endDate":1421429460,"endStationId":"712","endStationName":"Mile End Stadium, Mile End","startDate":1421428800,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40604892","duration":180,"bikeId":"12941","endDate":1421429580,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1421429400,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40604360","duration":1200,"bikeId":"7096","endDate":1421429700,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1421428500,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"40604581","duration":900,"bikeId":"5300","endDate":1421429760,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1421428860,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"40605029","duration":300,"bikeId":"3075","endDate":1421429880,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1421429580,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40605074","duration":420,"bikeId":"10558","endDate":1421430060,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1421429640,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40604900","duration":780,"bikeId":"3873","endDate":1421430180,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1421429400,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40604944","duration":780,"bikeId":"9251","endDate":1421430240,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1421429460,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"40605156","duration":540,"bikeId":"6271","endDate":1421430300,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1421429760,"startStationId":"592","startStationName":"Bishop's Bridge Road East, Bayswater"}, +{"_id":"40605476","duration":300,"bikeId":"2232","endDate":1421430420,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421430120,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40605274","duration":600,"bikeId":"5600","endDate":1421430480,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421429880,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40605499","duration":420,"bikeId":"4697","endDate":1421430600,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1421430180,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40605594","duration":360,"bikeId":"9081","endDate":1421430660,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421430300,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40605016","duration":1140,"bikeId":"6287","endDate":1421430720,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1421429580,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40605254","duration":960,"bikeId":"7773","endDate":1421430840,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421429880,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40605580","duration":600,"bikeId":"11170","endDate":1421430900,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421430300,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40605812","duration":420,"bikeId":"10455","endDate":1421431020,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421430600,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40605780","duration":540,"bikeId":"5280","endDate":1421431080,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1421430540,"startStationId":"464","startStationName":"St. Mary and St. Michael Church, Stepney"}, +{"_id":"40605870","duration":540,"bikeId":"10006","endDate":1421431200,"endStationId":"174","endStationName":"Strand, Strand","startDate":1421430660,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40605915","duration":540,"bikeId":"3237","endDate":1421431260,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421430720,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40606220","duration":240,"bikeId":"13058","endDate":1421431380,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1421431140,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40605908","duration":720,"bikeId":"8031","endDate":1421431440,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421430720,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40606304","duration":300,"bikeId":"10705","endDate":1421431560,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1421431260,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40606235","duration":480,"bikeId":"11441","endDate":1421431620,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1421431140,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40606333","duration":480,"bikeId":"6733","endDate":1421431740,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1421431260,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40606431","duration":420,"bikeId":"10766","endDate":1421431860,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1421431440,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40605947","duration":1140,"bikeId":"11939","endDate":1421431920,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1421430780,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"40606619","duration":300,"bikeId":"8936","endDate":1421432040,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1421431740,"startStationId":"550","startStationName":"Harford Street, Mile End"}, +{"_id":"40606675","duration":300,"bikeId":"1894","endDate":1421432100,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1421431800,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"40606552","duration":600,"bikeId":"8929","endDate":1421432220,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421431620,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40606483","duration":840,"bikeId":"4994","endDate":1421432340,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421431500,"startStationId":"209","startStationName":"Denyer Street, Knightsbridge"}, +{"_id":"40606665","duration":660,"bikeId":"3214","endDate":1421432460,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1421431800,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40606721","duration":660,"bikeId":"7021","endDate":1421432520,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1421431860,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"40606846","duration":600,"bikeId":"2057","endDate":1421432640,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1421432040,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40606944","duration":600,"bikeId":"7282","endDate":1421432760,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421432160,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40606966","duration":600,"bikeId":"9988","endDate":1421432820,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1421432220,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40607107","duration":540,"bikeId":"9818","endDate":1421432940,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1421432400,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40607133","duration":600,"bikeId":"2708","endDate":1421433060,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1421432460,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40607423","duration":180,"bikeId":"6035","endDate":1421433120,"endStationId":"149","endStationName":"Kennington Road Post Office, Oval","startDate":1421432940,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"40606327","duration":1980,"bikeId":"9319","endDate":1421433240,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1421431260,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"40607198","duration":780,"bikeId":"738","endDate":1421433360,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421432580,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40607439","duration":540,"bikeId":"10584","endDate":1421433480,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421432940,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40607715","duration":180,"bikeId":"5003","endDate":1421433600,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1421433420,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40607473","duration":720,"bikeId":"8544","endDate":1421433720,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421433000,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40607704","duration":420,"bikeId":"2107","endDate":1421433780,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421433360,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40607735","duration":420,"bikeId":"2151","endDate":1421433900,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1421433480,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"40607832","duration":360,"bikeId":"8284","endDate":1421434020,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1421433660,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40607736","duration":660,"bikeId":"5028","endDate":1421434140,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1421433480,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40607514","duration":1200,"bikeId":"3158","endDate":1421434260,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1421433060,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40607936","duration":540,"bikeId":"12423","endDate":1421434380,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1421433840,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40608042","duration":420,"bikeId":"3276","endDate":1421434500,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1421434080,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40607836","duration":960,"bikeId":"1864","endDate":1421434620,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1421433660,"startStationId":"161","startStationName":"Guildhouse Street, Victoria"}, +{"_id":"40608011","duration":720,"bikeId":"12026","endDate":1421434740,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1421434020,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40607876","duration":1140,"bikeId":"11220","endDate":1421434860,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1421433720,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40608235","duration":600,"bikeId":"4651","endDate":1421435040,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1421434440,"startStationId":"208","startStationName":"Mallory Street, Marylebone"}, +{"_id":"40608391","duration":360,"bikeId":"11517","endDate":1421435160,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1421434800,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"40608423","duration":480,"bikeId":"8186","endDate":1421435340,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1421434860,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"40608364","duration":780,"bikeId":"6974","endDate":1421435520,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1421434740,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40608500","duration":600,"bikeId":"7249","endDate":1421435640,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1421435040,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40608721","duration":180,"bikeId":"2687","endDate":1421435820,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1421435640,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40608156","duration":1680,"bikeId":"12548","endDate":1421435940,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421434260,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"40608513","duration":1020,"bikeId":"11988","endDate":1421436120,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1421435100,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40608860","duration":360,"bikeId":"3939","endDate":1421436300,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1421435940,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40608674","duration":900,"bikeId":"7434","endDate":1421436420,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1421435520,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40608816","duration":720,"bikeId":"12481","endDate":1421436600,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1421435880,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40609077","duration":240,"bikeId":"4784","endDate":1421436780,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1421436540,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40608784","duration":1140,"bikeId":"4161","endDate":1421436960,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1421435820,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40609137","duration":360,"bikeId":"7019","endDate":1421437080,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1421436720,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40608976","duration":1080,"bikeId":"9101","endDate":1421437320,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1421436240,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"40608944","duration":1320,"bikeId":"10567","endDate":1421437500,"endStationId":"447","endStationName":"Jubilee Crescent, Cubitt Town","startDate":1421436180,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40609405","duration":120,"bikeId":"8487","endDate":1421437740,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421437620,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40609206","duration":1080,"bikeId":"886","endDate":1421437980,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1421436900,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40609509","duration":300,"bikeId":"4153","endDate":1421438220,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1421437920,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40609410","duration":780,"bikeId":"12509","endDate":1421438400,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1421437620,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40609676","duration":120,"bikeId":"4892","endDate":1421438640,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1421438520,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40609725","duration":120,"bikeId":"2055","endDate":1421438880,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1421438760,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40609121","duration":2400,"bikeId":"9556","endDate":1421439060,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421436660,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40609444","duration":1560,"bikeId":"6017","endDate":1421439300,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1421437740,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"40609705","duration":1020,"bikeId":"11802","endDate":1421439660,"endStationId":"654","endStationName":"Ashmole Estate, Oval","startDate":1421438640,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40609261","duration":2820,"bikeId":"5499","endDate":1421439900,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1421437080,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40610031","duration":180,"bikeId":"7735","endDate":1421440200,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1421440020,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40609978","duration":720,"bikeId":"7193","endDate":1421440500,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1421439780,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40610084","duration":540,"bikeId":"6860","endDate":1421440860,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421440320,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40610148","duration":600,"bikeId":"6815","endDate":1421441220,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1421440620,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"40610203","duration":600,"bikeId":"3229","endDate":1421441580,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1421440980,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40610308","duration":360,"bikeId":"5092","endDate":1421442000,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1421441640,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40610396","duration":300,"bikeId":"10236","endDate":1421442360,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1421442060,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40610424","duration":480,"bikeId":"3938","endDate":1421442720,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1421442240,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"40610429","duration":840,"bikeId":"12940","endDate":1421443140,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1421442300,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40610570","duration":240,"bikeId":"613","endDate":1421443560,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1421443320,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40610583","duration":600,"bikeId":"4773","endDate":1421444040,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1421443440,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40610642","duration":780,"bikeId":"1011","endDate":1421444580,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1421443800,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40610787","duration":240,"bikeId":"3816","endDate":1421445180,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1421444940,"startStationId":"686","startStationName":"Beryl Road, Hammersmith"}, +{"_id":"40610819","duration":480,"bikeId":"5073","endDate":1421445660,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1421445180,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40610848","duration":780,"bikeId":"139","endDate":1421446140,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1421445360,"startStationId":"505","startStationName":"Ackroyd Drive, Bow"}, +{"_id":"40610868","duration":1140,"bikeId":"11446","endDate":1421446680,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1421445540,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"40611005","duration":600,"bikeId":"3520","endDate":1421447340,"endStationId":"208","endStationName":"Mallory Street, Marylebone","startDate":1421446740,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40611076","duration":660,"bikeId":"3294","endDate":1421448000,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421447340,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40611140","duration":480,"bikeId":"6381","endDate":1421448480,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1421448000,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40611085","duration":1620,"bikeId":"3739","endDate":1421449080,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1421447460,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40611237","duration":1140,"bikeId":"11021","endDate":1421449740,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1421448600,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40611324","duration":960,"bikeId":"10687","endDate":1421450340,"endStationId":"699","endStationName":"Belford House, Haggerston","startDate":1421449380,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40611313","duration":1620,"bikeId":"10189","endDate":1421450940,"endStationId":"761","endStationName":"Humbolt Road, Fulham","startDate":1421449320,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40611478","duration":660,"bikeId":"8740","endDate":1421451540,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1421450880,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"40611575","duration":480,"bikeId":"4550","endDate":1421452200,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1421451720,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40611618","duration":780,"bikeId":"9065","endDate":1421452920,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1421452140,"startStationId":"469","startStationName":"Lindfield Street, Poplar"}, +{"_id":"40611723","duration":300,"bikeId":"494","endDate":1421453520,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1421453220,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"40611795","duration":240,"bikeId":"12395","endDate":1421454120,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1421453880,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40609491","duration":16860,"bikeId":"4678","endDate":1421454720,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1421437860,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"40611906","duration":420,"bikeId":"802","endDate":1421455560,"endStationId":"466","endStationName":"Whiston Road, Haggerston","startDate":1421455140,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40611884","duration":1500,"bikeId":"12058","endDate":1421456400,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1421454900,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40611931","duration":1920,"bikeId":"10948","endDate":1421457300,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1421455380,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40612079","duration":1140,"bikeId":"12276","endDate":1421458140,"endStationId":"516","endStationName":"Chrisp Street Market, Poplar","startDate":1421457000,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40612201","duration":240,"bikeId":"1634","endDate":1421459160,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1421458920,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"40612191","duration":1440,"bikeId":"10949","endDate":1421460180,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1421458740,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40612347","duration":360,"bikeId":"60","endDate":1421461560,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1421461200,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"40607829","duration":28800,"bikeId":"12449","endDate":1421462460,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1421433660,"startStationId":"694","startStationName":"Putney Rail Station, Putney"}, +{"_id":"40612439","duration":1080,"bikeId":"12830","endDate":1421463840,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1421462760,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40612523","duration":780,"bikeId":"5661","endDate":1421465160,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1421464380,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40612567","duration":1560,"bikeId":"12751","endDate":1421466660,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1421465100,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40612342","duration":7380,"bikeId":"6154","endDate":1421468520,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1421461140,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40612737","duration":1200,"bikeId":"8797","endDate":1421471520,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1421470320,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"40612817","duration":840,"bikeId":"9542","endDate":1421474940,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1421474100,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40612861","duration":1560,"bikeId":"12772","endDate":1421478000,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1421476440,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40612955","duration":480,"bikeId":"1389","endDate":1421480220,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1421479740,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"40613033","duration":360,"bikeId":"12587","endDate":1421481600,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1421481240,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40613101","duration":480,"bikeId":"7663","endDate":1421482860,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1421482380,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40613146","duration":900,"bikeId":"11136","endDate":1421483700,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421482800,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40613187","duration":1080,"bikeId":"9403","endDate":1421484360,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1421483280,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"40613295","duration":720,"bikeId":"4543","endDate":1421484900,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1421484180,"startStationId":"327","startStationName":"New North Road 1, Hoxton"}, +{"_id":"40613352","duration":720,"bikeId":"2221","endDate":1421485320,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1421484600,"startStationId":"775","startStationName":"Little Brook Green, Brook Green"}, +{"_id":"40613107","duration":3420,"bikeId":"1509","endDate":1421485860,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1421482440,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"40613609","duration":120,"bikeId":"12535","endDate":1421486400,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1421486280,"startStationId":"665","startStationName":"Smugglers Way, Wandsworth"}, +{"_id":"40613502","duration":1140,"bikeId":"1003","endDate":1421486820,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421485680,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40613640","duration":840,"bikeId":"11068","endDate":1421487300,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1421486460,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40613810","duration":240,"bikeId":"11499","endDate":1421487660,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421487420,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40613829","duration":540,"bikeId":"8391","endDate":1421488020,"endStationId":"659","endStationName":"Grant Road West, Clapham Junction","startDate":1421487480,"startStationId":"704","startStationName":"Mexfield Road, East Putney"}, +{"_id":"40613816","duration":900,"bikeId":"11820","endDate":1421488320,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421487420,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"40613961","duration":600,"bikeId":"12394","endDate":1421488560,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1421487960,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40613923","duration":960,"bikeId":"6161","endDate":1421488800,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1421487840,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"40614139","duration":420,"bikeId":"7000","endDate":1421489100,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1421488680,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"40614175","duration":660,"bikeId":"6775","endDate":1421489460,"endStationId":"507","endStationName":"Clarkson Street, Bethnal Green","startDate":1421488800,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40614118","duration":1020,"bikeId":"6645","endDate":1421489640,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1421488620,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40614221","duration":960,"bikeId":"12541","endDate":1421489940,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1421488980,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"40614480","duration":240,"bikeId":"1783","endDate":1421490180,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1421489940,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40614426","duration":720,"bikeId":"7939","endDate":1421490420,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421489700,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"40614408","duration":960,"bikeId":"12089","endDate":1421490600,"endStationId":"111","endStationName":"Park Lane , Hyde Park","startDate":1421489640,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40614593","duration":420,"bikeId":"3517","endDate":1421490960,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1421490540,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40614715","duration":180,"bikeId":"10200","endDate":1421491380,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1421491200,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40614689","duration":600,"bikeId":"11469","endDate":1421491680,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1421491080,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40614760","duration":660,"bikeId":"9528","endDate":1421492040,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421491380,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40614849","duration":540,"bikeId":"12028","endDate":1421492340,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1421491800,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"40614895","duration":660,"bikeId":"1091","endDate":1421492580,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1421491920,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"40614851","duration":1080,"bikeId":"7162","endDate":1421492880,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421491800,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40615025","duration":720,"bikeId":"13021","endDate":1421493240,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1421492520,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40615093","duration":720,"bikeId":"12900","endDate":1421493480,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1421492760,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40615204","duration":660,"bikeId":"4112","endDate":1421493780,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1421493120,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"40615148","duration":1140,"bikeId":"1924","endDate":1421494080,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421492940,"startStationId":"467","startStationName":"Southern Grove, Bow"}, +{"_id":"40615317","duration":780,"bikeId":"483","endDate":1421494380,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1421493600,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40615229","duration":1380,"bikeId":"8906","endDate":1421494620,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1421493240,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"40615478","duration":660,"bikeId":"1578","endDate":1421494920,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1421494260,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40615589","duration":480,"bikeId":"5306","endDate":1421495160,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1421494680,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40615394","duration":1380,"bikeId":"11867","endDate":1421495340,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1421493960,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"40615446","duration":1440,"bikeId":"9904","endDate":1421495580,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1421494140,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40615801","duration":540,"bikeId":"8969","endDate":1421495820,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421495280,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40615457","duration":1740,"bikeId":"4241","endDate":1421495940,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1421494200,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40615675","duration":1260,"bikeId":"104","endDate":1421496240,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421494980,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40616053","duration":420,"bikeId":"4109","endDate":1421496420,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1421496000,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40616204","duration":300,"bikeId":"11224","endDate":1421496600,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421496300,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40615804","duration":1500,"bikeId":"8906","endDate":1421496780,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1421495280,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"40615714","duration":1980,"bikeId":"7848","endDate":1421497020,"endStationId":"271","endStationName":"London Zoo, Regents Park","startDate":1421495040,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40616166","duration":900,"bikeId":"10922","endDate":1421497140,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1421496240,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40615715","duration":2280,"bikeId":"8431","endDate":1421497320,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1421495040,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40616559","duration":300,"bikeId":"12656","endDate":1421497560,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1421497260,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40616637","duration":300,"bikeId":"11324","endDate":1421497740,"endStationId":"551","endStationName":"Montgomery Square, Canary Wharf","startDate":1421497440,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40616467","duration":960,"bikeId":"3832","endDate":1421497860,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1421496900,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40616540","duration":840,"bikeId":"6222","endDate":1421498040,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1421497200,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40616777","duration":420,"bikeId":"7876","endDate":1421498220,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1421497800,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40616780","duration":660,"bikeId":"7477","endDate":1421498460,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421497800,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40616661","duration":1140,"bikeId":"6612","endDate":1421498640,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1421497500,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"40616767","duration":1140,"bikeId":"10402","endDate":1421498880,"endStationId":"741","endStationName":"Freston Road, Avondale","startDate":1421497740,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40617050","duration":540,"bikeId":"10502","endDate":1421499060,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421498520,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40616963","duration":900,"bikeId":"12189","endDate":1421499240,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1421498340,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40617101","duration":780,"bikeId":"4382","endDate":1421499420,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1421498640,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40617322","duration":480,"bikeId":"12774","endDate":1421499600,"endStationId":"692","endStationName":"Cadogan Close, Victoria Park","startDate":1421499120,"startStationId":"467","startStationName":"Southern Grove, Bow"}, +{"_id":"40616907","duration":1620,"bikeId":"4104","endDate":1421499780,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1421498160,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40617155","duration":1140,"bikeId":"10963","endDate":1421499900,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421498760,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40617712","duration":0,"bikeId":"2810","endDate":1421500080,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421500080,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40617306","duration":1140,"bikeId":"12376","endDate":1421500260,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1421499120,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40617467","duration":1020,"bikeId":"125","endDate":1421500500,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421499480,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40617438","duration":1320,"bikeId":"11849","endDate":1421500680,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1421499360,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40617555","duration":1200,"bikeId":"13005","endDate":1421500860,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1421499660,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40617718","duration":960,"bikeId":"4209","endDate":1421501040,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1421500080,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40617925","duration":600,"bikeId":"2330","endDate":1421501220,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1421500620,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"40617652","duration":1380,"bikeId":"5924","endDate":1421501340,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421499960,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40617778","duration":1320,"bikeId":"4615","endDate":1421501520,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1421500200,"startStationId":"315","startStationName":"The Tennis Courts, Regent's Park"}, +{"_id":"40617788","duration":1440,"bikeId":"4651","endDate":1421501700,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1421500260,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40618129","duration":780,"bikeId":"4935","endDate":1421501880,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1421501100,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40618081","duration":1020,"bikeId":"8159","endDate":1421502000,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1421500980,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40618118","duration":1080,"bikeId":"12897","endDate":1421502180,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1421501100,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40618035","duration":1440,"bikeId":"9139","endDate":1421502360,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421500920,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"40618624","duration":300,"bikeId":"10937","endDate":1421502540,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1421502240,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"40618119","duration":1620,"bikeId":"12013","endDate":1421502720,"endStationId":"257","endStationName":"Westminster University, Marylebone","startDate":1421501100,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40618461","duration":960,"bikeId":"5194","endDate":1421502840,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1421501880,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40618257","duration":1500,"bikeId":"8001","endDate":1421502960,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1421501460,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"40616560","duration":5880,"bikeId":"9675","endDate":1421503140,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421497260,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40618494","duration":1320,"bikeId":"534","endDate":1421503260,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1421501940,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40618674","duration":1020,"bikeId":"7150","endDate":1421503380,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1421502360,"startStationId":"693","startStationName":"Felsham Road, Putney"}, +{"_id":"40618814","duration":900,"bikeId":"3345","endDate":1421503560,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1421502660,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40618691","duration":1320,"bikeId":"9772","endDate":1421503740,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421502420,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40618922","duration":1020,"bikeId":"1531","endDate":1421503860,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421502840,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40619211","duration":480,"bikeId":"11438","endDate":1421503980,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421503500,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40619046","duration":1020,"bikeId":"5464","endDate":1421504160,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421503140,"startStationId":"564","startStationName":"Somerset House, Strand"}, +{"_id":"40619038","duration":1140,"bikeId":"8230","endDate":1421504280,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421503140,"startStationId":"337","startStationName":"Pembridge Villas, Notting Hill"}, +{"_id":"40619534","duration":300,"bikeId":"12509","endDate":1421504460,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1421504160,"startStationId":"624","startStationName":"Courland Grove, Wandsworth Road"}, +{"_id":"40619250","duration":1020,"bikeId":"10766","endDate":1421504640,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1421503620,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40619702","duration":300,"bikeId":"1091","endDate":1421504820,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1421504520,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40618801","duration":2340,"bikeId":"6388","endDate":1421504940,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1421502600,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40619863","duration":180,"bikeId":"6613","endDate":1421505060,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1421504880,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40618987","duration":2220,"bikeId":"6465","endDate":1421505240,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1421503020,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40619840","duration":600,"bikeId":"1889","endDate":1421505420,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421504820,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"40619312","duration":1800,"bikeId":"7458","endDate":1421505540,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1421503740,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"40619257","duration":2100,"bikeId":"12313","endDate":1421505720,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421503620,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40620015","duration":720,"bikeId":"2901","endDate":1421505900,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1421505180,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40620133","duration":600,"bikeId":"5977","endDate":1421506020,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421505420,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40619705","duration":1620,"bikeId":"2023","endDate":1421506140,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1421504520,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"40619262","duration":2700,"bikeId":"11441","endDate":1421506320,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421503620,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40619203","duration":3000,"bikeId":"8150","endDate":1421506500,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1421503500,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40619741","duration":1980,"bikeId":"5016","endDate":1421506620,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1421504640,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40620515","duration":540,"bikeId":"6039","endDate":1421506800,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421506260,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40620675","duration":300,"bikeId":"4713","endDate":1421506980,"endStationId":"134","endStationName":"Wapping High Street, Wapping","startDate":1421506680,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40619737","duration":2520,"bikeId":"2636","endDate":1421507100,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1421504580,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40620703","duration":540,"bikeId":"3567","endDate":1421507280,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421506740,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40620467","duration":1320,"bikeId":"3432","endDate":1421507460,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1421506140,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40620385","duration":1680,"bikeId":"2815","endDate":1421507640,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421505960,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"40620988","duration":420,"bikeId":"12428","endDate":1421507820,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1421507400,"startStationId":"547","startStationName":"East India DLR, Blackwall"}, +{"_id":"40621150","duration":240,"bikeId":"2909","endDate":1421508000,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1421507760,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40620869","duration":960,"bikeId":"3528","endDate":1421508120,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1421507160,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"40621081","duration":660,"bikeId":"10230","endDate":1421508300,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1421507640,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40621133","duration":720,"bikeId":"10481","endDate":1421508420,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1421507700,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40621220","duration":600,"bikeId":"1502","endDate":1421508540,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421507940,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40620976","duration":1320,"bikeId":"193","endDate":1421508720,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1421507400,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40621433","duration":480,"bikeId":"1954","endDate":1421508840,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1421508360,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40621118","duration":1380,"bikeId":"2298","endDate":1421509080,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1421507700,"startStationId":"164","startStationName":"Cleveland Gardens, Bayswater"}, +{"_id":"40620873","duration":2040,"bikeId":"9956","endDate":1421509200,"endStationId":"521","endStationName":"Driffield Road, Old Ford","startDate":1421507160,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40621778","duration":240,"bikeId":"7490","endDate":1421509380,"endStationId":"704","endStationName":"Mexfield Road, East Putney","startDate":1421509140,"startStationId":"705","startStationName":"Upper Richmond Road, East Putney"}, +{"_id":"40620781","duration":2580,"bikeId":"11790","endDate":1421509500,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1421506920,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40621575","duration":960,"bikeId":"8963","endDate":1421509680,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1421508720,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"40621510","duration":1260,"bikeId":"6496","endDate":1421509800,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1421508540,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40622051","duration":240,"bikeId":"4133","endDate":1421509980,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1421509740,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40621063","duration":2520,"bikeId":"11696","endDate":1421510100,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421507580,"startStationId":"222","startStationName":"Knightsbridge, Hyde Park"}, +{"_id":"40622288","duration":60,"bikeId":"5059","endDate":1421510280,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421510220,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40622260","duration":240,"bikeId":"6537","endDate":1421510400,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1421510160,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"40622343","duration":240,"bikeId":"4852","endDate":1421510580,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1421510340,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40622173","duration":720,"bikeId":"3923","endDate":1421510700,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1421509980,"startStationId":"750","startStationName":"Culvert Road, Battersea"}, +{"_id":"40622210","duration":840,"bikeId":"9930","endDate":1421510880,"endStationId":"412","endStationName":"Cleaver Street, Kennington","startDate":1421510040,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40622305","duration":780,"bikeId":"4892","endDate":1421511000,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1421510220,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40622567","duration":420,"bikeId":"4036","endDate":1421511180,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1421510760,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40622652","duration":360,"bikeId":"10305","endDate":1421511300,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421510940,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40621479","duration":2940,"bikeId":"6413","endDate":1421511420,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1421508480,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40622723","duration":420,"bikeId":"11149","endDate":1421511600,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1421511180,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40622229","duration":1620,"bikeId":"11255","endDate":1421511720,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1421510100,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40622805","duration":420,"bikeId":"6471","endDate":1421511840,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1421511420,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40622877","duration":360,"bikeId":"1245","endDate":1421511960,"endStationId":"174","endStationName":"Strand, Strand","startDate":1421511600,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40622666","duration":1080,"bikeId":"11464","endDate":1421512080,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1421511000,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40622945","duration":540,"bikeId":"11266","endDate":1421512260,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421511720,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40622767","duration":1140,"bikeId":"8265","endDate":1421512440,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1421511300,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40622542","duration":1860,"bikeId":"1933","endDate":1421512560,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1421510700,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40623200","duration":300,"bikeId":"6590","endDate":1421512740,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1421512440,"startStationId":"543","startStationName":"Lansdowne Walk, Notting Hill"}, +{"_id":"40623239","duration":360,"bikeId":"2177","endDate":1421512920,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421512560,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"40622608","duration":2160,"bikeId":"276","endDate":1421513040,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1421510880,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"40623272","duration":600,"bikeId":"12014","endDate":1421513220,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1421512620,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40623480","duration":180,"bikeId":"5860","endDate":1421513400,"endStationId":"618","endStationName":"Eel Brook Common, Walham Green","startDate":1421513220,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40623358","duration":720,"bikeId":"6002","endDate":1421513580,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1421512860,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40623353","duration":960,"bikeId":"7077","endDate":1421513820,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421512860,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40623576","duration":480,"bikeId":"8811","endDate":1421514000,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421513520,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40622996","duration":2220,"bikeId":"2167","endDate":1421514180,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1421511960,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40623760","duration":300,"bikeId":"2702","endDate":1421514360,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1421514060,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40623415","duration":1500,"bikeId":"5681","endDate":1421514540,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421513040,"startStationId":"317","startStationName":"Dickens Square, Borough"}, +{"_id":"40623648","duration":1020,"bikeId":"12307","endDate":1421514780,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1421513760,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40623915","duration":480,"bikeId":"2131","endDate":1421515020,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421514540,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40623490","duration":1920,"bikeId":"3946","endDate":1421515200,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1421513280,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40623877","duration":960,"bikeId":"6406","endDate":1421515380,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1421514420,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40624145","duration":420,"bikeId":"9764","endDate":1421515680,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1421515260,"startStationId":"274","startStationName":"Warwick Road, Olympia"}, +{"_id":"40624177","duration":480,"bikeId":"9319","endDate":1421515860,"endStationId":"656","endStationName":"Broomhouse Lane, Parsons Green","startDate":1421515380,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40623870","duration":1680,"bikeId":"10249","endDate":1421516100,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1421514420,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"40623561","duration":2760,"bikeId":"6670","endDate":1421516220,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1421513460,"startStationId":"276","startStationName":"Lower Thames Street, Monument"}, +{"_id":"40624257","duration":780,"bikeId":"11222","endDate":1421516460,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1421515680,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40624255","duration":1080,"bikeId":"3965","endDate":1421516760,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1421515680,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40624470","duration":480,"bikeId":"7942","endDate":1421516880,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1421516400,"startStationId":"464","startStationName":"St. Mary and St. Michael Church, Stepney"}, +{"_id":"40624446","duration":780,"bikeId":"12181","endDate":1421517060,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1421516280,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40624272","duration":1620,"bikeId":"12839","endDate":1421517300,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421515680,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40624507","duration":1020,"bikeId":"9526","endDate":1421517540,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1421516520,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40622336","duration":7440,"bikeId":"9577","endDate":1421517780,"endStationId":"734","endStationName":"Plough Terrace, Clapham Junction","startDate":1421510340,"startStationId":"734","startStationName":"Plough Terrace, Clapham Junction"}, +{"_id":"40624683","duration":720,"bikeId":"11204","endDate":1421517960,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1421517240,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40624665","duration":1080,"bikeId":"1313","endDate":1421518260,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1421517180,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40624877","duration":540,"bikeId":"2836","endDate":1421518560,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1421518020,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40624876","duration":780,"bikeId":"10640","endDate":1421518800,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1421518020,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40624919","duration":900,"bikeId":"9611","endDate":1421519100,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1421518200,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"40625189","duration":120,"bikeId":"2411","endDate":1421519340,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1421519220,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40625035","duration":1080,"bikeId":"8911","endDate":1421519640,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1421518560,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"40625243","duration":540,"bikeId":"12502","endDate":1421520000,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1421519460,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40625405","duration":180,"bikeId":"5465","endDate":1421520300,"endStationId":"447","endStationName":"Jubilee Crescent, Cubitt Town","startDate":1421520120,"startStationId":"563","startStationName":"Preston's Road, Cubitt Town"}, +{"_id":"40625380","duration":600,"bikeId":"9525","endDate":1421520600,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1421520000,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40625409","duration":660,"bikeId":"3990","endDate":1421520780,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1421520120,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40625534","duration":360,"bikeId":"5042","endDate":1421521020,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1421520660,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40625465","duration":960,"bikeId":"10900","endDate":1421521320,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1421520360,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40625431","duration":1500,"bikeId":"3653","endDate":1421521680,"endStationId":"728","endStationName":"Putney Bridge Road, East Putney","startDate":1421520180,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40625642","duration":660,"bikeId":"12596","endDate":1421522040,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1421521380,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40625720","duration":660,"bikeId":"9745","endDate":1421522400,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1421521740,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40625641","duration":1320,"bikeId":"7099","endDate":1421522700,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1421521380,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40625768","duration":1020,"bikeId":"12406","endDate":1421523000,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1421521980,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40625800","duration":1260,"bikeId":"12368","endDate":1421523420,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1421522160,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"40625941","duration":900,"bikeId":"7959","endDate":1421523660,"endStationId":"609","endStationName":"Sugden Road, Battersea","startDate":1421522760,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"40626043","duration":780,"bikeId":"3423","endDate":1421524020,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1421523240,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40626034","duration":1140,"bikeId":"8872","endDate":1421524320,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1421523180,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40626211","duration":660,"bikeId":"2379","endDate":1421524740,"endStationId":"172","endStationName":"Sumner Place, South Kensington","startDate":1421524080,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40626325","duration":360,"bikeId":"1336","endDate":1421525040,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1421524680,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"40626316","duration":720,"bikeId":"9676","endDate":1421525340,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1421524620,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40626204","duration":1620,"bikeId":"850","endDate":1421525700,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421524080,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40626467","duration":600,"bikeId":"12556","endDate":1421526120,"endStationId":"93","endStationName":"Cloudesley Road, Angel","startDate":1421525520,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"40626203","duration":2400,"bikeId":"7867","endDate":1421526480,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1421524080,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"40626623","duration":540,"bikeId":"7330","endDate":1421526900,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1421526360,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40626693","duration":480,"bikeId":"7158","endDate":1421527260,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1421526780,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40626198","duration":3600,"bikeId":"12526","endDate":1421527620,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1421524020,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40626789","duration":600,"bikeId":"12441","endDate":1421528100,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1421527500,"startStationId":"523","startStationName":"Langdon Park, Poplar"}, +{"_id":"40626756","duration":1380,"bikeId":"12020","endDate":1421528580,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1421527200,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40626984","duration":300,"bikeId":"3140","endDate":1421529180,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421528880,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40627031","duration":420,"bikeId":"5153","endDate":1421529720,"endStationId":"21","endStationName":"Hampstead Road (Cartmel), Euston","startDate":1421529300,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40627044","duration":780,"bikeId":"11158","endDate":1421530200,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421529420,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40627157","duration":300,"bikeId":"5387","endDate":1421530680,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1421530380,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40627143","duration":1080,"bikeId":"4900","endDate":1421531280,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1421530200,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40627247","duration":840,"bikeId":"13012","endDate":1421531940,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1421531100,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"40627265","duration":1080,"bikeId":"4935","endDate":1421532360,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421531280,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40627285","duration":1560,"bikeId":"11374","endDate":1421532960,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1421531400,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40627485","duration":540,"bikeId":"752","endDate":1421533620,"endStationId":"442","endStationName":"Walmer Road, Notting Hill","startDate":1421533080,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"40627503","duration":900,"bikeId":"8874","endDate":1421534160,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1421533260,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40627629","duration":180,"bikeId":"9917","endDate":1421534940,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1421534760,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40627566","duration":1800,"bikeId":"10652","endDate":1421535780,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1421533980,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"40627719","duration":540,"bikeId":"7836","endDate":1421536440,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1421535900,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40627818","duration":420,"bikeId":"12306","endDate":1421537280,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1421536860,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40627885","duration":540,"bikeId":"10310","endDate":1421538000,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1421537460,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"40627904","duration":1020,"bikeId":"2915","endDate":1421538600,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421537580,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40628054","duration":240,"bikeId":"7275","endDate":1421539200,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421538960,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40627994","duration":1380,"bikeId":"12548","endDate":1421539800,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1421538420,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40628180","duration":360,"bikeId":"10682","endDate":1421540340,"endStationId":"247","endStationName":"St. John's Wood Church, Regent's Park","startDate":1421539980,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40628173","duration":1020,"bikeId":"5149","endDate":1421540940,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1421539920,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40628059","duration":2400,"bikeId":"5316","endDate":1421541480,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1421539080,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40628352","duration":660,"bikeId":"9872","endDate":1421542260,"endStationId":"561","endStationName":"Rectory Square, Stepney","startDate":1421541600,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40628339","duration":1440,"bikeId":"9630","endDate":1421542920,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1421541480,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"40628497","duration":660,"bikeId":"3791","endDate":1421543640,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1421542980,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40628518","duration":1200,"bikeId":"8745","endDate":1421544360,"endStationId":"468","endStationName":"Cantrell Road, Bow","startDate":1421543160,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40628499","duration":2340,"bikeId":"9030","endDate":1421545320,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1421542980,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40628585","duration":2040,"bikeId":"3653","endDate":1421545860,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1421543820,"startStationId":"728","startStationName":"Putney Bridge Road, East Putney"}, +{"_id":"40627377","duration":14820,"bikeId":"9996","endDate":1421547060,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1421532240,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40628870","duration":300,"bikeId":"6881","endDate":1421547900,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1421547600,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"40628906","duration":540,"bikeId":"2387","endDate":1421548560,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1421548020,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40628877","duration":1620,"bikeId":"12562","endDate":1421549340,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1421547720,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40629039","duration":720,"bikeId":"7918","endDate":1421550540,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1421549820,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40629125","duration":360,"bikeId":"8952","endDate":1421551920,"endStationId":"435","endStationName":"Kennington Station, Kennington","startDate":1421551560,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40629179","duration":120,"bikeId":"9873","endDate":1421553240,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1421553120,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40629238","duration":180,"bikeId":"6674","endDate":1421555460,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421555280,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40629287","duration":540,"bikeId":"3534","endDate":1421558640,"endStationId":"86","endStationName":"Sancroft Street, Vauxhall","startDate":1421558100,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40629348","duration":1020,"bikeId":"6674","endDate":1421563740,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421562720,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40620602","duration":59760,"bikeId":"2373","endDate":1421566260,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1421506500,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40629511","duration":240,"bikeId":"8961","endDate":1421568600,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1421568360,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40629547","duration":1020,"bikeId":"12931","endDate":1421570100,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1421569080,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40629630","duration":780,"bikeId":"88","endDate":1421571180,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1421570400,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40629645","duration":1440,"bikeId":"602","endDate":1421572020,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1421570580,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40629821","duration":360,"bikeId":"2332","endDate":1421572920,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1421572560,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40629778","duration":1500,"bikeId":"12258","endDate":1421573580,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421572080,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40629876","duration":1080,"bikeId":"9967","endDate":1421574180,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1421573100,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"40630119","duration":0,"bikeId":"2969","endDate":1421574780,"endStationId":"442","endStationName":"Walmer Road, Notting Hill","startDate":1421574780,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"40630115","duration":420,"bikeId":"7523","endDate":1421575200,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1421574780,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40630085","duration":1080,"bikeId":"11124","endDate":1421575680,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421574600,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40630247","duration":540,"bikeId":"9642","endDate":1421576220,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1421575680,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40630255","duration":780,"bikeId":"716","endDate":1421576520,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1421575740,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40630425","duration":240,"bikeId":"9400","endDate":1421576880,"endStationId":"565","endStationName":"Selby Street, Whitechapel","startDate":1421576640,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"40630424","duration":660,"bikeId":"9727","endDate":1421577300,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1421576640,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40630504","duration":660,"bikeId":"10120","endDate":1421577660,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1421577000,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40630604","duration":480,"bikeId":"9963","endDate":1421578020,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421577540,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40630589","duration":960,"bikeId":"11500","endDate":1421578380,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421577420,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40630876","duration":60,"bikeId":"6232","endDate":1421578680,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1421578620,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"40630815","duration":540,"bikeId":"12103","endDate":1421578980,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1421578440,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40630508","duration":2160,"bikeId":"5837","endDate":1421579220,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1421577060,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"40630955","duration":660,"bikeId":"859","endDate":1421579580,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1421578920,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"40631074","duration":480,"bikeId":"4651","endDate":1421579940,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1421579460,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"40631008","duration":1020,"bikeId":"4747","endDate":1421580180,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1421579160,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"40631077","duration":1080,"bikeId":"11442","endDate":1421580540,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1421579460,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"40631139","duration":1140,"bikeId":"8394","endDate":1421580840,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421579700,"startStationId":"648","startStationName":"Peterborough Road, Sands End"}, +{"_id":"40631163","duration":1380,"bikeId":"7585","endDate":1421581140,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1421579760,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40631491","duration":420,"bikeId":"10912","endDate":1421581440,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1421581020,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40631643","duration":180,"bikeId":"2425","endDate":1421581680,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1421581500,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40631698","duration":300,"bikeId":"8785","endDate":1421581920,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1421581620,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"40631609","duration":780,"bikeId":"7071","endDate":1421582160,"endStationId":"675","endStationName":"Usk Road, Battersea","startDate":1421581380,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"40631831","duration":360,"bikeId":"9289","endDate":1421582400,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1421582040,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40631712","duration":960,"bikeId":"2260","endDate":1421582640,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421581680,"startStationId":"412","startStationName":"Cleaver Street, Kennington"}, +{"_id":"40631642","duration":1320,"bikeId":"810","endDate":1421582820,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1421581500,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"40631634","duration":1560,"bikeId":"2904","endDate":1421583060,"endStationId":"280","endStationName":"Royal Avenue 2, Chelsea","startDate":1421581500,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40632062","duration":360,"bikeId":"10664","endDate":1421583300,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1421582940,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40631331","duration":3120,"bikeId":"12416","endDate":1421583600,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1421580480,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40631466","duration":2820,"bikeId":"4345","endDate":1421583780,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421580960,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"40628961","duration":35400,"bikeId":"4463","endDate":1421583960,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1421548560,"startStationId":"151","startStationName":"Chepstow Villas, Notting Hill"}, +{"_id":"40632373","duration":480,"bikeId":"9712","endDate":1421584140,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1421583660,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40632245","duration":1020,"bikeId":"5760","endDate":1421584380,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421583360,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40632473","duration":600,"bikeId":"1905","endDate":1421584500,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1421583900,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40632497","duration":780,"bikeId":"8902","endDate":1421584740,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421583960,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40632590","duration":720,"bikeId":"7990","endDate":1421584980,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1421584260,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"40632644","duration":720,"bikeId":"12077","endDate":1421585160,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1421584440,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40632929","duration":180,"bikeId":"11894","endDate":1421585340,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1421585160,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40632812","duration":660,"bikeId":"2172","endDate":1421585520,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1421584860,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40632042","duration":2820,"bikeId":"7691","endDate":1421585700,"endStationId":"100","endStationName":"Albert Embankment, Vauxhall","startDate":1421582880,"startStationId":"637","startStationName":"Spencer Park, Wandsworth Common"}, +{"_id":"40632742","duration":1140,"bikeId":"7905","endDate":1421585880,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1421584740,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40632997","duration":840,"bikeId":"9540","endDate":1421586120,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1421585280,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"40632695","duration":1740,"bikeId":"7865","endDate":1421586300,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1421584560,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40633391","duration":240,"bikeId":"10578","endDate":1421586480,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1421586240,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40633104","duration":1020,"bikeId":"4095","endDate":1421586600,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1421585580,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"40633116","duration":1140,"bikeId":"10062","endDate":1421586720,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1421585580,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40633350","duration":840,"bikeId":"3903","endDate":1421586960,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1421586120,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40632814","duration":2280,"bikeId":"12914","endDate":1421587140,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421584860,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40632805","duration":2460,"bikeId":"1727","endDate":1421587320,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1421584860,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"40632236","duration":4140,"bikeId":"6067","endDate":1421587500,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1421583360,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40632582","duration":3420,"bikeId":"11901","endDate":1421587680,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421584260,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40633237","duration":1920,"bikeId":"8220","endDate":1421587860,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1421585940,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40633070","duration":2520,"bikeId":"9085","endDate":1421587980,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1421585460,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40633874","duration":720,"bikeId":"6120","endDate":1421588160,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1421587440,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40633913","duration":720,"bikeId":"5207","endDate":1421588280,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1421587560,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"40634133","duration":360,"bikeId":"2615","endDate":1421588460,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1421588100,"startStationId":"490","startStationName":"Pennington Street, Wapping"}, +{"_id":"40633843","duration":1140,"bikeId":"10383","endDate":1421588580,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1421587440,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40633785","duration":1500,"bikeId":"10514","endDate":1421588760,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1421587260,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"40634205","duration":660,"bikeId":"5051","endDate":1421588940,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1421588280,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40634377","duration":480,"bikeId":"7080","endDate":1421589120,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1421588640,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"40634219","duration":1020,"bikeId":"5036","endDate":1421589300,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421588280,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"40634496","duration":480,"bikeId":"733","endDate":1421589420,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421588940,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40634194","duration":1380,"bikeId":"3752","endDate":1421589600,"endStationId":"516","endStationName":"Chrisp Street Market, Poplar","startDate":1421588220,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"40634483","duration":840,"bikeId":"10194","endDate":1421589780,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1421588940,"startStationId":"722","startStationName":"Finnis Street, Bethnal Green"}, +{"_id":"40634500","duration":900,"bikeId":"6049","endDate":1421589900,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421589000,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"40634110","duration":2040,"bikeId":"6703","endDate":1421590080,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1421588040,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40634091","duration":2340,"bikeId":"3338","endDate":1421590320,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1421587980,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40634985","duration":480,"bikeId":"8875","endDate":1421590560,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1421590080,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40634868","duration":900,"bikeId":"12219","endDate":1421590680,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1421589780,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40634644","duration":1500,"bikeId":"3303","endDate":1421590860,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1421589360,"startStationId":"384","startStationName":"Marloes Road, Kensington"}, +{"_id":"40635226","duration":300,"bikeId":"7573","endDate":1421591040,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421590740,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40635294","duration":300,"bikeId":"1048","endDate":1421591220,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1421590920,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"40633671","duration":4380,"bikeId":"4715","endDate":1421591400,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1421587020,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"40635210","duration":900,"bikeId":"1778","endDate":1421591580,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1421590680,"startStationId":"171","startStationName":"Collingham Gardens, Earl's Court"}, +{"_id":"40635141","duration":1260,"bikeId":"7266","endDate":1421591760,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421590500,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40635444","duration":600,"bikeId":"6840","endDate":1421591880,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1421591280,"startStationId":"690","startStationName":"Stanley Grove, Battersea"}, +{"_id":"40635690","duration":180,"bikeId":"10244","endDate":1421592060,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1421591880,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"40635349","duration":1140,"bikeId":"7045","endDate":1421592180,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1421591040,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40635809","duration":240,"bikeId":"9640","endDate":1421592420,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421592180,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40635143","duration":2040,"bikeId":"4325","endDate":1421592540,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1421590500,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40635787","duration":660,"bikeId":"4034","endDate":1421592780,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1421592120,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40634744","duration":3420,"bikeId":"11042","endDate":1421592960,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421589540,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40636008","duration":420,"bikeId":"7591","endDate":1421593080,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1421592660,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40634792","duration":3660,"bikeId":"12538","endDate":1421593260,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1421589600,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40636262","duration":120,"bikeId":"3337","endDate":1421593440,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1421593320,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40636295","duration":240,"bikeId":"12585","endDate":1421593620,"endStationId":"238","endStationName":"Frampton Street, Paddington","startDate":1421593380,"startStationId":"402","startStationName":"Penfold Street, Marylebone"}, +{"_id":"40635859","duration":1440,"bikeId":"11849","endDate":1421593740,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1421592300,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40636162","duration":840,"bikeId":"4729","endDate":1421593920,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421593080,"startStationId":"517","startStationName":"Ford Road, Old Ford"}, +{"_id":"40635961","duration":1500,"bikeId":"6832","endDate":1421594100,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1421592600,"startStationId":"8","startStationName":"Lodge Road, St. John's Wood"}, +{"_id":"40636611","duration":180,"bikeId":"9766","endDate":1421594280,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1421594100,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40636464","duration":660,"bikeId":"12912","endDate":1421594400,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1421593740,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40636721","duration":300,"bikeId":"10553","endDate":1421594640,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1421594340,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40636503","duration":960,"bikeId":"2992","endDate":1421594820,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1421593860,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40636467","duration":1260,"bikeId":"11156","endDate":1421595000,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1421593740,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40636961","duration":300,"bikeId":"1678","endDate":1421595120,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1421594820,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"40637009","duration":300,"bikeId":"6366","endDate":1421595240,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1421594940,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40636626","duration":1260,"bikeId":"7990","endDate":1421595420,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421594160,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40636606","duration":1500,"bikeId":"10326","endDate":1421595600,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1421594100,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40637069","duration":780,"bikeId":"9273","endDate":1421595840,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1421595060,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"40637233","duration":480,"bikeId":"501","endDate":1421595960,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1421595480,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"40637128","duration":960,"bikeId":"9497","endDate":1421596140,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1421595180,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40637007","duration":1260,"bikeId":"2175","endDate":1421596200,"endStationId":"171","endStationName":"Collingham Gardens, Earl's Court","startDate":1421594940,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40637161","duration":1140,"bikeId":"12982","endDate":1421596380,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1421595240,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"40637538","duration":360,"bikeId":"4170","endDate":1421596560,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421596200,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40637620","duration":300,"bikeId":"10727","endDate":1421596680,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421596380,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40636481","duration":3000,"bikeId":"2332","endDate":1421596800,"endStationId":"604","endStationName":"St Martin's Close, Camden Town","startDate":1421593800,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"40636502","duration":3060,"bikeId":"12188","endDate":1421596920,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1421593860,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40637537","duration":900,"bikeId":"8647","endDate":1421597100,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1421596200,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40637881","duration":300,"bikeId":"1713","endDate":1421597280,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421596980,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"40636965","duration":2640,"bikeId":"393","endDate":1421597460,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1421594820,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40637579","duration":1320,"bikeId":"10315","endDate":1421597640,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1421596320,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40637901","duration":720,"bikeId":"2933","endDate":1421597760,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1421597040,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40637663","duration":1440,"bikeId":"97","endDate":1421597940,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1421596500,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40637812","duration":1260,"bikeId":"373","endDate":1421598060,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1421596800,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40638163","duration":540,"bikeId":"6035","endDate":1421598240,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1421597700,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40637873","duration":1440,"bikeId":"7808","endDate":1421598420,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1421596980,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40638400","duration":300,"bikeId":"9328","endDate":1421598600,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1421598300,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40638035","duration":1380,"bikeId":"11022","endDate":1421598780,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421597400,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40638217","duration":1080,"bikeId":"2057","endDate":1421598960,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1421597880,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"40638409","duration":720,"bikeId":"11965","endDate":1421599080,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1421598360,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40638444","duration":840,"bikeId":"11021","endDate":1421599260,"endStationId":"598","endStationName":"Southerton Road, Hammersmith","startDate":1421598420,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40638485","duration":900,"bikeId":"1005","endDate":1421599500,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421598600,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40638460","duration":1260,"bikeId":"6997","endDate":1421599740,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1421598480,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40638491","duration":1260,"bikeId":"5266","endDate":1421599860,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421598600,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40638742","duration":540,"bikeId":"8342","endDate":1421600040,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1421599500,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"40638437","duration":1800,"bikeId":"4473","endDate":1421600220,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1421598420,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40638912","duration":240,"bikeId":"3532","endDate":1421600460,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1421600220,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40638955","duration":420,"bikeId":"2373","endDate":1421600760,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1421600340,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40639003","duration":480,"bikeId":"5740","endDate":1421601000,"endStationId":"704","endStationName":"Mexfield Road, East Putney","startDate":1421600520,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"40638903","duration":1080,"bikeId":"10067","endDate":1421601240,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1421600160,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40637877","duration":4500,"bikeId":"1524","endDate":1421601480,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421596980,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40639294","duration":120,"bikeId":"227","endDate":1421601720,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1421601600,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40639219","duration":660,"bikeId":"10007","endDate":1421601960,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1421601300,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40639018","duration":1620,"bikeId":"8602","endDate":1421602200,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421600580,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40639047","duration":1800,"bikeId":"8413","endDate":1421602440,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421600640,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40639485","duration":360,"bikeId":"2888","endDate":1421602680,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1421602320,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"40639572","duration":300,"bikeId":"9250","endDate":1421602980,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421602680,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40639602","duration":420,"bikeId":"2141","endDate":1421603220,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1421602800,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"40639694","duration":300,"bikeId":"8039","endDate":1421603460,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421603160,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40639766","duration":180,"bikeId":"11693","endDate":1421603760,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1421603580,"startStationId":"470","startStationName":"Mostyn Grove, Bow"}, +{"_id":"40639713","duration":720,"bikeId":"8597","endDate":1421604000,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1421603280,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40639721","duration":960,"bikeId":"10905","endDate":1421604300,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1421603340,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40639925","duration":360,"bikeId":"10506","endDate":1421604600,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1421604240,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40639954","duration":480,"bikeId":"12821","endDate":1421604840,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1421604360,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40639908","duration":960,"bikeId":"5737","endDate":1421605080,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1421604120,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"40640165","duration":180,"bikeId":"15","endDate":1421605380,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421605200,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40640110","duration":720,"bikeId":"8439","endDate":1421605680,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421604960,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40640256","duration":360,"bikeId":"4871","endDate":1421606040,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1421605680,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40640238","duration":780,"bikeId":"12937","endDate":1421606340,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1421605560,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40640393","duration":240,"bikeId":"11417","endDate":1421606640,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1421606400,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"40640408","duration":600,"bikeId":"7347","endDate":1421607060,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1421606460,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40640415","duration":900,"bikeId":"6099","endDate":1421607360,"endStationId":"592","endStationName":"Bishop's Bridge Road East, Bayswater","startDate":1421606460,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40640285","duration":1800,"bikeId":"3844","endDate":1421607660,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1421605860,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40640462","duration":1320,"bikeId":"1611","endDate":1421608020,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1421606700,"startStationId":"656","startStationName":"Broomhouse Lane, Parsons Green"}, +{"_id":"40640563","duration":1140,"bikeId":"3117","endDate":1421608380,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421607240,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40640644","duration":1140,"bikeId":"4895","endDate":1421608860,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421607720,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40640659","duration":1380,"bikeId":"5772","endDate":1421609220,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421607840,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40640817","duration":840,"bikeId":"12324","endDate":1421609700,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1421608860,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40640951","duration":360,"bikeId":"12041","endDate":1421610300,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1421609940,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40641048","duration":240,"bikeId":"12973","endDate":1421610780,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1421610540,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40641023","duration":780,"bikeId":"9336","endDate":1421611140,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1421610360,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"40641130","duration":420,"bikeId":"7460","endDate":1421611440,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421611020,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40641210","duration":360,"bikeId":"10773","endDate":1421612040,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1421611680,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"40641274","duration":480,"bikeId":"10727","endDate":1421612580,"endStationId":"642","endStationName":"Fawcett Close, Battersea","startDate":1421612100,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"40640924","duration":3420,"bikeId":"9346","endDate":1421613120,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1421609700,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"40641408","duration":360,"bikeId":"1358","endDate":1421613600,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1421613240,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"40641413","duration":1140,"bikeId":"8111","endDate":1421614440,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1421613300,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"40641557","duration":300,"bikeId":"3426","endDate":1421615280,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1421614980,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40641604","duration":360,"bikeId":"8632","endDate":1421615940,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421615580,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"40641038","duration":6300,"bikeId":"12191","endDate":1421616780,"endStationId":"705","endStationName":"Upper Richmond Road, East Putney","startDate":1421610480,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40641726","duration":540,"bikeId":"11841","endDate":1421617740,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1421617200,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"40641781","duration":600,"bikeId":"776","endDate":1421618460,"endStationId":"466","endStationName":"Whiston Road, Haggerston","startDate":1421617860,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40641822","duration":1080,"bikeId":"12315","endDate":1421619480,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1421618400,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40641910","duration":720,"bikeId":"12414","endDate":1421620140,"endStationId":"744","endStationName":"Ingrave Street, Battersea","startDate":1421619420,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40641996","duration":600,"bikeId":"9799","endDate":1421621160,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1421620560,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"40641993","duration":1680,"bikeId":"20","endDate":1421622120,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421620440,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40642041","duration":1680,"bikeId":"1505","endDate":1421623020,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1421621340,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40642220","duration":300,"bikeId":"6986","endDate":1421624280,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1421623980,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40642263","duration":600,"bikeId":"13045","endDate":1421625480,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1421624880,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"40642335","duration":420,"bikeId":"11108","endDate":1421626800,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1421626380,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"40642413","duration":180,"bikeId":"10653","endDate":1421628720,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1421628540,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"40642440","duration":1740,"bikeId":"6917","endDate":1421630760,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1421629020,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"40642529","duration":660,"bikeId":"8090","endDate":1421635680,"endStationId":"761","endStationName":"Humbolt Road, Fulham","startDate":1421635020,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"40642609","duration":240,"bikeId":"10792","endDate":1421643300,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1421643060,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40642680","duration":420,"bikeId":"10913","endDate":1421647020,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1421646600,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"40642700","duration":1440,"bikeId":"7778","endDate":1421648400,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1421646960,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40642764","duration":1140,"bikeId":"9471","endDate":1421649240,"endStationId":"339","endStationName":"Risinghill Street, Angel","startDate":1421648100,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"40642858","duration":900,"bikeId":"891","endDate":1421649780,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421648880,"startStationId":"518","startStationName":"Antill Road, Mile End"}, +{"_id":"40642950","duration":600,"bikeId":"130","endDate":1421650200,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1421649600,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40643064","duration":360,"bikeId":"5987","endDate":1421650500,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1421650140,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40642975","duration":1140,"bikeId":"11866","endDate":1421650860,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421649720,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40643196","duration":360,"bikeId":"9162","endDate":1421651100,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1421650740,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40643191","duration":660,"bikeId":"6315","endDate":1421651400,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421650740,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40643231","duration":900,"bikeId":"5866","endDate":1421651760,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421650860,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40643470","duration":300,"bikeId":"9735","endDate":1421652060,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1421651760,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"40643493","duration":420,"bikeId":"4130","endDate":1421652240,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1421651820,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40643622","duration":300,"bikeId":"11364","endDate":1421652420,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1421652120,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"40643243","duration":1740,"bikeId":"9240","endDate":1421652660,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1421650920,"startStationId":"714","startStationName":"Stewart's Road, Nine Elms"}, +{"_id":"40643869","duration":180,"bikeId":"7198","endDate":1421652840,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1421652660,"startStationId":"623","startStationName":"Nantes Close, Wandsworth"}, +{"_id":"40643744","duration":600,"bikeId":"8069","endDate":1421653020,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1421652420,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40643966","duration":360,"bikeId":"5754","endDate":1421653200,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1421652840,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"40643764","duration":900,"bikeId":"6854","endDate":1421653320,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1421652420,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40644054","duration":480,"bikeId":"4500","endDate":1421653500,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421653020,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40644018","duration":600,"bikeId":"12685","endDate":1421653560,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1421652960,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40644212","duration":480,"bikeId":"2818","endDate":1421653740,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1421653260,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40643849","duration":1200,"bikeId":"7321","endDate":1421653860,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1421652660,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"40643889","duration":1320,"bikeId":"7413","endDate":1421653980,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1421652660,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40644524","duration":300,"bikeId":"7455","endDate":1421654040,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421653740,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40644191","duration":900,"bikeId":"6878","endDate":1421654160,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1421653260,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40644534","duration":480,"bikeId":"3088","endDate":1421654280,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1421653800,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40644127","duration":1200,"bikeId":"12736","endDate":1421654340,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421653140,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40644615","duration":600,"bikeId":"8873","endDate":1421654460,"endStationId":"634","endStationName":"Brook Green South, Brook Green","startDate":1421653860,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"40644666","duration":660,"bikeId":"5499","endDate":1421654580,"endStationId":"289","endStationName":"South Audley Street, Mayfair","startDate":1421653920,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"40644017","duration":1680,"bikeId":"2176","endDate":1421654640,"endStationId":"606","endStationName":"Addison Road, Holland Park","startDate":1421652960,"startStationId":"527","startStationName":"Hansard Mews, Shepherds Bush"}, +{"_id":"40644650","duration":840,"bikeId":"2300","endDate":1421654760,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1421653920,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40645077","duration":420,"bikeId":"11520","endDate":1421654880,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1421654460,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40644947","duration":600,"bikeId":"10452","endDate":1421654940,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421654340,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"40644950","duration":660,"bikeId":"348","endDate":1421655000,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1421654340,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40645212","duration":480,"bikeId":"10113","endDate":1421655120,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421654640,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40644484","duration":1500,"bikeId":"8721","endDate":1421655180,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1421653680,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40645431","duration":420,"bikeId":"10606","endDate":1421655300,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1421654880,"startStationId":"616","startStationName":"Aintree Street, Fulham"}, +{"_id":"40644962","duration":1020,"bikeId":"12368","endDate":1421655360,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421654340,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40645162","duration":900,"bikeId":"2537","endDate":1421655480,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1421654580,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40645443","duration":600,"bikeId":"8310","endDate":1421655540,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421654940,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40645707","duration":480,"bikeId":"13032","endDate":1421655660,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421655180,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40645305","duration":960,"bikeId":"6901","endDate":1421655720,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421654760,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"40646085","duration":180,"bikeId":"12091","endDate":1421655780,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1421655600,"startStationId":"675","startStationName":"Usk Road, Battersea"}, +{"_id":"40645971","duration":360,"bikeId":"10279","endDate":1421655840,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1421655480,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40645826","duration":600,"bikeId":"10132","endDate":1421655900,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421655300,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40646283","duration":240,"bikeId":"8","endDate":1421656020,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421655780,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40645923","duration":660,"bikeId":"5192","endDate":1421656080,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1421655420,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"40646274","duration":420,"bikeId":"9904","endDate":1421656200,"endStationId":"283","endStationName":"Kingsway, Covent Garden","startDate":1421655780,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40645866","duration":900,"bikeId":"8105","endDate":1421656260,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1421655360,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40646501","duration":300,"bikeId":"7417","endDate":1421656320,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421656020,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40646351","duration":540,"bikeId":"9825","endDate":1421656380,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421655840,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40645480","duration":1500,"bikeId":"6385","endDate":1421656440,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1421654940,"startStationId":"466","startStationName":"Whiston Road, Haggerston"}, +{"_id":"40646665","duration":360,"bikeId":"2121","endDate":1421656500,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1421656140,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40646625","duration":420,"bikeId":"971","endDate":1421656560,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1421656140,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40645883","duration":1260,"bikeId":"4790","endDate":1421656620,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421655360,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40646486","duration":660,"bikeId":"3091","endDate":1421656680,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421656020,"startStationId":"612","startStationName":"Wandsworth Rd, Isley Court, Wandsworth Road"}, +{"_id":"40646690","duration":660,"bikeId":"5974","endDate":1421656800,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1421656140,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"40647095","duration":240,"bikeId":"7609","endDate":1421656800,"endStationId":"365","endStationName":"City Road, Angel","startDate":1421656560,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40645878","duration":1560,"bikeId":"7763","endDate":1421656920,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421655360,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40646754","duration":720,"bikeId":"8447","endDate":1421656980,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1421656260,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40646326","duration":1200,"bikeId":"499","endDate":1421657040,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1421655840,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"40647697","duration":840,"bikeId":"2417","endDate":1421657100,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1421656260,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"40646988","duration":720,"bikeId":"7597","endDate":1421657160,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1421656440,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"40647043","duration":720,"bikeId":"10031","endDate":1421657220,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1421656500,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"40646883","duration":900,"bikeId":"11747","endDate":1421657280,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1421656380,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"40647864","duration":180,"bikeId":"3274","endDate":1421657340,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421657160,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40647111","duration":780,"bikeId":"7032","endDate":1421657400,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1421656620,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40646681","duration":1320,"bikeId":"12339","endDate":1421657460,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1421656140,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"40647892","duration":360,"bikeId":"4981","endDate":1421657520,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1421657160,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40647855","duration":420,"bikeId":"10919","endDate":1421657580,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421657160,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40647299","duration":900,"bikeId":"10143","endDate":1421657640,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1421656740,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40646876","duration":1320,"bikeId":"12097","endDate":1421657700,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1421656380,"startStationId":"454","startStationName":"Napier Avenue, Millwall"}, +{"_id":"40647635","duration":720,"bikeId":"5526","endDate":1421657700,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421656980,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40647037","duration":1260,"bikeId":"1068","endDate":1421657760,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421656500,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"40648071","duration":480,"bikeId":"11420","endDate":1421657820,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1421657340,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40647283","duration":1140,"bikeId":"9390","endDate":1421657880,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1421656740,"startStationId":"721","startStationName":"Wendon Street, Old Ford"}, +{"_id":"40648205","duration":480,"bikeId":"7297","endDate":1421657940,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421657460,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"40647561","duration":1020,"bikeId":"12145","endDate":1421657940,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421656920,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40648318","duration":480,"bikeId":"4192","endDate":1421658000,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421657520,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40647925","duration":840,"bikeId":"5977","endDate":1421658060,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1421657220,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40646477","duration":2160,"bikeId":"10929","endDate":1421658120,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421655960,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40648024","duration":900,"bikeId":"8033","endDate":1421658180,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1421657280,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40647145","duration":1620,"bikeId":"973","endDate":1421658240,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421656620,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40648749","duration":360,"bikeId":"5603","endDate":1421658300,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421657940,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40648016","duration":1080,"bikeId":"5895","endDate":1421658360,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1421657280,"startStationId":"590","startStationName":"Greenberry Street, St.John's Wood"}, +{"_id":"40647875","duration":1260,"bikeId":"2468","endDate":1421658420,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1421657160,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40648528","duration":720,"bikeId":"12268","endDate":1421658480,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1421657760,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40646591","duration":2520,"bikeId":"13008","endDate":1421658600,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1421656080,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"40648507","duration":960,"bikeId":"4411","endDate":1421658660,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1421657700,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40648236","duration":1260,"bikeId":"5411","endDate":1421658720,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1421657460,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40647765","duration":1680,"bikeId":"2104","endDate":1421658780,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1421657100,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40648249","duration":1440,"bikeId":"10567","endDate":1421658900,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421657460,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"40649284","duration":360,"bikeId":"5547","endDate":1421658960,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421658600,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"40648897","duration":900,"bikeId":"12581","endDate":1421659020,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421658120,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40649545","duration":120,"bikeId":"6452","endDate":1421659080,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1421658960,"startStationId":"599","startStationName":"Manbre Road, Hammersmith"}, +{"_id":"40648794","duration":1200,"bikeId":"7699","endDate":1421659200,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1421658000,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40649398","duration":540,"bikeId":"8001","endDate":1421659320,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421658780,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40649348","duration":720,"bikeId":"6259","endDate":1421659380,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421658660,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40649248","duration":900,"bikeId":"8363","endDate":1421659440,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1421658540,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40649867","duration":60,"bikeId":"8075","endDate":1421659560,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421659500,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40649587","duration":600,"bikeId":"8987","endDate":1421659620,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1421659020,"startStationId":"767","startStationName":"Santos Road, Wandsworth"}, +{"_id":"40649642","duration":540,"bikeId":"10022","endDate":1421659680,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1421659140,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"40649508","duration":900,"bikeId":"11147","endDate":1421659800,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1421658900,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40649799","duration":600,"bikeId":"3715","endDate":1421659920,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421659320,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40649956","duration":360,"bikeId":"3821","endDate":1421659980,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1421659620,"startStationId":"744","startStationName":"Ingrave Street, Battersea"}, +{"_id":"40649802","duration":780,"bikeId":"5266","endDate":1421660100,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421659320,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40650011","duration":480,"bikeId":"1140","endDate":1421660220,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421659740,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40650167","duration":360,"bikeId":"11330","endDate":1421660400,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421660040,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40649621","duration":1440,"bikeId":"478","endDate":1421660520,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1421659080,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"40649975","duration":1020,"bikeId":"1201","endDate":1421660700,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1421659680,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"40650255","duration":600,"bikeId":"12833","endDate":1421660820,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421660220,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40650364","duration":420,"bikeId":"9122","endDate":1421660940,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1421660520,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"40650444","duration":420,"bikeId":"10309","endDate":1421661120,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421660700,"startStationId":"328","startStationName":"New North Road 2, Hoxton"}, +{"_id":"40650212","duration":1080,"bikeId":"9912","endDate":1421661240,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1421660160,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40650420","duration":780,"bikeId":"3700","endDate":1421661420,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1421660640,"startStationId":"484","startStationName":"Bromley High Street, Bromley"}, +{"_id":"40650645","duration":360,"bikeId":"6138","endDate":1421661660,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1421661300,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40650366","duration":1320,"bikeId":"7913","endDate":1421661840,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1421660520,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"40650766","duration":360,"bikeId":"9272","endDate":1421662020,"endStationId":"487","endStationName":"Canton Street, Poplar","startDate":1421661660,"startStationId":"516","startStationName":"Chrisp Street Market, Poplar"}, +{"_id":"40650585","duration":1080,"bikeId":"4986","endDate":1421662200,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1421661120,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40650774","duration":720,"bikeId":"4821","endDate":1421662440,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1421661720,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40650938","duration":480,"bikeId":"9276","endDate":1421662740,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1421662260,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40650977","duration":540,"bikeId":"8327","endDate":1421662980,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421662440,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40651087","duration":360,"bikeId":"8798","endDate":1421663280,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421662920,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"40651140","duration":360,"bikeId":"7339","endDate":1421663520,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1421663160,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40651180","duration":600,"bikeId":"10804","endDate":1421663940,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1421663340,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40651205","duration":780,"bikeId":"8418","endDate":1421664240,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421663460,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"40651223","duration":960,"bikeId":"636","endDate":1421664540,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421663580,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40651446","duration":240,"bikeId":"5829","endDate":1421664780,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1421664540,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40651415","duration":720,"bikeId":"10308","endDate":1421665140,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1421664420,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40651593","duration":300,"bikeId":"8860","endDate":1421665500,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421665200,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40651476","duration":1020,"bikeId":"12348","endDate":1421665740,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1421664720,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40651641","duration":540,"bikeId":"5117","endDate":1421666040,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1421665500,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"40651759","duration":480,"bikeId":"2703","endDate":1421666460,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421665980,"startStationId":"355","startStationName":"Oval Way, Lambeth"}, +{"_id":"40651684","duration":1140,"bikeId":"2153","endDate":1421666820,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1421665680,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40651870","duration":540,"bikeId":"11167","endDate":1421667060,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1421666520,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"40651993","duration":300,"bikeId":"1959","endDate":1421667480,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421667180,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40652000","duration":600,"bikeId":"8486","endDate":1421667840,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1421667240,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"40651755","duration":2220,"bikeId":"7069","endDate":1421668200,"endStationId":"482","endStationName":"Thornfield House, Poplar","startDate":1421665980,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40652124","duration":720,"bikeId":"5623","endDate":1421668500,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421667780,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40652266","duration":300,"bikeId":"10822","endDate":1421668740,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421668440,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40652282","duration":600,"bikeId":"9688","endDate":1421669100,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1421668500,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"40652421","duration":240,"bikeId":"12998","endDate":1421669400,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1421669160,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40652084","duration":2100,"bikeId":"88","endDate":1421669700,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421667600,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"40652551","duration":300,"bikeId":"724","endDate":1421670000,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421669700,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40652555","duration":540,"bikeId":"7267","endDate":1421670240,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421669700,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40652522","duration":960,"bikeId":"12709","endDate":1421670540,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421669580,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40652782","duration":360,"bikeId":"8007","endDate":1421670840,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421670480,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40652767","duration":660,"bikeId":"11765","endDate":1421671080,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421670420,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40652850","duration":600,"bikeId":"8112","endDate":1421671380,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1421670780,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40653006","duration":300,"bikeId":"6531","endDate":1421671680,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1421671380,"startStationId":"353","startStationName":"Greycoat Street , Westminster"}, +{"_id":"40652842","duration":1140,"bikeId":"1762","endDate":1421671860,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1421670720,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"40652969","duration":960,"bikeId":"524","endDate":1421672160,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1421671200,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"40652471","duration":3000,"bikeId":"12154","endDate":1421672340,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421669340,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40653275","duration":420,"bikeId":"13038","endDate":1421672580,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1421672160,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40652832","duration":2100,"bikeId":"2387","endDate":1421672760,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1421670660,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40653338","duration":600,"bikeId":"2696","endDate":1421673000,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421672400,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40653433","duration":540,"bikeId":"3609","endDate":1421673240,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1421672700,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"40653411","duration":840,"bikeId":"11285","endDate":1421673420,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421672580,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40653581","duration":420,"bikeId":"12757","endDate":1421673660,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1421673240,"startStationId":"543","startStationName":"Lansdowne Walk, Notting Hill"}, +{"_id":"40653236","duration":1800,"bikeId":"10123","endDate":1421673900,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421672100,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"40653576","duration":960,"bikeId":"10379","endDate":1421674140,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1421673180,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40653819","duration":180,"bikeId":"2824","endDate":1421674380,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1421674200,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40653841","duration":360,"bikeId":"11303","endDate":1421674680,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1421674320,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40653738","duration":1140,"bikeId":"11768","endDate":1421674980,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421673840,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40653974","duration":420,"bikeId":"4138","endDate":1421675220,"endStationId":"598","endStationName":"Southerton Road, Hammersmith","startDate":1421674800,"startStationId":"591","startStationName":"Westfield Library Corner, Shepherd's Bush"}, +{"_id":"40654038","duration":480,"bikeId":"3356","endDate":1421675520,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1421675040,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40654144","duration":360,"bikeId":"11416","endDate":1421675760,"endStationId":"149","endStationName":"Kennington Road Post Office, Oval","startDate":1421675400,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40654185","duration":360,"bikeId":"1107","endDate":1421675940,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1421675580,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40654280","duration":240,"bikeId":"11075","endDate":1421676120,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1421675880,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40654188","duration":780,"bikeId":"8107","endDate":1421676360,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1421675580,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40654263","duration":840,"bikeId":"11837","endDate":1421676660,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1421675820,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40654476","duration":360,"bikeId":"591","endDate":1421676960,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1421676600,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40654490","duration":540,"bikeId":"6281","endDate":1421677260,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1421676720,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40654618","duration":300,"bikeId":"5266","endDate":1421677560,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1421677260,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40654701","duration":120,"bikeId":"9427","endDate":1421677800,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1421677680,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40654469","duration":1560,"bikeId":"5840","endDate":1421678160,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1421676600,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40654576","duration":1380,"bikeId":"7371","endDate":1421678460,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1421677080,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"40654501","duration":2040,"bikeId":"11117","endDate":1421678760,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1421676720,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"40654873","duration":660,"bikeId":"8008","endDate":1421679060,"endStationId":"693","endStationName":"Felsham Road, Putney","startDate":1421678400,"startStationId":"665","startStationName":"Smugglers Way, Wandsworth"}, +{"_id":"40654726","duration":1500,"bikeId":"829","endDate":1421679300,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421677800,"startStationId":"523","startStationName":"Langdon Park, Poplar"}, +{"_id":"40654988","duration":780,"bikeId":"4416","endDate":1421679540,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1421678760,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40655183","duration":120,"bikeId":"4328","endDate":1421679780,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421679660,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40655241","duration":240,"bikeId":"12458","endDate":1421680080,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1421679840,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"40655316","duration":300,"bikeId":"4324","endDate":1421680380,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421680080,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40655220","duration":900,"bikeId":"7146","endDate":1421680680,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1421679780,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40655476","duration":240,"bikeId":"532","endDate":1421680980,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1421680740,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"40655050","duration":2160,"bikeId":"5722","endDate":1421681220,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1421679060,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40655533","duration":480,"bikeId":"663","endDate":1421681520,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1421681040,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40655627","duration":480,"bikeId":"9751","endDate":1421681880,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1421681400,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40655534","duration":1080,"bikeId":"11119","endDate":1421682120,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1421681040,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40655667","duration":900,"bikeId":"7649","endDate":1421682360,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1421681460,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40655531","duration":1620,"bikeId":"11478","endDate":1421682600,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1421680980,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40655379","duration":2520,"bikeId":"6473","endDate":1421682900,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1421680380,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40655612","duration":1860,"bikeId":"2447","endDate":1421683140,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421681280,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40655313","duration":3360,"bikeId":"8443","endDate":1421683440,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1421680080,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40655893","duration":1380,"bikeId":"7223","endDate":1421683680,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1421682300,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40656191","duration":540,"bikeId":"6199","endDate":1421683860,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1421683320,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"40656135","duration":900,"bikeId":"12992","endDate":1421684040,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421683140,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40656319","duration":540,"bikeId":"651","endDate":1421684220,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421683680,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40656413","duration":360,"bikeId":"9809","endDate":1421684400,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1421684040,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40656493","duration":360,"bikeId":"951","endDate":1421684640,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1421684280,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40656302","duration":1260,"bikeId":"10593","endDate":1421684880,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1421683620,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"40656442","duration":960,"bikeId":"3211","endDate":1421685060,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1421684100,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40656699","duration":300,"bikeId":"3796","endDate":1421685240,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1421684940,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40656786","duration":240,"bikeId":"11316","endDate":1421685420,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1421685180,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40656695","duration":720,"bikeId":"3266","endDate":1421685660,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421684940,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40656908","duration":360,"bikeId":"8188","endDate":1421685840,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1421685480,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40657029","duration":240,"bikeId":"6681","endDate":1421686020,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1421685780,"startStationId":"274","startStationName":"Warwick Road, Olympia"}, +{"_id":"40656932","duration":720,"bikeId":"6964","endDate":1421686200,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421685480,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40657036","duration":600,"bikeId":"7636","endDate":1421686380,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421685780,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40656934","duration":960,"bikeId":"12557","endDate":1421686500,"endStationId":"550","endStationName":"Harford Street, Mile End","startDate":1421685540,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40657031","duration":840,"bikeId":"2003","endDate":1421686620,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1421685780,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40657173","duration":720,"bikeId":"2458","endDate":1421686800,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1421686080,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40657279","duration":660,"bikeId":"9136","endDate":1421686980,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1421686320,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40657350","duration":600,"bikeId":"9652","endDate":1421687100,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421686500,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40657445","duration":480,"bikeId":"11264","endDate":1421687220,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1421686740,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40657289","duration":960,"bikeId":"7935","endDate":1421687340,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1421686380,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40657755","duration":300,"bikeId":"6974","endDate":1421687520,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1421687220,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"40657702","duration":480,"bikeId":"12660","endDate":1421687640,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1421687160,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40657414","duration":1020,"bikeId":"5026","endDate":1421687700,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421686680,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40657760","duration":600,"bikeId":"310","endDate":1421687820,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1421687220,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40657930","duration":480,"bikeId":"11039","endDate":1421687940,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421687460,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40656735","duration":3000,"bikeId":"7832","endDate":1421688060,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1421685060,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"40657770","duration":900,"bikeId":"1800","endDate":1421688120,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1421687220,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40658237","duration":360,"bikeId":"12762","endDate":1421688240,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421687880,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40657898","duration":960,"bikeId":"4651","endDate":1421688360,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1421687400,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40657843","duration":1080,"bikeId":"7111","endDate":1421688420,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1421687340,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40658370","duration":420,"bikeId":"338","endDate":1421688540,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1421688120,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40658243","duration":780,"bikeId":"4841","endDate":1421688660,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421687880,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40658508","duration":480,"bikeId":"7551","endDate":1421688780,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1421688300,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40658240","duration":960,"bikeId":"7045","endDate":1421688840,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1421687880,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40658371","duration":840,"bikeId":"4895","endDate":1421688960,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421688120,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40658838","duration":240,"bikeId":"3079","endDate":1421689020,"endStationId":"365","endStationName":"City Road, Angel","startDate":1421688780,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40658816","duration":420,"bikeId":"7469","endDate":1421689140,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1421688720,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"40659109","duration":180,"bikeId":"9782","endDate":1421689200,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421689020,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40658602","duration":780,"bikeId":"11944","endDate":1421689260,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1421688480,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40658882","duration":540,"bikeId":"3989","endDate":1421689380,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1421688840,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40658480","duration":1140,"bikeId":"7445","endDate":1421689440,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1421688300,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40659043","duration":600,"bikeId":"7976","endDate":1421689560,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1421688960,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40659263","duration":420,"bikeId":"11851","endDate":1421689620,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421689200,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40659273","duration":480,"bikeId":"11765","endDate":1421689680,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1421689200,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40659143","duration":660,"bikeId":"7609","endDate":1421689740,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421689080,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40659352","duration":600,"bikeId":"7232","endDate":1421689860,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1421689260,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"40659503","duration":480,"bikeId":"8929","endDate":1421689920,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1421689440,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40659155","duration":900,"bikeId":"5895","endDate":1421689980,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1421689080,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40659412","duration":720,"bikeId":"8945","endDate":1421690040,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421689320,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40658725","duration":1440,"bikeId":"13038","endDate":1421690100,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1421688660,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40658992","duration":1200,"bikeId":"4656","endDate":1421690160,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421688960,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40659615","duration":660,"bikeId":"11120","endDate":1421690220,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1421689560,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40659984","duration":360,"bikeId":"11069","endDate":1421690340,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421689980,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40659823","duration":600,"bikeId":"10358","endDate":1421690400,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1421689800,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40659947","duration":540,"bikeId":"11164","endDate":1421690460,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421689920,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40659596","duration":960,"bikeId":"9781","endDate":1421690520,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1421689560,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40658960","duration":1680,"bikeId":"11012","endDate":1421690580,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1421688900,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40658801","duration":1920,"bikeId":"11006","endDate":1421690640,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1421688720,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40659731","duration":1080,"bikeId":"9785","endDate":1421690760,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1421689680,"startStationId":"475","startStationName":"Lightermans Road, Millwall"}, +{"_id":"40660228","duration":600,"bikeId":"11979","endDate":1421690820,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421690220,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"40659725","duration":1200,"bikeId":"9523","endDate":1421690880,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1421689680,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"40660582","duration":300,"bikeId":"3545","endDate":1421690940,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1421690640,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40660791","duration":240,"bikeId":"2816","endDate":1421691060,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1421690820,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40660186","duration":960,"bikeId":"9005","endDate":1421691120,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1421690160,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40660830","duration":300,"bikeId":"7609","endDate":1421691180,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421690880,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40661031","duration":180,"bikeId":"2170","endDate":1421691300,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421691120,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40661072","duration":240,"bikeId":"1575","endDate":1421691360,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421691120,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40660586","duration":780,"bikeId":"3673","endDate":1421691420,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1421690640,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"40660819","duration":600,"bikeId":"5560","endDate":1421691480,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421690880,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40660539","duration":1020,"bikeId":"8690","endDate":1421691600,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1421690580,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40661018","duration":600,"bikeId":"12768","endDate":1421691660,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1421691060,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"40661309","duration":300,"bikeId":"8398","endDate":1421691720,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1421691420,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40661382","duration":240,"bikeId":"10458","endDate":1421691780,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1421691540,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40661327","duration":420,"bikeId":"2020","endDate":1421691840,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1421691420,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40661125","duration":720,"bikeId":"987","endDate":1421691900,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1421691180,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40660953","duration":1020,"bikeId":"3994","endDate":1421692020,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1421691000,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40661615","duration":240,"bikeId":"12823","endDate":1421692080,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1421691840,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40660960","duration":1140,"bikeId":"5855","endDate":1421692140,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1421691000,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"40661469","duration":540,"bikeId":"7965","endDate":1421692200,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1421691660,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40661531","duration":600,"bikeId":"4804","endDate":1421692320,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1421691720,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40661184","duration":1140,"bikeId":"217","endDate":1421692380,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1421691240,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40661802","duration":360,"bikeId":"5009","endDate":1421692500,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1421692140,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40661611","duration":780,"bikeId":"4529","endDate":1421692620,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1421691840,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40661647","duration":780,"bikeId":"4715","endDate":1421692680,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421691900,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40662019","duration":360,"bikeId":"5774","endDate":1421692800,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1421692440,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40661975","duration":540,"bikeId":"487","endDate":1421692920,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1421692380,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40662032","duration":540,"bikeId":"5393","endDate":1421692980,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1421692440,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40662252","duration":360,"bikeId":"999","endDate":1421693100,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1421692740,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40660849","duration":2220,"bikeId":"9387","endDate":1421693160,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1421690940,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40662002","duration":900,"bikeId":"1873","endDate":1421693280,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1421692380,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40662160","duration":720,"bikeId":"2763","endDate":1421693340,"endStationId":"174","endStationName":"Strand, Strand","startDate":1421692620,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40662450","duration":420,"bikeId":"6160","endDate":1421693460,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1421693040,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40659743","duration":3840,"bikeId":"4241","endDate":1421693520,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1421689680,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"40662628","duration":300,"bikeId":"1128","endDate":1421693640,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1421693340,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40662441","duration":660,"bikeId":"11241","endDate":1421693700,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1421693040,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40662697","duration":360,"bikeId":"10887","endDate":1421693820,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1421693460,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40662677","duration":540,"bikeId":"5282","endDate":1421693940,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1421693400,"startStationId":"775","startStationName":"Little Brook Green, Brook Green"}, +{"_id":"40662960","duration":180,"bikeId":"9525","endDate":1421694060,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421693880,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40662399","duration":1200,"bikeId":"11042","endDate":1421694180,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1421692980,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40662923","duration":480,"bikeId":"9457","endDate":1421694300,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1421693820,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"40662945","duration":540,"bikeId":"7341","endDate":1421694420,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421693880,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40662561","duration":1320,"bikeId":"11312","endDate":1421694540,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1421693220,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40662907","duration":840,"bikeId":"11084","endDate":1421694660,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421693820,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40663188","duration":420,"bikeId":"6426","endDate":1421694720,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1421694300,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40662866","duration":1080,"bikeId":"9251","endDate":1421694840,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1421693760,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"40663279","duration":480,"bikeId":"10852","endDate":1421694960,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1421694480,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"40663018","duration":1080,"bikeId":"58","endDate":1421695080,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1421694000,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40663344","duration":600,"bikeId":"6173","endDate":1421695200,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1421694600,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40662811","duration":1680,"bikeId":"3798","endDate":1421695320,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1421693640,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40663603","duration":300,"bikeId":"3260","endDate":1421695440,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1421695140,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40663339","duration":960,"bikeId":"12377","endDate":1421695560,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1421694600,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"40662895","duration":1860,"bikeId":"7252","endDate":1421695680,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1421693820,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40663768","duration":360,"bikeId":"4900","endDate":1421695860,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1421695500,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"40663857","duration":360,"bikeId":"9844","endDate":1421696040,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1421695680,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40663817","duration":600,"bikeId":"8773","endDate":1421696220,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1421695620,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40663701","duration":1020,"bikeId":"11738","endDate":1421696340,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421695320,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"40663843","duration":840,"bikeId":"5665","endDate":1421696520,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1421695680,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40664158","duration":240,"bikeId":"7461","endDate":1421696640,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1421696400,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"40663910","duration":960,"bikeId":"6082","endDate":1421696820,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1421695860,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40664287","duration":240,"bikeId":"12595","endDate":1421697000,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1421696760,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"40664353","duration":240,"bikeId":"6593","endDate":1421697180,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1421696940,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40664295","duration":540,"bikeId":"575","endDate":1421697360,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1421696820,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"40664416","duration":420,"bikeId":"12045","endDate":1421697540,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421697120,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"40664165","duration":1380,"bikeId":"5214","endDate":1421697780,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1421696400,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40664559","duration":360,"bikeId":"8429","endDate":1421697960,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1421697600,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"40664557","duration":540,"bikeId":"7835","endDate":1421698140,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1421697600,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40664640","duration":480,"bikeId":"9400","endDate":1421698320,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1421697840,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"40664656","duration":720,"bikeId":"8272","endDate":1421698560,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1421697840,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"40664786","duration":540,"bikeId":"999","endDate":1421698740,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1421698200,"startStationId":"592","startStationName":"Bishop's Bridge Road East, Bayswater"}, +{"_id":"40664708","duration":1020,"bikeId":"4043","endDate":1421698980,"endStationId":"205","endStationName":"New Road 2, Whitechapel","startDate":1421697960,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"40664908","duration":540,"bikeId":"11521","endDate":1421699220,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1421698680,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40664902","duration":780,"bikeId":"3098","endDate":1421699400,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1421698620,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"40665093","duration":300,"bikeId":"12155","endDate":1421699640,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1421699340,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40665166","duration":240,"bikeId":"4111","endDate":1421699880,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1421699640,"startStationId":"612","startStationName":"Wandsworth Rd, Isley Court, Wandsworth Road"}, +{"_id":"40665186","duration":420,"bikeId":"520","endDate":1421700180,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1421699760,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"40665189","duration":660,"bikeId":"2487","endDate":1421700420,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1421699760,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40665351","duration":240,"bikeId":"9676","endDate":1421700720,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421700480,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40665232","duration":1080,"bikeId":"1053","endDate":1421701020,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1421699940,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"40665508","duration":120,"bikeId":"10546","endDate":1421701320,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1421701200,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40665307","duration":1380,"bikeId":"9088","endDate":1421701620,"endStationId":"280","endStationName":"Royal Avenue 2, Chelsea","startDate":1421700240,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40665466","duration":960,"bikeId":"2370","endDate":1421701980,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421701020,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40665607","duration":600,"bikeId":"4218","endDate":1421702340,"endStationId":"310","endStationName":"Black Prince Road, Vauxhall","startDate":1421701740,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"40665715","duration":420,"bikeId":"1267","endDate":1421702640,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1421702220,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40665287","duration":2820,"bikeId":"4500","endDate":1421703000,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1421700180,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40665787","duration":780,"bikeId":"9540","endDate":1421703420,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1421702640,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"40665895","duration":540,"bikeId":"6381","endDate":1421703960,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1421703420,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40665872","duration":1080,"bikeId":"5005","endDate":1421704380,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1421703300,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40665931","duration":1140,"bikeId":"1068","endDate":1421704860,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1421703720,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40666103","duration":360,"bikeId":"7498","endDate":1421705340,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1421704980,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40666194","duration":240,"bikeId":"8159","endDate":1421705760,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421705520,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40666249","duration":240,"bikeId":"11553","endDate":1421706360,"endStationId":"716","endStationName":"Stainsby Road , Poplar","startDate":1421706120,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"40666182","duration":1560,"bikeId":"7766","endDate":1421706960,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421705400,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40666360","duration":300,"bikeId":"3376","endDate":1421707740,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1421707440,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"40666405","duration":480,"bikeId":"3287","endDate":1421708400,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1421707920,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40666509","duration":60,"bikeId":"953","endDate":1421709120,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1421709060,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40666557","duration":180,"bikeId":"9874","endDate":1421709840,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1421709660,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"40666622","duration":360,"bikeId":"4903","endDate":1421710860,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1421710500,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40666673","duration":480,"bikeId":"8136","endDate":1421711760,"endStationId":"86","endStationName":"Sancroft Street, Vauxhall","startDate":1421711280,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"40666599","duration":3120,"bikeId":"11910","endDate":1421713380,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1421710260,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40666784","duration":1440,"bikeId":"8751","endDate":1421716020,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1421714580,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40666872","duration":480,"bikeId":"5113","endDate":1421720760,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1421720280,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40666926","duration":1620,"bikeId":"4381","endDate":1421729400,"endStationId":"410","endStationName":"Edgware Road Station, Paddington","startDate":1421727780,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"40667025","duration":300,"bikeId":"5586","endDate":1421733660,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421733360,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40667121","duration":180,"bikeId":"9657","endDate":1421734860,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1421734680,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40667085","duration":1260,"bikeId":"4569","endDate":1421735580,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1421734320,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40667303","duration":240,"bikeId":"12043","endDate":1421736120,"endStationId":"612","endStationName":"Wandsworth Rd, Isley Court, Wandsworth Road","startDate":1421735880,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"40667330","duration":480,"bikeId":"11181","endDate":1421736480,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421736000,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40667309","duration":840,"bikeId":"5205","endDate":1421736780,"endStationId":"694","endStationName":"Putney Rail Station, Putney","startDate":1421735940,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"40667466","duration":480,"bikeId":"7785","endDate":1421737140,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1421736660,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40667473","duration":720,"bikeId":"146","endDate":1421737440,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421736720,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40667620","duration":420,"bikeId":"11428","endDate":1421737680,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1421737260,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40667655","duration":600,"bikeId":"9370","endDate":1421737980,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421737380,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40667636","duration":960,"bikeId":"10710","endDate":1421738280,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421737320,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40667925","duration":240,"bikeId":"11547","endDate":1421738460,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1421738220,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40667974","duration":300,"bikeId":"9058","endDate":1421738700,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421738400,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40667814","duration":960,"bikeId":"10702","endDate":1421738880,"endStationId":"181","endStationName":"Belgrave Square, Belgravia","startDate":1421737920,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40668069","duration":480,"bikeId":"12548","endDate":1421739120,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421738640,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40668087","duration":540,"bikeId":"9751","endDate":1421739240,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1421738700,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40668300","duration":240,"bikeId":"9237","endDate":1421739360,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1421739120,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"40668385","duration":300,"bikeId":"1220","endDate":1421739540,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1421739240,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40668189","duration":840,"bikeId":"11331","endDate":1421739720,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421738880,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40668020","duration":1320,"bikeId":"11771","endDate":1421739840,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1421738520,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"40668874","duration":0,"bikeId":"10131","endDate":1421739960,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1421739960,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40668581","duration":540,"bikeId":"7444","endDate":1421740140,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1421739600,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40668476","duration":780,"bikeId":"1752","endDate":1421740200,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1421739420,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"40668931","duration":300,"bikeId":"9417","endDate":1421740320,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1421740020,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40669043","duration":180,"bikeId":"2293","endDate":1421740380,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1421740200,"startStationId":"470","startStationName":"Mostyn Grove, Bow"}, +{"_id":"40668658","duration":840,"bikeId":"713","endDate":1421740500,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1421739660,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40668279","duration":1560,"bikeId":"7762","endDate":1421740620,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421739060,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40668724","duration":900,"bikeId":"8693","endDate":1421740680,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1421739780,"startStationId":"656","startStationName":"Broomhouse Lane, Parsons Green"}, +{"_id":"40668967","duration":660,"bikeId":"1479","endDate":1421740740,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1421740080,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40669031","duration":660,"bikeId":"10514","endDate":1421740860,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421740200,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40668878","duration":960,"bikeId":"12418","endDate":1421740920,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1421739960,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"40668997","duration":900,"bikeId":"11367","endDate":1421741040,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421740140,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"40669409","duration":420,"bikeId":"524","endDate":1421741160,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1421740740,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40669524","duration":300,"bikeId":"3611","endDate":1421741220,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421740920,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40669105","duration":1080,"bikeId":"3723","endDate":1421741340,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1421740260,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40669028","duration":1200,"bikeId":"1607","endDate":1421741400,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421740200,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40669714","duration":420,"bikeId":"12558","endDate":1421741520,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421741100,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40669745","duration":480,"bikeId":"3356","endDate":1421741640,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1421741160,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40669901","duration":360,"bikeId":"12633","endDate":1421741700,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1421741340,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"40670042","duration":300,"bikeId":"5734","endDate":1421741820,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1421741520,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40669205","duration":1440,"bikeId":"4517","endDate":1421741880,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1421740440,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40670044","duration":420,"bikeId":"12139","endDate":1421741940,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1421741520,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"40669992","duration":600,"bikeId":"7464","endDate":1421742060,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421741460,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40669840","duration":900,"bikeId":"3891","endDate":1421742120,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1421741220,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"40669403","duration":1440,"bikeId":"977","endDate":1421742180,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1421740740,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40669530","duration":1320,"bikeId":"12945","endDate":1421742240,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1421740920,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40669880","duration":1020,"bikeId":"6884","endDate":1421742300,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1421741280,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"40670606","duration":360,"bikeId":"9324","endDate":1421742420,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1421742060,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40670041","duration":960,"bikeId":"3217","endDate":1421742480,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1421741520,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40670305","duration":780,"bikeId":"1533","endDate":1421742540,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1421741760,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"40670705","duration":480,"bikeId":"8278","endDate":1421742600,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1421742120,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40670277","duration":960,"bikeId":"5239","endDate":1421742660,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1421741700,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"40670314","duration":960,"bikeId":"5270","endDate":1421742720,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1421741760,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40669487","duration":1920,"bikeId":"5669","endDate":1421742780,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1421740860,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"40669752","duration":1680,"bikeId":"8790","endDate":1421742840,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1421741160,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40669801","duration":1680,"bikeId":"2911","endDate":1421742900,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1421741220,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"40670122","duration":1440,"bikeId":"693","endDate":1421743020,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1421741580,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40670628","duration":1020,"bikeId":"8501","endDate":1421743080,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1421742060,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40671309","duration":480,"bikeId":"8239","endDate":1421743140,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421742660,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"40671060","duration":720,"bikeId":"1586","endDate":1421743200,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421742480,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40671752","duration":240,"bikeId":"12669","endDate":1421743260,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421743020,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40669768","duration":2160,"bikeId":"2345","endDate":1421743320,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1421741160,"startStationId":"209","startStationName":"Denyer Street, Knightsbridge"}, +{"_id":"40671809","duration":360,"bikeId":"4935","endDate":1421743380,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421743020,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"40671071","duration":960,"bikeId":"11913","endDate":1421743440,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1421742480,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40671696","duration":540,"bikeId":"12581","endDate":1421743500,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1421742960,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40671933","duration":360,"bikeId":"12965","endDate":1421743500,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1421743140,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40671758","duration":600,"bikeId":"3108","endDate":1421743620,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421743020,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40670604","duration":1560,"bikeId":"696","endDate":1421743620,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1421742060,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40670869","duration":1560,"bikeId":"4037","endDate":1421743680,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1421742120,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"40672126","duration":480,"bikeId":"561","endDate":1421743740,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1421743260,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40672082","duration":540,"bikeId":"8827","endDate":1421743800,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1421743260,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40671852","duration":780,"bikeId":"8569","endDate":1421743860,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1421743080,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40672589","duration":300,"bikeId":"12398","endDate":1421743920,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1421743620,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40671700","duration":1020,"bikeId":"11842","endDate":1421743980,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1421742960,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40672539","duration":420,"bikeId":"12462","endDate":1421744040,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421743620,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40671603","duration":1140,"bikeId":"9995","endDate":1421744040,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421742900,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40672383","duration":600,"bikeId":"3648","endDate":1421744100,"endStationId":"672","endStationName":"Grant Road Central, Clapham Junction","startDate":1421743500,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40672525","duration":540,"bikeId":"12628","endDate":1421744160,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1421743620,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40672585","duration":540,"bikeId":"3222","endDate":1421744160,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1421743620,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40672884","duration":300,"bikeId":"3581","endDate":1421744220,"endStationId":"611","endStationName":"Princedale Road , Holland Park","startDate":1421743920,"startStationId":"736","startStationName":"Queensdale Road, Shepherd's Bush"}, +{"_id":"40671939","duration":1140,"bikeId":"8966","endDate":1421744280,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1421743140,"startStationId":"134","startStationName":"Wapping High Street, Wapping"}, +{"_id":"40672748","duration":540,"bikeId":"2915","endDate":1421744340,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1421743800,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40673090","duration":300,"bikeId":"641","endDate":1421744340,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1421744040,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40672500","duration":840,"bikeId":"4397","endDate":1421744400,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1421743560,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40672523","duration":840,"bikeId":"6573","endDate":1421744460,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1421743620,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"40672971","duration":540,"bikeId":"7073","endDate":1421744520,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1421743980,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40672372","duration":1080,"bikeId":"326","endDate":1421744580,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1421743500,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40673387","duration":300,"bikeId":"2652","endDate":1421744640,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1421744340,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40673341","duration":360,"bikeId":"5228","endDate":1421744700,"endStationId":"714","endStationName":"Stewart's Road, Nine Elms","startDate":1421744340,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"40673430","duration":420,"bikeId":"7602","endDate":1421744820,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1421744400,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40673241","duration":600,"bikeId":"10441","endDate":1421744820,"endStationId":"700","endStationName":"Battersea Church Road, Battersea","startDate":1421744220,"startStationId":"672","startStationName":"Grant Road Central, Clapham Junction"}, +{"_id":"40673122","duration":780,"bikeId":"12386","endDate":1421744880,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1421744100,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"40673403","duration":600,"bikeId":"10710","endDate":1421745000,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1421744400,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40673624","duration":420,"bikeId":"6711","endDate":1421745060,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1421744640,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40673767","duration":300,"bikeId":"8680","endDate":1421745120,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1421744820,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40673155","duration":1080,"bikeId":"9439","endDate":1421745180,"endStationId":"207","endStationName":"Grosvenor Crescent, Belgravia","startDate":1421744100,"startStationId":"690","startStationName":"Stanley Grove, Battersea"}, +{"_id":"40672588","duration":1620,"bikeId":"9180","endDate":1421745300,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421743680,"startStationId":"473","startStationName":"Millharbour, Millwall"}, +{"_id":"40673517","duration":840,"bikeId":"3154","endDate":1421745360,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1421744520,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40673749","duration":720,"bikeId":"10895","endDate":1421745480,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1421744760,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"40673227","duration":1320,"bikeId":"2888","endDate":1421745540,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421744220,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40673484","duration":1200,"bikeId":"842","endDate":1421745660,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1421744460,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40673804","duration":900,"bikeId":"6455","endDate":1421745780,"endStationId":"551","endStationName":"Montgomery Square, Canary Wharf","startDate":1421744880,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40674166","duration":480,"bikeId":"7775","endDate":1421745840,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1421745360,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40673411","duration":1500,"bikeId":"6787","endDate":1421745900,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1421744400,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40674423","duration":240,"bikeId":"11028","endDate":1421746020,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421745780,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40674463","duration":240,"bikeId":"4305","endDate":1421746080,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1421745840,"startStationId":"740","startStationName":"Sirdar Road, Avondale"}, +{"_id":"40674480","duration":300,"bikeId":"8112","endDate":1421746200,"endStationId":"487","endStationName":"Canton Street, Poplar","startDate":1421745900,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40673955","duration":1200,"bikeId":"1700","endDate":1421746260,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1421745060,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40674349","duration":720,"bikeId":"5202","endDate":1421746380,"endStationId":"165","endStationName":"Orsett Terrace, Bayswater","startDate":1421745660,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40674401","duration":840,"bikeId":"1160","endDate":1421746560,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421745720,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40674712","duration":360,"bikeId":"10625","endDate":1421746680,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1421746320,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40674211","duration":1380,"bikeId":"10528","endDate":1421746800,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1421745420,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40674654","duration":660,"bikeId":"12580","endDate":1421746920,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421746260,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40674244","duration":1560,"bikeId":"12815","endDate":1421747040,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1421745480,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40675037","duration":120,"bikeId":"9266","endDate":1421747220,"endStationId":"21","endStationName":"Hampstead Road (Cartmel), Euston","startDate":1421747100,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40674867","duration":600,"bikeId":"12382","endDate":1421747340,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1421746740,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40675031","duration":420,"bikeId":"10172","endDate":1421747520,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1421747100,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"40674738","duration":1260,"bikeId":"11065","endDate":1421747640,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1421746380,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"40675275","duration":120,"bikeId":"11711","endDate":1421747820,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1421747700,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40675080","duration":840,"bikeId":"10552","endDate":1421748000,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421747160,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40675000","duration":1200,"bikeId":"6201","endDate":1421748180,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1421746980,"startStationId":"523","startStationName":"Langdon Park, Poplar"}, +{"_id":"40674771","duration":1860,"bikeId":"8990","endDate":1421748360,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1421746500,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"40675437","duration":300,"bikeId":"11314","endDate":1421748600,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1421748300,"startStationId":"315","startStationName":"The Tennis Courts, Regent's Park"}, +{"_id":"40675337","duration":900,"bikeId":"800","endDate":1421748840,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1421747940,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"40675320","duration":1200,"bikeId":"9486","endDate":1421749080,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1421747880,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"40675475","duration":900,"bikeId":"3624","endDate":1421749380,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1421748480,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40675626","duration":600,"bikeId":"11476","endDate":1421749680,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1421749080,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40675718","duration":420,"bikeId":"10746","endDate":1421749980,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1421749560,"startStationId":"398","startStationName":"Holland Park, Kensington"}, +{"_id":"40675744","duration":600,"bikeId":"11478","endDate":1421750280,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1421749680,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"40675779","duration":780,"bikeId":"3461","endDate":1421750580,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421749800,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40675925","duration":540,"bikeId":"13001","endDate":1421750940,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1421750400,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40675886","duration":960,"bikeId":"5462","endDate":1421751180,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421750220,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40676084","duration":480,"bikeId":"6667","endDate":1421751420,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1421750940,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40675926","duration":1320,"bikeId":"12872","endDate":1421751720,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1421750400,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40676116","duration":1020,"bikeId":"10278","endDate":1421752080,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421751060,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40676283","duration":540,"bikeId":"11726","endDate":1421752440,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1421751900,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40675993","duration":2160,"bikeId":"10778","endDate":1421752740,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1421750580,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40676457","duration":120,"bikeId":"2911","endDate":1421753160,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1421753040,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40676495","duration":420,"bikeId":"8496","endDate":1421753700,"endStationId":"100","endStationName":"Albert Embankment, Vauxhall","startDate":1421753280,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40676569","duration":420,"bikeId":"4747","endDate":1421754120,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421753700,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40676732","duration":120,"bikeId":"9656","endDate":1421754480,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1421754360,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40676386","duration":2100,"bikeId":"8317","endDate":1421754720,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1421752620,"startStationId":"484","startStationName":"Bromley High Street, Bromley"}, +{"_id":"40676850","duration":60,"bikeId":"2631","endDate":1421755080,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1421755020,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40676863","duration":360,"bikeId":"8618","endDate":1421755440,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1421755080,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40676794","duration":1020,"bikeId":"5757","endDate":1421755740,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1421754720,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"40676917","duration":780,"bikeId":"2624","endDate":1421756100,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1421755320,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40676965","duration":840,"bikeId":"3211","endDate":1421756400,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1421755560,"startStationId":"146","startStationName":"Vauxhall Bridge , Pimlico"}, +{"_id":"40677001","duration":960,"bikeId":"6135","endDate":1421756700,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421755740,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40677065","duration":960,"bikeId":"4544","endDate":1421756940,"endStationId":"455","endStationName":"East Ferry Road, Cubitt Town","startDate":1421755980,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"40677307","duration":360,"bikeId":"447","endDate":1421757180,"endStationId":"339","endStationName":"Risinghill Street, Angel","startDate":1421756820,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40677088","duration":1380,"bikeId":"7745","endDate":1421757420,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1421756040,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40677270","duration":1020,"bikeId":"12258","endDate":1421757660,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1421756640,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40677449","duration":600,"bikeId":"11103","endDate":1421757900,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1421757300,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40677340","duration":1200,"bikeId":"6103","endDate":1421758140,"endStationId":"740","endStationName":"Sirdar Road, Avondale","startDate":1421756940,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40677580","duration":480,"bikeId":"10643","endDate":1421758320,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1421757840,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40676990","duration":2880,"bikeId":"4516","endDate":1421758560,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1421755680,"startStationId":"763","startStationName":"Mile End Park Leisure Centre, Mile End"}, +{"_id":"40677764","duration":360,"bikeId":"4839","endDate":1421758800,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421758440,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40677846","duration":240,"bikeId":"4999","endDate":1421759040,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1421758800,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40677650","duration":1200,"bikeId":"1509","endDate":1421759280,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1421758080,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40677753","duration":1080,"bikeId":"90","endDate":1421759520,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1421758440,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40677994","duration":540,"bikeId":"3821","endDate":1421759760,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1421759220,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40678094","duration":420,"bikeId":"6867","endDate":1421760000,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421759580,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40678112","duration":600,"bikeId":"11077","endDate":1421760240,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421759640,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40677870","duration":1620,"bikeId":"11731","endDate":1421760480,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1421758860,"startStationId":"757","startStationName":"Harcourt Terrace, West Brompton"}, +{"_id":"40678219","duration":600,"bikeId":"3129","endDate":1421760660,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1421760060,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40678353","duration":420,"bikeId":"3347","endDate":1421760900,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1421760480,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40678472","duration":240,"bikeId":"5147","endDate":1421761140,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1421760900,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"40678513","duration":360,"bikeId":"10468","endDate":1421761440,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1421761080,"startStationId":"550","startStationName":"Harford Street, Mile End"}, +{"_id":"40678446","duration":840,"bikeId":"4258","endDate":1421761680,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1421760840,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"40678672","duration":300,"bikeId":"11158","endDate":1421761920,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1421761620,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40678728","duration":300,"bikeId":"1974","endDate":1421762100,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1421761800,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40678766","duration":420,"bikeId":"11843","endDate":1421762340,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421761920,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40678853","duration":360,"bikeId":"9349","endDate":1421762640,"endStationId":"174","endStationName":"Strand, Strand","startDate":1421762280,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40678879","duration":480,"bikeId":"1704","endDate":1421762880,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421762400,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40678811","duration":1080,"bikeId":"10928","endDate":1421763180,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421762100,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40678998","duration":600,"bikeId":"8638","endDate":1421763420,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1421762820,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40679003","duration":780,"bikeId":"11492","endDate":1421763660,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1421762880,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"40679222","duration":240,"bikeId":"10761","endDate":1421763960,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1421763720,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40679262","duration":360,"bikeId":"8742","endDate":1421764260,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1421763900,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"40679285","duration":540,"bikeId":"11883","endDate":1421764560,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1421764020,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40679275","duration":960,"bikeId":"4071","endDate":1421764920,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1421763960,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40679353","duration":900,"bikeId":"9506","endDate":1421765220,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1421764320,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"40679403","duration":960,"bikeId":"2128","endDate":1421765520,"endStationId":"640","endStationName":"Silverthorne Road, Battersea","startDate":1421764560,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40679566","duration":540,"bikeId":"3347","endDate":1421765820,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1421765280,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"40679627","duration":540,"bikeId":"6103","endDate":1421766120,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1421765580,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40679677","duration":660,"bikeId":"104","endDate":1421766420,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421765760,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40679597","duration":1260,"bikeId":"1749","endDate":1421766660,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1421765400,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40679668","duration":1200,"bikeId":"11938","endDate":1421766900,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421765700,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"40679990","duration":180,"bikeId":"6492","endDate":1421767260,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1421767080,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40679986","duration":420,"bikeId":"8163","endDate":1421767500,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1421767080,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"40680061","duration":480,"bikeId":"5799","endDate":1421767800,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1421767320,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"40680191","duration":120,"bikeId":"12548","endDate":1421768040,"endStationId":"21","endStationName":"Hampstead Road (Cartmel), Euston","startDate":1421767920,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40679427","duration":3600,"bikeId":"468","endDate":1421768280,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1421764680,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40680085","duration":1140,"bikeId":"12083","endDate":1421768580,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1421767440,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40680365","duration":240,"bikeId":"362","endDate":1421768820,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421768580,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40680199","duration":1200,"bikeId":"9902","endDate":1421769120,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1421767920,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40680487","duration":420,"bikeId":"10469","endDate":1421769360,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1421768940,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"40680661","duration":60,"bikeId":"8507","endDate":1421769600,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1421769540,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"40680482","duration":960,"bikeId":"5122","endDate":1421769840,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1421768880,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40680695","duration":360,"bikeId":"12333","endDate":1421770020,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421769660,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40680630","duration":780,"bikeId":"10643","endDate":1421770200,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1421769420,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40680068","duration":3000,"bikeId":"9150","endDate":1421770320,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1421767320,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"40680756","duration":840,"bikeId":"10297","endDate":1421770620,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1421769780,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"40680843","duration":780,"bikeId":"12242","endDate":1421770800,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421770020,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40680913","duration":720,"bikeId":"1865","endDate":1421770980,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421770260,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40680956","duration":780,"bikeId":"8686","endDate":1421771160,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1421770380,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40681055","duration":720,"bikeId":"3251","endDate":1421771400,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1421770680,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"40681222","duration":300,"bikeId":"10478","endDate":1421771580,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1421771280,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40681053","duration":1200,"bikeId":"1738","endDate":1421771880,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1421770680,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40681238","duration":780,"bikeId":"7073","endDate":1421772060,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421771280,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40681488","duration":300,"bikeId":"5938","endDate":1421772240,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1421771940,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40681024","duration":1740,"bikeId":"1720","endDate":1421772360,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1421770620,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40681495","duration":540,"bikeId":"12693","endDate":1421772480,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1421771940,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40681552","duration":540,"bikeId":"865","endDate":1421772660,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1421772120,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"40681542","duration":720,"bikeId":"8523","endDate":1421772780,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1421772060,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40681859","duration":60,"bikeId":"4118","endDate":1421772960,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421772900,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40681788","duration":420,"bikeId":"4770","endDate":1421773140,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1421772720,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40681596","duration":1140,"bikeId":"3465","endDate":1421773320,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1421772180,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40681787","duration":780,"bikeId":"536","endDate":1421773500,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1421772720,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40681610","duration":1380,"bikeId":"3257","endDate":1421773620,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1421772240,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40682137","duration":360,"bikeId":"12548","endDate":1421773740,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1421773380,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"40681895","duration":900,"bikeId":"7944","endDate":1421773860,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421772960,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40680978","duration":3540,"bikeId":"612","endDate":1421773980,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1421770440,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40681822","duration":1260,"bikeId":"6426","endDate":1421774100,"endStationId":"549","endStationName":"Gaywood Street, Elephant & Castle","startDate":1421772840,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40682145","duration":780,"bikeId":"8743","endDate":1421774220,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421773440,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40682444","duration":540,"bikeId":"3762","endDate":1421774340,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421773800,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"40682816","duration":0,"bikeId":"344","endDate":1421774400,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1421774400,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"40682399","duration":780,"bikeId":"8682","endDate":1421774520,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1421773740,"startStationId":"518","startStationName":"Antill Road, Mile End"}, +{"_id":"40682342","duration":960,"bikeId":"6219","endDate":1421774640,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421773680,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40682808","duration":360,"bikeId":"11514","endDate":1421774700,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421774340,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40682621","duration":780,"bikeId":"4052","endDate":1421774820,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421774040,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40682952","duration":300,"bikeId":"3308","endDate":1421774880,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421774580,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40682819","duration":660,"bikeId":"4254","endDate":1421775000,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421774340,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40683304","duration":0,"bikeId":"5722","endDate":1421775120,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1421775120,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"40683203","duration":300,"bikeId":"2828","endDate":1421775240,"endStationId":"402","endStationName":"Penfold Street, Marylebone","startDate":1421774940,"startStationId":"363","startStationName":"Lord's, St. John's Wood"}, +{"_id":"40682987","duration":720,"bikeId":"8300","endDate":1421775360,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421774640,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40683454","duration":180,"bikeId":"10581","endDate":1421775480,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421775300,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40683556","duration":240,"bikeId":"940","endDate":1421775600,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1421775360,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40683270","duration":600,"bikeId":"2425","endDate":1421775660,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421775060,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40683137","duration":840,"bikeId":"2453","endDate":1421775720,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1421774880,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40683479","duration":540,"bikeId":"11182","endDate":1421775840,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421775300,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"40683420","duration":660,"bikeId":"11801","endDate":1421775900,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421775240,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40683259","duration":900,"bikeId":"9645","endDate":1421775960,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1421775060,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40683789","duration":420,"bikeId":"583","endDate":1421776020,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421775600,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"40682694","duration":1860,"bikeId":"12532","endDate":1421776080,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421774220,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40683644","duration":720,"bikeId":"6692","endDate":1421776200,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1421775480,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40683273","duration":1200,"bikeId":"2636","endDate":1421776260,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1421775060,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40684099","duration":420,"bikeId":"3130","endDate":1421776320,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1421775900,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40683532","duration":1020,"bikeId":"1602","endDate":1421776380,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1421775360,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40684351","duration":300,"bikeId":"11148","endDate":1421776500,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421776200,"startStationId":"548","startStationName":"Westminster Bridge Road, Elephant & Castle"}, +{"_id":"40683983","duration":720,"bikeId":"8051","endDate":1421776560,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421775840,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40684122","duration":660,"bikeId":"5411","endDate":1421776620,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1421775960,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40684506","duration":300,"bikeId":"8202","endDate":1421776680,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1421776380,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40684637","duration":180,"bikeId":"12258","endDate":1421776740,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1421776560,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40684685","duration":180,"bikeId":"1351","endDate":1421776800,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1421776620,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40684705","duration":300,"bikeId":"2533","endDate":1421776920,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1421776620,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40684435","duration":720,"bikeId":"11134","endDate":1421776980,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421776260,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40684711","duration":420,"bikeId":"6890","endDate":1421777040,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1421776620,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40684571","duration":720,"bikeId":"10076","endDate":1421777160,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421776440,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40684689","duration":600,"bikeId":"11702","endDate":1421777220,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1421776620,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40684733","duration":660,"bikeId":"2799","endDate":1421777340,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421776680,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40684722","duration":720,"bikeId":"11450","endDate":1421777400,"endStationId":"766","endStationName":"Ram Street, Wandsworth","startDate":1421776680,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"40685136","duration":300,"bikeId":"4705","endDate":1421777460,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421777160,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40684803","duration":840,"bikeId":"8609","endDate":1421777580,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1421776740,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40684959","duration":660,"bikeId":"8830","endDate":1421777640,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1421776980,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40685401","duration":240,"bikeId":"10346","endDate":1421777700,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1421777460,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40684181","duration":1740,"bikeId":"12328","endDate":1421777760,"endStationId":"704","endStationName":"Mexfield Road, East Putney","startDate":1421776020,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"40685454","duration":360,"bikeId":"4498","endDate":1421777880,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1421777520,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"40685202","duration":720,"bikeId":"2270","endDate":1421777940,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1421777220,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40685095","duration":840,"bikeId":"2120","endDate":1421778000,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421777160,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40685493","duration":480,"bikeId":"7959","endDate":1421778060,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1421777580,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"40685580","duration":480,"bikeId":"11289","endDate":1421778180,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1421777700,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40685588","duration":540,"bikeId":"10346","endDate":1421778240,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421777700,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40685138","duration":1140,"bikeId":"12847","endDate":1421778300,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1421777160,"startStationId":"729","startStationName":"St. Peter's Terrace, Fulham"}, +{"_id":"40685350","duration":1020,"bikeId":"8617","endDate":1421778420,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1421777400,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40685385","duration":1080,"bikeId":"4947","endDate":1421778480,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1421777400,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40685329","duration":1260,"bikeId":"10642","endDate":1421778600,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421777340,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40685663","duration":900,"bikeId":"12092","endDate":1421778660,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1421777760,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40686284","duration":240,"bikeId":"5026","endDate":1421778780,"endStationId":"761","endStationName":"Humbolt Road, Fulham","startDate":1421778540,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40686237","duration":360,"bikeId":"9076","endDate":1421778840,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1421778480,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"40686219","duration":480,"bikeId":"4318","endDate":1421778900,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1421778420,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40686135","duration":600,"bikeId":"8715","endDate":1421778960,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1421778360,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40685853","duration":1080,"bikeId":"663","endDate":1421779080,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1421778000,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40686190","duration":720,"bikeId":"10982","endDate":1421779140,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1421778420,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40686326","duration":660,"bikeId":"13068","endDate":1421779260,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1421778600,"startStationId":"525","startStationName":"Churchill Place, Canary Wharf"}, +{"_id":"40685984","duration":1200,"bikeId":"11819","endDate":1421779320,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421778120,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40686262","duration":900,"bikeId":"12675","endDate":1421779380,"endStationId":"761","endStationName":"Humbolt Road, Fulham","startDate":1421778480,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40686351","duration":900,"bikeId":"10732","endDate":1421779500,"endStationId":"283","endStationName":"Kingsway, Covent Garden","startDate":1421778600,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"40686598","duration":660,"bikeId":"7109","endDate":1421779560,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1421778900,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40686709","duration":600,"bikeId":"9095","endDate":1421779680,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1421779080,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40686756","duration":600,"bikeId":"2779","endDate":1421779740,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1421779140,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"40686951","duration":480,"bikeId":"212","endDate":1421779860,"endStationId":"257","endStationName":"Westminster University, Marylebone","startDate":1421779380,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"40685099","duration":2760,"bikeId":"12633","endDate":1421779920,"endStationId":"473","endStationName":"Millharbour, Millwall","startDate":1421777160,"startStationId":"475","startStationName":"Lightermans Road, Millwall"}, +{"_id":"40686908","duration":660,"bikeId":"6643","endDate":1421780040,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1421779380,"startStationId":"598","startStationName":"Southerton Road, Hammersmith"}, +{"_id":"40686704","duration":1020,"bikeId":"11441","endDate":1421780100,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421779080,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40687325","duration":240,"bikeId":"11387","endDate":1421780220,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1421779980,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40687064","duration":720,"bikeId":"725","endDate":1421780280,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1421779560,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40687338","duration":420,"bikeId":"10970","endDate":1421780400,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421779980,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"40687044","duration":960,"bikeId":"5887","endDate":1421780520,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421779560,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"40687227","duration":780,"bikeId":"1518","endDate":1421780580,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1421779800,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40687677","duration":120,"bikeId":"12420","endDate":1421780700,"endStationId":"466","endStationName":"Whiston Road, Haggerston","startDate":1421780580,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40687573","duration":420,"bikeId":"12410","endDate":1421780820,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1421780400,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40687813","duration":120,"bikeId":"2438","endDate":1421780940,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1421780820,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40687558","duration":720,"bikeId":"10618","endDate":1421781060,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1421780340,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40687529","duration":840,"bikeId":"7721","endDate":1421781180,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1421780340,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40687847","duration":480,"bikeId":"5653","endDate":1421781360,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1421780880,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40687793","duration":660,"bikeId":"7215","endDate":1421781480,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1421780820,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40687665","duration":960,"bikeId":"8805","endDate":1421781540,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1421780580,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40687949","duration":540,"bikeId":"24","endDate":1421781660,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1421781120,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40687865","duration":900,"bikeId":"8577","endDate":1421781840,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1421780940,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40687937","duration":840,"bikeId":"1695","endDate":1421781900,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421781060,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40687842","duration":1200,"bikeId":"1153","endDate":1421782080,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1421780880,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40688138","duration":720,"bikeId":"12067","endDate":1421782200,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1421781480,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40688010","duration":1140,"bikeId":"8958","endDate":1421782380,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421781240,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40688044","duration":1200,"bikeId":"4326","endDate":1421782500,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1421781300,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40687703","duration":1980,"bikeId":"8189","endDate":1421782620,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1421780640,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"40688314","duration":960,"bikeId":"4629","endDate":1421782860,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421781900,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40688398","duration":900,"bikeId":"9692","endDate":1421782980,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1421782080,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40688607","duration":540,"bikeId":"415","endDate":1421783160,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1421782620,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"40688571","duration":720,"bikeId":"394","endDate":1421783280,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1421782560,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40688676","duration":600,"bikeId":"9240","endDate":1421783400,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1421782800,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40688339","duration":1620,"bikeId":"11971","endDate":1421783580,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1421781960,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40688483","duration":1440,"bikeId":"11344","endDate":1421783760,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1421782320,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40688723","duration":1020,"bikeId":"2630","endDate":1421783940,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1421782920,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40688877","duration":720,"bikeId":"11477","endDate":1421784120,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1421783400,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40689132","duration":120,"bikeId":"1051","endDate":1421784300,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1421784180,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40689054","duration":600,"bikeId":"4670","endDate":1421784540,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1421783940,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40689171","duration":420,"bikeId":"3496","endDate":1421784720,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1421784300,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40689143","duration":780,"bikeId":"8072","endDate":1421784960,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1421784180,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40689371","duration":120,"bikeId":"7585","endDate":1421785200,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1421785080,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"40689207","duration":1020,"bikeId":"8419","endDate":1421785440,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1421784420,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40689494","duration":180,"bikeId":"5589","endDate":1421785740,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421785560,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40689091","duration":1980,"bikeId":"3375","endDate":1421786040,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1421784060,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40689579","duration":360,"bikeId":"5836","endDate":1421786340,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1421785980,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"40689283","duration":2040,"bikeId":"8095","endDate":1421786640,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1421784600,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"40689683","duration":480,"bikeId":"9154","endDate":1421787000,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421786520,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40689674","duration":840,"bikeId":"5881","endDate":1421787360,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421786520,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40689770","duration":720,"bikeId":"7644","endDate":1421787720,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1421787000,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40689933","duration":180,"bikeId":"7284","endDate":1421788080,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1421787900,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40689928","duration":540,"bikeId":"744","endDate":1421788440,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1421787900,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40690065","duration":180,"bikeId":"13063","endDate":1421788800,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1421788620,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40690014","duration":960,"bikeId":"6211","endDate":1421789220,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1421788260,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40690155","duration":540,"bikeId":"5589","endDate":1421789520,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1421788980,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40690120","duration":1140,"bikeId":"9382","endDate":1421789940,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1421788800,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"40690287","duration":420,"bikeId":"12163","endDate":1421790240,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1421789820,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"40690357","duration":420,"bikeId":"10166","endDate":1421790660,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1421790240,"startStationId":"59","startStationName":"Rodney Street, Angel"}, +{"_id":"40690356","duration":840,"bikeId":"6214","endDate":1421791080,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1421790240,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40690349","duration":1320,"bikeId":"3049","endDate":1421791500,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1421790180,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"40690309","duration":1920,"bikeId":"8713","endDate":1421791860,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421789940,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40690592","duration":660,"bikeId":"3069","endDate":1421792280,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1421791620,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40690701","duration":300,"bikeId":"7872","endDate":1421792820,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1421792520,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40690449","duration":2640,"bikeId":"10683","endDate":1421793360,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1421790720,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40690753","duration":960,"bikeId":"12242","endDate":1421793840,"endStationId":"93","endStationName":"Cloudesley Road, Angel","startDate":1421792880,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40690891","duration":360,"bikeId":"11988","endDate":1421794320,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1421793960,"startStationId":"363","startStationName":"Lord's, St. John's Wood"}, +{"_id":"40690972","duration":120,"bikeId":"12634","endDate":1421794860,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1421794740,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40690974","duration":720,"bikeId":"6771","endDate":1421795520,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421794800,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40691063","duration":540,"bikeId":"8218","endDate":1421796180,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1421795640,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"40691134","duration":480,"bikeId":"1789","endDate":1421796960,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1421796480,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40691207","duration":420,"bikeId":"6833","endDate":1421797920,"endStationId":"103","endStationName":"Vicarage Gate, Kensington","startDate":1421797500,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40691252","duration":480,"bikeId":"2872","endDate":1421799000,"endStationId":"750","endStationName":"Culvert Road, Battersea","startDate":1421798520,"startStationId":"612","startStationName":"Wandsworth Rd, Isley Court, Wandsworth Road"}, +{"_id":"40691322","duration":600,"bikeId":"1617","endDate":1421800260,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1421799660,"startStationId":"591","startStationName":"Westfield Library Corner, Shepherd's Bush"}, +{"_id":"40691394","duration":1020,"bikeId":"12121","endDate":1421802360,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421801340,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40691465","duration":720,"bikeId":"6816","endDate":1421805540,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1421804820,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40691519","duration":1380,"bikeId":"7314","endDate":1421808840,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1421807460,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40691601","duration":540,"bikeId":"10538","endDate":1421815860,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421815320,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40691657","duration":1080,"bikeId":"5050","endDate":1421819760,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1421818680,"startStationId":"59","startStationName":"Rodney Street, Angel"}, +{"_id":"40691705","duration":1080,"bikeId":"1209","endDate":1421821020,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1421819940,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40691777","duration":1020,"bikeId":"7604","endDate":1421821800,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1421820780,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40691801","duration":1260,"bikeId":"1212","endDate":1421822340,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421821080,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40691904","duration":840,"bikeId":"10448","endDate":1421822820,"endStationId":"171","endStationName":"Collingham Gardens, Earl's Court","startDate":1421821980,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"40692083","duration":300,"bikeId":"1987","endDate":1421823240,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1421822940,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40692044","duration":660,"bikeId":"5841","endDate":1421823480,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1421822820,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40692107","duration":720,"bikeId":"1285","endDate":1421823780,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421823060,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40692124","duration":960,"bikeId":"11072","endDate":1421824080,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421823120,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40692377","duration":240,"bikeId":"8977","endDate":1421824320,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421824080,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40692398","duration":480,"bikeId":"2242","endDate":1421824620,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1421824140,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40692464","duration":540,"bikeId":"427","endDate":1421824860,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421824320,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40692493","duration":600,"bikeId":"1087","endDate":1421825040,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1421824440,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40692605","duration":480,"bikeId":"4050","endDate":1421825280,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421824800,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40692713","duration":360,"bikeId":"3029","endDate":1421825400,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1421825040,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40692708","duration":600,"bikeId":"12238","endDate":1421825580,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1421824980,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40692603","duration":1020,"bikeId":"2227","endDate":1421825760,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1421824740,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40692997","duration":300,"bikeId":"9619","endDate":1421826000,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421825700,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40693099","duration":240,"bikeId":"382","endDate":1421826120,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1421825880,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40693212","duration":300,"bikeId":"12914","endDate":1421826300,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1421826000,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"40693071","duration":600,"bikeId":"3900","endDate":1421826420,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1421825820,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40692714","duration":1500,"bikeId":"3807","endDate":1421826540,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1421825040,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40692872","duration":1260,"bikeId":"827","endDate":1421826660,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1421825400,"startStationId":"375","startStationName":"Kensington Town Hall, Kensington"}, +{"_id":"40693213","duration":780,"bikeId":"6764","endDate":1421826780,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1421826000,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40693103","duration":1020,"bikeId":"6185","endDate":1421826900,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1421825880,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40693439","duration":540,"bikeId":"13018","endDate":1421826960,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421826420,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40692920","duration":1500,"bikeId":"5425","endDate":1421827020,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1421825520,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40693488","duration":660,"bikeId":"12549","endDate":1421827140,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421826480,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40693548","duration":660,"bikeId":"11150","endDate":1421827260,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421826600,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40693295","duration":1140,"bikeId":"9818","endDate":1421827320,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1421826180,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40693798","duration":480,"bikeId":"7684","endDate":1421827440,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1421826960,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40694000","duration":300,"bikeId":"3069","endDate":1421827560,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1421827260,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40693811","duration":660,"bikeId":"9876","endDate":1421827680,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421827020,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40694115","duration":420,"bikeId":"3130","endDate":1421827800,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421827380,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"40694247","duration":300,"bikeId":"10708","endDate":1421827860,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1421827560,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40693589","duration":1380,"bikeId":"11828","endDate":1421827980,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1421826600,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40693922","duration":900,"bikeId":"7984","endDate":1421828040,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1421827140,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40694594","duration":240,"bikeId":"5432","endDate":1421828160,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1421827920,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40693851","duration":1200,"bikeId":"1824","endDate":1421828220,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1421827020,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40694470","duration":540,"bikeId":"11441","endDate":1421828340,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1421827800,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40694773","duration":240,"bikeId":"12794","endDate":1421828400,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1421828160,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40694238","duration":960,"bikeId":"6896","endDate":1421828520,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1421827560,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40694694","duration":540,"bikeId":"1592","endDate":1421828580,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421828040,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40694891","duration":360,"bikeId":"2767","endDate":1421828640,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421828280,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40694667","duration":660,"bikeId":"12426","endDate":1421828700,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1421828040,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40694639","duration":780,"bikeId":"761","endDate":1421828760,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1421827980,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40694725","duration":720,"bikeId":"2516","endDate":1421828820,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1421828100,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40694783","duration":780,"bikeId":"13075","endDate":1421828940,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1421828160,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"40694930","duration":720,"bikeId":"4975","endDate":1421829000,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421828280,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40694933","duration":780,"bikeId":"10870","endDate":1421829060,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1421828280,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40695119","duration":660,"bikeId":"8039","endDate":1421829120,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421828460,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40695043","duration":780,"bikeId":"10854","endDate":1421829180,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421828400,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40695497","duration":420,"bikeId":"12077","endDate":1421829240,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1421828820,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40695722","duration":300,"bikeId":"445","endDate":1421829300,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1421829000,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"40695937","duration":240,"bikeId":"181","endDate":1421829420,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421829180,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40695940","duration":300,"bikeId":"5329","endDate":1421829480,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1421829180,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"40696008","duration":300,"bikeId":"2847","endDate":1421829540,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1421829240,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40698528","duration":660,"bikeId":"12379","endDate":1421829600,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1421828940,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40696182","duration":240,"bikeId":"13059","endDate":1421829660,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421829420,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40695596","duration":780,"bikeId":"4491","endDate":1421829720,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421828940,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40696080","duration":480,"bikeId":"257","endDate":1421829780,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1421829300,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40696300","duration":360,"bikeId":"2767","endDate":1421829840,"endStationId":"283","endStationName":"Kingsway, Covent Garden","startDate":1421829480,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40695828","duration":780,"bikeId":"9022","endDate":1421829900,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1421829120,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40695869","duration":780,"bikeId":"5188","endDate":1421829960,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1421829180,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40695654","duration":1020,"bikeId":"8623","endDate":1421830020,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1421829000,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40696532","duration":420,"bikeId":"593","endDate":1421830080,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1421829660,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40696713","duration":300,"bikeId":"7669","endDate":1421830140,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1421829840,"startStationId":"165","startStationName":"Orsett Terrace, Bayswater"}, +{"_id":"40696118","duration":840,"bikeId":"6091","endDate":1421830200,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1421829360,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40697073","duration":120,"bikeId":"8805","endDate":1421830260,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1421830140,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"40696267","duration":780,"bikeId":"1302","endDate":1421830260,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1421829480,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"40696269","duration":840,"bikeId":"99","endDate":1421830320,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1421829480,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40697013","duration":300,"bikeId":"7694","endDate":1421830380,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1421830080,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40697125","duration":240,"bikeId":"6781","endDate":1421830440,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1421830200,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40696510","duration":840,"bikeId":"4912","endDate":1421830500,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1421829660,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40697139","duration":360,"bikeId":"9680","endDate":1421830560,"endStationId":"713","endStationName":"Hawley Crescent, Camden Town","startDate":1421830200,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40696869","duration":660,"bikeId":"8571","endDate":1421830620,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421829960,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40696259","duration":1140,"bikeId":"7675","endDate":1421830620,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1421829480,"startStationId":"516","startStationName":"Chrisp Street Market, Poplar"}, +{"_id":"40697137","duration":480,"bikeId":"2609","endDate":1421830680,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1421830200,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40696820","duration":840,"bikeId":"6705","endDate":1421830740,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421829900,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"40696956","duration":780,"bikeId":"1219","endDate":1421830800,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1421830020,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40696420","duration":1260,"bikeId":"2685","endDate":1421830860,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1421829600,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40697117","duration":660,"bikeId":"13066","endDate":1421830860,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421830200,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40697556","duration":360,"bikeId":"994","endDate":1421830920,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1421830560,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40697397","duration":600,"bikeId":"2436","endDate":1421830980,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421830380,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"40695586","duration":2100,"bikeId":"2294","endDate":1421831040,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1421828940,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40697266","duration":780,"bikeId":"9793","endDate":1421831100,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421830320,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40696701","duration":1320,"bikeId":"9628","endDate":1421831160,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1421829840,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40696905","duration":1260,"bikeId":"1495","endDate":1421831220,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421829960,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"40697401","duration":900,"bikeId":"595","endDate":1421831280,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1421830380,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40697879","duration":540,"bikeId":"3369","endDate":1421831400,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1421830860,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40698183","duration":300,"bikeId":"12396","endDate":1421831460,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1421831160,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40697859","duration":660,"bikeId":"12850","endDate":1421831520,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1421830860,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40697446","duration":1140,"bikeId":"9560","endDate":1421831580,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421830440,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"40698077","duration":540,"bikeId":"4938","endDate":1421831640,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1421831100,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40698308","duration":420,"bikeId":"2927","endDate":1421831760,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1421831340,"startStationId":"146","startStationName":"Vauxhall Bridge , Pimlico"}, +{"_id":"40698409","duration":360,"bikeId":"955","endDate":1421831820,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1421831460,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"40698647","duration":120,"bikeId":"5587","endDate":1421831880,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1421831760,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40698178","duration":840,"bikeId":"7409","endDate":1421832000,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421831160,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40698140","duration":900,"bikeId":"6662","endDate":1421832060,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421831160,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"40698381","duration":720,"bikeId":"5724","endDate":1421832180,"endStationId":"236","endStationName":"Fashion Street, Whitechapel","startDate":1421831460,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"40698808","duration":240,"bikeId":"10759","endDate":1421832240,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1421832000,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40698559","duration":660,"bikeId":"8709","endDate":1421832300,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1421831640,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40698530","duration":780,"bikeId":"9895","endDate":1421832420,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1421831640,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40698303","duration":1140,"bikeId":"12679","endDate":1421832480,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1421831340,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40698560","duration":900,"bikeId":"3754","endDate":1421832540,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1421831640,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40698682","duration":840,"bikeId":"204","endDate":1421832660,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421831820,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"40698621","duration":1080,"bikeId":"11155","endDate":1421832780,"endStationId":"475","endStationName":"Lightermans Road, Millwall","startDate":1421831700,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40698730","duration":960,"bikeId":"5913","endDate":1421832840,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1421831880,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40698864","duration":900,"bikeId":"10383","endDate":1421832960,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1421832060,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"40698157","duration":1860,"bikeId":"12635","endDate":1421833020,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1421831160,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"40698687","duration":1320,"bikeId":"1144","endDate":1421833140,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1421831820,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40699349","duration":420,"bikeId":"9325","endDate":1421833320,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1421832900,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40699304","duration":600,"bikeId":"2134","endDate":1421833440,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421832840,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40698928","duration":1380,"bikeId":"9304","endDate":1421833560,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421832180,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40699548","duration":360,"bikeId":"9083","endDate":1421833680,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1421833320,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40699010","duration":1560,"bikeId":"3256","endDate":1421833860,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1421832300,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"40699550","duration":660,"bikeId":"12979","endDate":1421833980,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1421833320,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40699499","duration":900,"bikeId":"12442","endDate":1421834100,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1421833200,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40699665","duration":600,"bikeId":"7480","endDate":1421834220,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421833620,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"40699808","duration":360,"bikeId":"3320","endDate":1421834400,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1421834040,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40699758","duration":720,"bikeId":"2212","endDate":1421834580,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1421833860,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40699923","duration":360,"bikeId":"1122","endDate":1421834820,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421834460,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40699899","duration":600,"bikeId":"12764","endDate":1421835000,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421834400,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40699950","duration":720,"bikeId":"12890","endDate":1421835300,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1421834580,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40700066","duration":540,"bikeId":"3057","endDate":1421835600,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1421835060,"startStationId":"461","startStationName":"Aston Street, Stepney"}, +{"_id":"40699413","duration":2820,"bikeId":"8813","endDate":1421835840,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421833020,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40700291","duration":120,"bikeId":"7568","endDate":1421836140,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1421836020,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"40700340","duration":240,"bikeId":"2820","endDate":1421836440,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1421836200,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40700444","duration":180,"bikeId":"2622","endDate":1421836740,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1421836560,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40700220","duration":1320,"bikeId":"6421","endDate":1421837040,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421835720,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40700485","duration":600,"bikeId":"12558","endDate":1421837280,"endStationId":"592","endStationName":"Bishop's Bridge Road East, Bayswater","startDate":1421836680,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40700584","duration":480,"bikeId":"1788","endDate":1421837580,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1421837100,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40700725","duration":180,"bikeId":"4370","endDate":1421837880,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421837700,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40700514","duration":1260,"bikeId":"7462","endDate":1421838120,"endStationId":"761","endStationName":"Humbolt Road, Fulham","startDate":1421836860,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40700595","duration":1260,"bikeId":"5715","endDate":1421838420,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421837160,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40700667","duration":1320,"bikeId":"2767","endDate":1421838780,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1421837460,"startStationId":"283","startStationName":"Kingsway, Covent Garden"}, +{"_id":"40700861","duration":840,"bikeId":"4258","endDate":1421839140,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1421838300,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"40700716","duration":1800,"bikeId":"8907","endDate":1421839440,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1421837640,"startStationId":"337","startStationName":"Pembridge Villas, Notting Hill"}, +{"_id":"40701050","duration":480,"bikeId":"6706","endDate":1421839800,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1421839320,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40701075","duration":720,"bikeId":"1032","endDate":1421840160,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1421839440,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40701096","duration":1020,"bikeId":"7395","endDate":1421840580,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1421839560,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40701054","duration":1560,"bikeId":"4529","endDate":1421840880,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1421839320,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40701331","duration":360,"bikeId":"10627","endDate":1421841180,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421840820,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40701439","duration":300,"bikeId":"11017","endDate":1421841540,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1421841240,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"40701380","duration":900,"bikeId":"12665","endDate":1421841840,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1421840940,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40701384","duration":1140,"bikeId":"3235","endDate":1421842140,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1421841000,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40701631","duration":360,"bikeId":"9835","endDate":1421842500,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1421842140,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40701701","duration":360,"bikeId":"11817","endDate":1421842800,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1421842440,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40701762","duration":480,"bikeId":"2767","endDate":1421843100,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1421842620,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40701869","duration":240,"bikeId":"1330","endDate":1421843340,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1421843100,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40701126","duration":3840,"bikeId":"7272","endDate":1421843580,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1421839740,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40701847","duration":840,"bikeId":"3792","endDate":1421843880,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1421843040,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40701995","duration":480,"bikeId":"3217","endDate":1421844180,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1421843700,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40701820","duration":1560,"bikeId":"4426","endDate":1421844480,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1421842920,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"40702132","duration":420,"bikeId":"1374","endDate":1421844720,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1421844300,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40702105","duration":720,"bikeId":"7431","endDate":1421844960,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1421844240,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40702310","duration":240,"bikeId":"3613","endDate":1421845260,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421845020,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40702278","duration":600,"bikeId":"10730","endDate":1421845560,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421844960,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"40702449","duration":240,"bikeId":"5406","endDate":1421845860,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421845620,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"40702284","duration":1260,"bikeId":"6033","endDate":1421846220,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1421844960,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40702522","duration":540,"bikeId":"1101","endDate":1421846460,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421845920,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40702343","duration":1440,"bikeId":"8880","endDate":1421846640,"endStationId":"692","endStationName":"Cadogan Close, Victoria Park","startDate":1421845200,"startStationId":"692","startStationName":"Cadogan Close, Victoria Park"}, +{"_id":"40702420","duration":1380,"bikeId":"10745","endDate":1421846880,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421845500,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40702435","duration":1560,"bikeId":"1495","endDate":1421847180,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1421845620,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40702877","duration":180,"bikeId":"4787","endDate":1421847540,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1421847360,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40702903","duration":360,"bikeId":"4881","endDate":1421847780,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421847420,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40702969","duration":360,"bikeId":"5787","endDate":1421848080,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1421847720,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40702862","duration":1020,"bikeId":"12147","endDate":1421848320,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1421847300,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40703118","duration":240,"bikeId":"5173","endDate":1421848620,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1421848380,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40703039","duration":840,"bikeId":"3275","endDate":1421848860,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1421848020,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40703236","duration":360,"bikeId":"12146","endDate":1421849160,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1421848800,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40703112","duration":1080,"bikeId":"11051","endDate":1421849400,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1421848320,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40703304","duration":660,"bikeId":"10109","endDate":1421849820,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1421849160,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40702985","duration":2340,"bikeId":"8783","endDate":1421850120,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1421847780,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40702776","duration":3600,"bikeId":"8178","endDate":1421850480,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1421846880,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40703528","duration":480,"bikeId":"373","endDate":1421850780,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421850300,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40703676","duration":180,"bikeId":"4085","endDate":1421851200,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1421851020,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40703574","duration":960,"bikeId":"3113","endDate":1421851500,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1421850540,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40703789","duration":300,"bikeId":"7126","endDate":1421851860,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1421851560,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40703864","duration":300,"bikeId":"6416","endDate":1421852220,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1421851920,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40703811","duration":840,"bikeId":"9496","endDate":1421852520,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1421851680,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40703951","duration":540,"bikeId":"5645","endDate":1421852820,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1421852280,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40704023","duration":480,"bikeId":"641","endDate":1421853120,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1421852640,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40704125","duration":420,"bikeId":"10598","endDate":1421853540,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1421853120,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40704249","duration":120,"bikeId":"6941","endDate":1421853840,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1421853720,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"40704306","duration":180,"bikeId":"5955","endDate":1421854200,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421854020,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40704286","duration":600,"bikeId":"12909","endDate":1421854500,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1421853900,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"40704390","duration":420,"bikeId":"11473","endDate":1421854800,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1421854380,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40704406","duration":660,"bikeId":"8199","endDate":1421855100,"endStationId":"617","endStationName":"Elysium Place, Fulham","startDate":1421854440,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40704434","duration":840,"bikeId":"12983","endDate":1421855400,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421854560,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"40704612","duration":360,"bikeId":"4484","endDate":1421855700,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1421855340,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"40704376","duration":1680,"bikeId":"11551","endDate":1421856000,"endStationId":"550","endStationName":"Harford Street, Mile End","startDate":1421854320,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40704680","duration":600,"bikeId":"2021","endDate":1421856240,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421855640,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40704829","duration":360,"bikeId":"5281","endDate":1421856540,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421856180,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40704583","duration":1560,"bikeId":"2389","endDate":1421856780,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421855220,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40705006","duration":240,"bikeId":"13033","endDate":1421857020,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1421856780,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40705115","duration":180,"bikeId":"6650","endDate":1421857260,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1421857080,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40704521","duration":2520,"bikeId":"11477","endDate":1421857440,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1421854920,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40705142","duration":480,"bikeId":"12157","endDate":1421857620,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1421857140,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40705326","duration":180,"bikeId":"11263","endDate":1421857860,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1421857680,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40704902","duration":1620,"bikeId":"11950","endDate":1421858040,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421856420,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"40705013","duration":1500,"bikeId":"7871","endDate":1421858280,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421856780,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40705296","duration":840,"bikeId":"9902","endDate":1421858460,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1421857620,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40705405","duration":720,"bikeId":"1377","endDate":1421858640,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1421857920,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40705393","duration":960,"bikeId":"4560","endDate":1421858820,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1421857860,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40705517","duration":780,"bikeId":"1221","endDate":1421859000,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1421858220,"startStationId":"566","startStationName":"Westfield Ariel Way, White City"}, +{"_id":"40705709","duration":480,"bikeId":"8803","endDate":1421859180,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1421858700,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40705759","duration":600,"bikeId":"7339","endDate":1421859420,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1421858820,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40705806","duration":540,"bikeId":"540","endDate":1421859540,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1421859000,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40705580","duration":1380,"bikeId":"6174","endDate":1421859780,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1421858400,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40705998","duration":420,"bikeId":"10254","endDate":1421859900,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421859480,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40705833","duration":1020,"bikeId":"7081","endDate":1421860080,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1421859060,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"40706155","duration":420,"bikeId":"11698","endDate":1421860200,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1421859780,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40706087","duration":720,"bikeId":"2439","endDate":1421860320,"endStationId":"640","endStationName":"Silverthorne Road, Battersea","startDate":1421859600,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40706183","duration":660,"bikeId":"12854","endDate":1421860440,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1421859780,"startStationId":"565","startStationName":"Selby Street, Whitechapel"}, +{"_id":"40706570","duration":180,"bikeId":"8383","endDate":1421860560,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421860380,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40706078","duration":1080,"bikeId":"12463","endDate":1421860680,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1421859600,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40706352","duration":720,"bikeId":"4457","endDate":1421860800,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421860080,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"40705401","duration":3000,"bikeId":"10437","endDate":1421860920,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1421857920,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"40706289","duration":1080,"bikeId":"354","endDate":1421861040,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1421859960,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40706215","duration":1260,"bikeId":"532","endDate":1421861100,"endStationId":"713","endStationName":"Hawley Crescent, Camden Town","startDate":1421859840,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40706763","duration":540,"bikeId":"8731","endDate":1421861220,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1421860680,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40707087","duration":120,"bikeId":"3738","endDate":1421861340,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1421861220,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40706758","duration":780,"bikeId":"3129","endDate":1421861460,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421860680,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40706851","duration":720,"bikeId":"7481","endDate":1421861520,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421860800,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40706733","duration":960,"bikeId":"12042","endDate":1421861580,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1421860620,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40706443","duration":1560,"bikeId":"9307","endDate":1421861700,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1421860140,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"40707214","duration":420,"bikeId":"10132","endDate":1421861820,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1421861400,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"40706892","duration":1080,"bikeId":"10289","endDate":1421861940,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421860860,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40706643","duration":1500,"bikeId":"1943","endDate":1421862000,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1421860500,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"40706863","duration":1260,"bikeId":"11133","endDate":1421862120,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1421860860,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40707513","duration":420,"bikeId":"628","endDate":1421862180,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421861760,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40707728","duration":300,"bikeId":"12974","endDate":1421862300,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421862000,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40706993","duration":1320,"bikeId":"5000","endDate":1421862360,"endStationId":"712","endStationName":"Mile End Stadium, Mile End","startDate":1421861040,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40707536","duration":660,"bikeId":"1632","endDate":1421862480,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421861820,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40707986","duration":240,"bikeId":"11385","endDate":1421862540,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421862300,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"40707260","duration":1200,"bikeId":"11952","endDate":1421862660,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1421861460,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40708135","duration":300,"bikeId":"8815","endDate":1421862720,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1421862420,"startStationId":"616","startStationName":"Aintree Street, Fulham"}, +{"_id":"40707918","duration":540,"bikeId":"11502","endDate":1421862780,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1421862240,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40707709","duration":900,"bikeId":"7706","endDate":1421862900,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1421862000,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40707453","duration":1260,"bikeId":"4003","endDate":1421862960,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1421861700,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40708330","duration":300,"bikeId":"6262","endDate":1421863020,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1421862720,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40707505","duration":1320,"bikeId":"12978","endDate":1421863080,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1421861760,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40708157","duration":720,"bikeId":"8670","endDate":1421863200,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1421862480,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40708179","duration":780,"bikeId":"2546","endDate":1421863260,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1421862480,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40707785","duration":1320,"bikeId":"9557","endDate":1421863380,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421862060,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40708269","duration":840,"bikeId":"12913","endDate":1421863440,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1421862600,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40708595","duration":420,"bikeId":"3072","endDate":1421863500,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1421863080,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40708548","duration":600,"bikeId":"11427","endDate":1421863620,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1421863020,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40708162","duration":1200,"bikeId":"4033","endDate":1421863680,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1421862480,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40708120","duration":1320,"bikeId":"9231","endDate":1421863740,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1421862420,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40709043","duration":240,"bikeId":"9250","endDate":1421863860,"endStationId":"371","endStationName":"King Edward Walk, Waterloo","startDate":1421863620,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40708418","duration":1140,"bikeId":"5824","endDate":1421863920,"endStationId":"770","endStationName":"Gwendwr Road, West Kensington","startDate":1421862780,"startStationId":"757","startStationName":"Harcourt Terrace, West Brompton"}, +{"_id":"40709151","duration":300,"bikeId":"639","endDate":1421864040,"endStationId":"280","endStationName":"Royal Avenue 2, Chelsea","startDate":1421863740,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40709197","duration":300,"bikeId":"9496","endDate":1421864100,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1421863800,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40709231","duration":360,"bikeId":"7430","endDate":1421864220,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1421863860,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40708625","duration":1200,"bikeId":"10557","endDate":1421864280,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1421863080,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40708789","duration":1080,"bikeId":"465","endDate":1421864400,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1421863320,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40709349","duration":480,"bikeId":"2156","endDate":1421864460,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1421863980,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40709563","duration":300,"bikeId":"12283","endDate":1421864520,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1421864220,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40709524","duration":480,"bikeId":"11180","endDate":1421864640,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421864160,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40709505","duration":540,"bikeId":"2511","endDate":1421864700,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1421864160,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40708781","duration":1440,"bikeId":"9664","endDate":1421864760,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1421863320,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40709147","duration":1080,"bikeId":"10806","endDate":1421864820,"endStationId":"668","endStationName":"Ravenscourt Park Station, Hammersmith","startDate":1421863740,"startStationId":"656","startStationName":"Broomhouse Lane, Parsons Green"}, +{"_id":"40710011","duration":120,"bikeId":"195","endDate":1421864940,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1421864820,"startStationId":"696","startStationName":"Charing Cross Hospital, Hammersmith"}, +{"_id":"40710018","duration":180,"bikeId":"9146","endDate":1421865000,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421864820,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40709618","duration":840,"bikeId":"1644","endDate":1421865060,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1421864220,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40709440","duration":1140,"bikeId":"7528","endDate":1421865180,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421864040,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40709701","duration":900,"bikeId":"9669","endDate":1421865240,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421864340,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40709406","duration":1380,"bikeId":"12497","endDate":1421865360,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1421863980,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40709872","duration":780,"bikeId":"3481","endDate":1421865420,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1421864640,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40709569","duration":1320,"bikeId":"4580","endDate":1421865540,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1421864220,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40710229","duration":540,"bikeId":"5743","endDate":1421865660,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1421865120,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40707999","duration":3420,"bikeId":"8986","endDate":1421865720,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1421862300,"startStationId":"525","startStationName":"Churchill Place, Canary Wharf"}, +{"_id":"40710223","duration":720,"bikeId":"9322","endDate":1421865780,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421865060,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"40710487","duration":420,"bikeId":"3780","endDate":1421865900,"endStationId":"659","endStationName":"Grant Road West, Clapham Junction","startDate":1421865480,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"40709793","duration":1440,"bikeId":"9646","endDate":1421865960,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1421864520,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40710434","duration":660,"bikeId":"9585","endDate":1421866080,"endStationId":"454","endStationName":"Napier Avenue, Millwall","startDate":1421865420,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40710469","duration":720,"bikeId":"3471","endDate":1421866140,"endStationId":"623","endStationName":"Nantes Close, Wandsworth","startDate":1421865420,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"40710927","duration":180,"bikeId":"4704","endDate":1421866260,"endStationId":"472","endStationName":"Malmesbury Road, Bow","startDate":1421866080,"startStationId":"497","startStationName":"Coborn Street, Mile End"}, +{"_id":"40709639","duration":2040,"bikeId":"3394","endDate":1421866320,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1421864280,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40710870","duration":420,"bikeId":"12193","endDate":1421866440,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1421866020,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40710627","duration":780,"bikeId":"3605","endDate":1421866500,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1421865720,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40710605","duration":960,"bikeId":"6505","endDate":1421866620,"endStationId":"103","endStationName":"Vicarage Gate, Kensington","startDate":1421865660,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"40710865","duration":720,"bikeId":"12620","endDate":1421866740,"endStationId":"726","endStationName":"Alfreda Street, Battersea Park","startDate":1421866020,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"40710898","duration":720,"bikeId":"4098","endDate":1421866800,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1421866080,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"40711179","duration":420,"bikeId":"6984","endDate":1421866920,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1421866500,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40710925","duration":960,"bikeId":"3685","endDate":1421867040,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1421866080,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40711015","duration":900,"bikeId":"333","endDate":1421867160,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1421866260,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40710807","duration":1320,"bikeId":"10414","endDate":1421867280,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421865960,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"40711245","duration":780,"bikeId":"2727","endDate":1421867400,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1421866620,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40710911","duration":1440,"bikeId":"8986","endDate":1421867520,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421866080,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40711634","duration":240,"bikeId":"1189","endDate":1421867640,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1421867400,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40711377","duration":900,"bikeId":"9845","endDate":1421867760,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1421866860,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40711694","duration":360,"bikeId":"5681","endDate":1421867880,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1421867520,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40711434","duration":1080,"bikeId":"12926","endDate":1421868060,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1421866980,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40711675","duration":660,"bikeId":"1748","endDate":1421868180,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1421867520,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"40711786","duration":600,"bikeId":"12815","endDate":1421868300,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1421867700,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40711770","duration":780,"bikeId":"3209","endDate":1421868480,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1421867700,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40711946","duration":480,"bikeId":"3395","endDate":1421868600,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1421868120,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40712037","duration":420,"bikeId":"6013","endDate":1421868780,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421868360,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40712089","duration":480,"bikeId":"2307","endDate":1421868960,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421868480,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40711871","duration":1140,"bikeId":"3792","endDate":1421869080,"endStationId":"7","endStationName":"Charlbert Street, St. John's Wood","startDate":1421867940,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40712245","duration":420,"bikeId":"2132","endDate":1421869260,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421868840,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40712281","duration":480,"bikeId":"9280","endDate":1421869380,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1421868900,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40712360","duration":420,"bikeId":"12140","endDate":1421869560,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1421869140,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"40712088","duration":1260,"bikeId":"2926","endDate":1421869740,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1421868480,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40712449","duration":540,"bikeId":"10652","endDate":1421869920,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1421869380,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40712512","duration":600,"bikeId":"9681","endDate":1421870160,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1421869560,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"40712278","duration":1440,"bikeId":"10547","endDate":1421870340,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421868900,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"40712684","duration":480,"bikeId":"5202","endDate":1421870580,"endStationId":"612","endStationName":"Wandsworth Rd, Isley Court, Wandsworth Road","startDate":1421870100,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"40712517","duration":1140,"bikeId":"11936","endDate":1421870760,"endStationId":"683","endStationName":"Dorothy Road, Clapham Junction","startDate":1421869620,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40712877","duration":240,"bikeId":"7001","endDate":1421870940,"endStationId":"740","endStationName":"Sirdar Road, Avondale","startDate":1421870700,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"40712886","duration":420,"bikeId":"8934","endDate":1421871180,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421870760,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40712579","duration":1620,"bikeId":"12475","endDate":1421871420,"endStationId":"447","endStationName":"Jubilee Crescent, Cubitt Town","startDate":1421869800,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40712885","duration":900,"bikeId":"3057","endDate":1421871660,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1421870760,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"40712587","duration":2040,"bikeId":"10693","endDate":1421871900,"endStationId":"606","endStationName":"Addison Road, Holland Park","startDate":1421869860,"startStationId":"606","startStationName":"Addison Road, Holland Park"}, +{"_id":"40713204","duration":240,"bikeId":"7882","endDate":1421872080,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421871840,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40712960","duration":1320,"bikeId":"2937","endDate":1421872320,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1421871000,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"40713128","duration":1080,"bikeId":"1101","endDate":1421872620,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1421871540,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40713335","duration":480,"bikeId":"1610","endDate":1421872860,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1421872380,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40713354","duration":660,"bikeId":"3769","endDate":1421873100,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421872440,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"40713183","duration":1620,"bikeId":"10334","endDate":1421873340,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1421871720,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40713568","duration":360,"bikeId":"5050","endDate":1421873640,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1421873280,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40713638","duration":360,"bikeId":"4437","endDate":1421873940,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1421873580,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40713603","duration":780,"bikeId":"8442","endDate":1421874180,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421873400,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40713658","duration":840,"bikeId":"9610","endDate":1421874480,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1421873640,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40713827","duration":300,"bikeId":"11108","endDate":1421874840,"endStationId":"352","endStationName":"Vauxhall Street, Vauxhall","startDate":1421874540,"startStationId":"441","startStationName":"Sail Street, Vauxhall"}, +{"_id":"40713796","duration":840,"bikeId":"1065","endDate":1421875200,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1421874360,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"40713893","duration":600,"bikeId":"5587","endDate":1421875440,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1421874840,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40714017","duration":420,"bikeId":"800","endDate":1421875800,"endStationId":"410","endStationName":"Edgware Road Station, Paddington","startDate":1421875380,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40714059","duration":480,"bikeId":"541","endDate":1421876100,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1421875620,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"40713960","duration":1380,"bikeId":"12473","endDate":1421876520,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1421875140,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40714153","duration":660,"bikeId":"11363","endDate":1421876880,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1421876220,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40714222","duration":660,"bikeId":"3817","endDate":1421877180,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1421876520,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40714282","duration":600,"bikeId":"4907","endDate":1421877480,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1421876880,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40714444","duration":120,"bikeId":"925","endDate":1421877900,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1421877780,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40714393","duration":840,"bikeId":"11458","endDate":1421878320,"endStationId":"165","endStationName":"Orsett Terrace, Bayswater","startDate":1421877480,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"40714509","duration":600,"bikeId":"6739","endDate":1421878740,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1421878140,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40714477","duration":1260,"bikeId":"11857","endDate":1421879160,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1421877900,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40714701","duration":300,"bikeId":"5532","endDate":1421879520,"endStationId":"648","endStationName":"Peterborough Road, Sands End","startDate":1421879220,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40714679","duration":840,"bikeId":"10929","endDate":1421879940,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1421879100,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40711362","duration":13560,"bikeId":"2367","endDate":1421880420,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421866860,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40714859","duration":480,"bikeId":"2782","endDate":1421881020,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421880540,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40714939","duration":180,"bikeId":"822","endDate":1421881500,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1421881320,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40714967","duration":600,"bikeId":"12163","endDate":1421882220,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1421881620,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40715074","duration":360,"bikeId":"3746","endDate":1421882820,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1421882460,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"40715106","duration":600,"bikeId":"7021","endDate":1421883360,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1421882760,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40715207","duration":420,"bikeId":"3725","endDate":1421884020,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1421883600,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40715190","duration":1320,"bikeId":"5740","endDate":1421884800,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1421883480,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40715304","duration":1200,"bikeId":"6660","endDate":1421885940,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1421884740,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40715363","duration":1200,"bikeId":"1201","endDate":1421887440,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1421886240,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40715437","duration":1080,"bikeId":"7348","endDate":1421889300,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1421888220,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40715406","duration":3960,"bikeId":"2305","endDate":1421891460,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1421887500,"startStationId":"694","startStationName":"Putney Rail Station, Putney"}, +{"_id":"40715575","duration":840,"bikeId":"5631","endDate":1421894940,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1421894100,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40715661","duration":480,"bikeId":"12909","endDate":1421902140,"endStationId":"441","endStationName":"Sail Street, Vauxhall","startDate":1421901660,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40715722","duration":840,"bikeId":"8022","endDate":1421906100,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1421905260,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40715835","duration":180,"bikeId":"2711","endDate":1421907360,"endStationId":"375","endStationName":"Kensington Town Hall, Kensington","startDate":1421907180,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40715872","duration":420,"bikeId":"5903","endDate":1421908080,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1421907660,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40715859","duration":1140,"bikeId":"6847","endDate":1421908620,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421907480,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40715875","duration":1500,"bikeId":"8682","endDate":1421909160,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421907660,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"40716105","duration":420,"bikeId":"890","endDate":1421909520,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1421909100,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40716084","duration":840,"bikeId":"7526","endDate":1421909820,"endStationId":"694","endStationName":"Putney Rail Station, Putney","startDate":1421908980,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"40716145","duration":840,"bikeId":"3796","endDate":1421910120,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1421909280,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40716334","duration":360,"bikeId":"8835","endDate":1421910420,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1421910060,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"40716067","duration":1740,"bikeId":"6017","endDate":1421910660,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1421908920,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40716412","duration":600,"bikeId":"1008","endDate":1421911020,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421910420,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40716513","duration":540,"bikeId":"3133","endDate":1421911260,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1421910720,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40716496","duration":780,"bikeId":"12971","endDate":1421911440,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421910660,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40716341","duration":1500,"bikeId":"4885","endDate":1421911620,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1421910120,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40716590","duration":900,"bikeId":"273","endDate":1421911800,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1421910900,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40716553","duration":1140,"bikeId":"495","endDate":1421911980,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1421910840,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40716591","duration":1260,"bikeId":"12982","endDate":1421912160,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1421910900,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40716941","duration":540,"bikeId":"3723","endDate":1421912340,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421911800,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"40716813","duration":900,"bikeId":"12777","endDate":1421912460,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1421911560,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40716631","duration":1620,"bikeId":"3726","endDate":1421912640,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1421911020,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40717349","duration":180,"bikeId":"2461","endDate":1421912760,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421912580,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40717024","duration":900,"bikeId":"3779","endDate":1421912880,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421911980,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40717329","duration":480,"bikeId":"13011","endDate":1421913000,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1421912520,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40717116","duration":900,"bikeId":"12916","endDate":1421913120,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1421912220,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40717522","duration":360,"bikeId":"8715","endDate":1421913180,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1421912820,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"40717086","duration":1200,"bikeId":"11560","endDate":1421913300,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1421912100,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40717459","duration":720,"bikeId":"3824","endDate":1421913420,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1421912700,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40717394","duration":900,"bikeId":"6968","endDate":1421913540,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1421912640,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40717426","duration":900,"bikeId":"11992","endDate":1421913600,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1421912700,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40718018","duration":120,"bikeId":"668","endDate":1421913720,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1421913600,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40717793","duration":540,"bikeId":"1905","endDate":1421913840,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1421913300,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40717577","duration":1020,"bikeId":"3646","endDate":1421913960,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421912940,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40717735","duration":840,"bikeId":"12590","endDate":1421914020,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1421913180,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40717907","duration":720,"bikeId":"3721","endDate":1421914140,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1421913420,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40718040","duration":600,"bikeId":"350","endDate":1421914200,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1421913600,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40718111","duration":660,"bikeId":"5862","endDate":1421914320,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1421913660,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40718142","duration":660,"bikeId":"9511","endDate":1421914380,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1421913720,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"40718438","duration":360,"bikeId":"10549","endDate":1421914440,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1421914080,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40718688","duration":240,"bikeId":"12055","endDate":1421914560,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421914320,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40718265","duration":840,"bikeId":"4082","endDate":1421914680,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421913840,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40717544","duration":1860,"bikeId":"11348","endDate":1421914740,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1421912880,"startStationId":"668","startStationName":"Ravenscourt Park Station, Hammersmith"}, +{"_id":"40718867","duration":300,"bikeId":"12920","endDate":1421914800,"endStationId":"565","endStationName":"Selby Street, Whitechapel","startDate":1421914500,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40712131","duration":46380,"bikeId":"7597","endDate":1421914920,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1421868540,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"40718786","duration":480,"bikeId":"5745","endDate":1421914920,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421914440,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40718875","duration":540,"bikeId":"1982","endDate":1421915040,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1421914500,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40718738","duration":660,"bikeId":"1254","endDate":1421915040,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421914380,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40718885","duration":600,"bikeId":"4679","endDate":1421915160,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1421914560,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40718986","duration":600,"bikeId":"10511","endDate":1421915220,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421914620,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40718532","duration":1080,"bikeId":"8407","endDate":1421915280,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1421914200,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40719048","duration":660,"bikeId":"11402","endDate":1421915340,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421914680,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40719643","duration":240,"bikeId":"9328","endDate":1421915460,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1421915220,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40718395","duration":1440,"bikeId":"3985","endDate":1421915460,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1421914020,"startStationId":"750","startStationName":"Culvert Road, Battersea"}, +{"_id":"40719359","duration":540,"bikeId":"4287","endDate":1421915520,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1421914980,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40719562","duration":480,"bikeId":"1797","endDate":1421915640,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421915160,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40719495","duration":600,"bikeId":"12817","endDate":1421915700,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1421915100,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40719105","duration":1020,"bikeId":"12503","endDate":1421915760,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1421914740,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40719390","duration":840,"bikeId":"870","endDate":1421915820,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1421914980,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40718435","duration":1860,"bikeId":"2099","endDate":1421915940,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1421914080,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"40719120","duration":1260,"bikeId":"2120","endDate":1421916000,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421914740,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"40719808","duration":600,"bikeId":"5804","endDate":1421916000,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1421915400,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40719460","duration":1020,"bikeId":"5066","endDate":1421916060,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1421915040,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40720062","duration":540,"bikeId":"8169","endDate":1421916120,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1421915580,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40720455","duration":300,"bikeId":"7163","endDate":1421916180,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1421915880,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"40719865","duration":900,"bikeId":"7830","endDate":1421916300,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421915400,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40721286","duration":600,"bikeId":"5731","endDate":1421916360,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1421915760,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"40720767","duration":300,"bikeId":"10199","endDate":1421916420,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1421916120,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40720189","duration":720,"bikeId":"6123","endDate":1421916420,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1421915700,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"40720862","duration":300,"bikeId":"6170","endDate":1421916480,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421916180,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40720241","duration":840,"bikeId":"9631","endDate":1421916540,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1421915700,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40720114","duration":1020,"bikeId":"4306","endDate":1421916600,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1421915580,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40720312","duration":900,"bikeId":"3134","endDate":1421916660,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1421915760,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"40721005","duration":420,"bikeId":"4359","endDate":1421916720,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1421916300,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40720116","duration":1140,"bikeId":"8452","endDate":1421916720,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1421915580,"startStationId":"616","startStationName":"Aintree Street, Fulham"}, +{"_id":"40721249","duration":300,"bikeId":"5306","endDate":1421916780,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1421916480,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40720609","duration":840,"bikeId":"3511","endDate":1421916840,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1421916000,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40720895","duration":660,"bikeId":"9779","endDate":1421916900,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1421916240,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40720057","duration":1380,"bikeId":"8023","endDate":1421916960,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1421915580,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"40721055","duration":600,"bikeId":"2595","endDate":1421916960,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421916360,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40720661","duration":960,"bikeId":"9668","endDate":1421917020,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421916060,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40720380","duration":1260,"bikeId":"1997","endDate":1421917080,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1421915820,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40720617","duration":1080,"bikeId":"8814","endDate":1421917080,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421916000,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40721742","duration":240,"bikeId":"9078","endDate":1421917140,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1421916900,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40721202","duration":780,"bikeId":"5537","endDate":1421917200,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421916420,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40720074","duration":1680,"bikeId":"7736","endDate":1421917260,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1421915580,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40721472","duration":600,"bikeId":"10740","endDate":1421917260,"endStationId":"556","endStationName":"Heron Quays DLR, Canary Wharf","startDate":1421916660,"startStationId":"547","startStationName":"East India DLR, Blackwall"}, +{"_id":"40720519","duration":1380,"bikeId":"2214","endDate":1421917320,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1421915940,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40721078","duration":1020,"bikeId":"4687","endDate":1421917380,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1421916360,"startStationId":"627","startStationName":"Holden Street, Battersea"}, +{"_id":"40721950","duration":360,"bikeId":"3960","endDate":1421917440,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421917080,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40721963","duration":360,"bikeId":"12028","endDate":1421917500,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1421917140,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40722096","duration":360,"bikeId":"1131","endDate":1421917620,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1421917260,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40721496","duration":1020,"bikeId":"9731","endDate":1421917680,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1421916660,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40722204","duration":360,"bikeId":"7163","endDate":1421917740,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1421917380,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40721753","duration":900,"bikeId":"12507","endDate":1421917800,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1421916900,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"40721686","duration":1020,"bikeId":"11825","endDate":1421917860,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1421916840,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40722031","duration":720,"bikeId":"10767","endDate":1421917920,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1421917200,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40721506","duration":1260,"bikeId":"768","endDate":1421917980,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421916720,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40722275","duration":660,"bikeId":"12261","endDate":1421918100,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421917440,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40722648","duration":180,"bikeId":"1266","endDate":1421918160,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421917980,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40722325","duration":720,"bikeId":"2752","endDate":1421918220,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1421917500,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40722813","duration":180,"bikeId":"12129","endDate":1421918340,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1421918160,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"40722396","duration":780,"bikeId":"1488","endDate":1421918400,"endStationId":"174","endStationName":"Strand, Strand","startDate":1421917620,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40722262","duration":1020,"bikeId":"12698","endDate":1421918460,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1421917440,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40722587","duration":720,"bikeId":"1131","endDate":1421918580,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1421917860,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40722740","duration":540,"bikeId":"7256","endDate":1421918640,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1421918100,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40722692","duration":720,"bikeId":"1739","endDate":1421918760,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1421918040,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40722889","duration":480,"bikeId":"4163","endDate":1421918820,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1421918340,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40722362","duration":1380,"bikeId":"5329","endDate":1421918940,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421917560,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"40722472","duration":1320,"bikeId":"7171","endDate":1421919060,"endStationId":"366","endStationName":"Millennium Hotel, Mayfair","startDate":1421917740,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40723048","duration":540,"bikeId":"7644","endDate":1421919120,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1421918580,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40723246","duration":360,"bikeId":"9411","endDate":1421919240,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1421918880,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"40723034","duration":840,"bikeId":"2576","endDate":1421919360,"endStationId":"654","endStationName":"Ashmole Estate, Oval","startDate":1421918520,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"40723020","duration":1020,"bikeId":"11320","endDate":1421919540,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1421918520,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40723192","duration":840,"bikeId":"8138","endDate":1421919660,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1421918820,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40723455","duration":420,"bikeId":"9616","endDate":1421919780,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421919360,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40723574","duration":300,"bikeId":"5361","endDate":1421919900,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421919600,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40722846","duration":1800,"bikeId":"9314","endDate":1421920020,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421918220,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40723626","duration":480,"bikeId":"4248","endDate":1421920200,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1421919720,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40723724","duration":360,"bikeId":"5331","endDate":1421920260,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1421919900,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40723673","duration":660,"bikeId":"10281","endDate":1421920440,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1421919780,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"40723841","duration":420,"bikeId":"4747","endDate":1421920560,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421920140,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40723921","duration":420,"bikeId":"4999","endDate":1421920740,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1421920320,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40723569","duration":1260,"bikeId":"10636","endDate":1421920860,"endStationId":"548","endStationName":"Westminster Bridge Road, Elephant & Castle","startDate":1421919600,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40724060","duration":300,"bikeId":"11150","endDate":1421921040,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1421920740,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"40724130","duration":240,"bikeId":"3285","endDate":1421921220,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1421920980,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"40723871","duration":1260,"bikeId":"8248","endDate":1421921460,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1421920200,"startStationId":"577","startStationName":"Globe Town Market, Bethnal Green"}, +{"_id":"40724127","duration":720,"bikeId":"6388","endDate":1421921700,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1421920980,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40723517","duration":2460,"bikeId":"9360","endDate":1421921940,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1421919480,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"40724049","duration":1440,"bikeId":"12911","endDate":1421922180,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421920740,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40724386","duration":420,"bikeId":"3427","endDate":1421922420,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1421922000,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"40724489","duration":240,"bikeId":"7733","endDate":1421922780,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1421922540,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40724404","duration":1020,"bikeId":"1090","endDate":1421923140,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1421922120,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"40724624","duration":420,"bikeId":"11842","endDate":1421923500,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1421923080,"startStationId":"757","startStationName":"Harcourt Terrace, West Brompton"}, +{"_id":"40724451","duration":1380,"bikeId":"6518","endDate":1421923740,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1421922360,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"40724578","duration":1080,"bikeId":"8451","endDate":1421923980,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1421922900,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40724796","duration":420,"bikeId":"6823","endDate":1421924280,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1421923860,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40724856","duration":420,"bikeId":"4967","endDate":1421924520,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1421924100,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"40724795","duration":1020,"bikeId":"12355","endDate":1421924880,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421923860,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40724978","duration":480,"bikeId":"6878","endDate":1421925240,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421924760,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"40724813","duration":1620,"bikeId":"9456","endDate":1421925540,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1421923920,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"40724958","duration":1260,"bikeId":"421","endDate":1421925960,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1421924700,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40725100","duration":840,"bikeId":"10489","endDate":1421926260,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1421925420,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40725179","duration":720,"bikeId":"1980","endDate":1421926560,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1421925840,"startStationId":"171","startStationName":"Collingham Gardens, Earl's Court"}, +{"_id":"40725132","duration":1440,"bikeId":"12738","endDate":1421926980,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421925540,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40725408","duration":420,"bikeId":"4256","endDate":1421927340,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1421926920,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40725489","duration":300,"bikeId":"5445","endDate":1421927580,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421927280,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40725464","duration":720,"bikeId":"11841","endDate":1421927880,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1421927160,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40725587","duration":480,"bikeId":"3902","endDate":1421928120,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1421927640,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"40725678","duration":420,"bikeId":"497","endDate":1421928480,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1421928060,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40725706","duration":540,"bikeId":"7222","endDate":1421928720,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1421928180,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40725638","duration":1080,"bikeId":"8664","endDate":1421928960,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1421927880,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40725815","duration":720,"bikeId":"10456","endDate":1421929260,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1421928540,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"40725889","duration":660,"bikeId":"6742","endDate":1421929500,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1421928840,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40726014","duration":480,"bikeId":"9773","endDate":1421929800,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1421929320,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"40726090","duration":480,"bikeId":"2165","endDate":1421930040,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421929560,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40725923","duration":1320,"bikeId":"6690","endDate":1421930280,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1421928960,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40726199","duration":660,"bikeId":"8636","endDate":1421930580,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1421929920,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40726096","duration":1260,"bikeId":"7043","endDate":1421930820,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421929560,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40726292","duration":720,"bikeId":"7528","endDate":1421931000,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1421930280,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40726437","duration":420,"bikeId":"9078","endDate":1421931240,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1421930820,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40726485","duration":420,"bikeId":"4332","endDate":1421931480,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1421931060,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40726669","duration":60,"bikeId":"10397","endDate":1421931780,"endStationId":"477","endStationName":"Spindrift Avenue, Millwall","startDate":1421931720,"startStationId":"586","startStationName":"Mudchute DLR, Cubitt Town"}, +{"_id":"40726700","duration":300,"bikeId":"11289","endDate":1421932080,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1421931780,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40726649","duration":600,"bikeId":"9020","endDate":1421932260,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1421931660,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40726731","duration":600,"bikeId":"5043","endDate":1421932500,"endStationId":"497","endStationName":"Coborn Street, Mile End","startDate":1421931900,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40726385","duration":2220,"bikeId":"5750","endDate":1421932800,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1421930580,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40726688","duration":1260,"bikeId":"4463","endDate":1421933040,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421931780,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"40727045","duration":300,"bikeId":"8393","endDate":1421933340,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1421933040,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"40726924","duration":960,"bikeId":"407","endDate":1421933580,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421932620,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"40727215","duration":180,"bikeId":"9378","endDate":1421933880,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1421933700,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"40727155","duration":660,"bikeId":"11469","endDate":1421934120,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421933460,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40727295","duration":360,"bikeId":"3951","endDate":1421934360,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1421934000,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40727360","duration":360,"bikeId":"8153","endDate":1421934600,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1421934240,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40727363","duration":540,"bikeId":"5442","endDate":1421934840,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1421934300,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40727495","duration":480,"bikeId":"10699","endDate":1421935140,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1421934660,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40727597","duration":360,"bikeId":"4435","endDate":1421935380,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421935020,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40729890","duration":360,"bikeId":"9543","endDate":1421935620,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421935260,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40727584","duration":900,"bikeId":"2988","endDate":1421935860,"endStationId":"271","endStationName":"London Zoo, Regents Park","startDate":1421934960,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"40727792","duration":420,"bikeId":"12544","endDate":1421936100,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1421935680,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40727858","duration":420,"bikeId":"9360","endDate":1421936340,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1421935920,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40727847","duration":780,"bikeId":"7961","endDate":1421936640,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1421935860,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40727981","duration":480,"bikeId":"6525","endDate":1421936880,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1421936400,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"40727933","duration":840,"bikeId":"6849","endDate":1421937120,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1421936280,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40727709","duration":2040,"bikeId":"12767","endDate":1421937420,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1421935380,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40728193","duration":480,"bikeId":"11404","endDate":1421937720,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1421937240,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40728243","duration":600,"bikeId":"11888","endDate":1421938020,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1421937420,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40728272","duration":660,"bikeId":"3145","endDate":1421938200,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1421937540,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40728447","duration":300,"bikeId":"2307","endDate":1421938440,"endStationId":"526","endStationName":"Lancaster Drive, Blackwall","startDate":1421938140,"startStationId":"475","startStationName":"Lightermans Road, Millwall"}, +{"_id":"40728366","duration":960,"bikeId":"5400","endDate":1421938800,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1421937840,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40728095","duration":2100,"bikeId":"3459","endDate":1421939040,"endStationId":"7","endStationName":"Charlbert Street, St. John's Wood","startDate":1421936940,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40728559","duration":720,"bikeId":"4466","endDate":1421939340,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1421938620,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"40728448","duration":1500,"bikeId":"11443","endDate":1421939640,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1421938140,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40728546","duration":1320,"bikeId":"5874","endDate":1421939880,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421938560,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40728851","duration":420,"bikeId":"8998","endDate":1421940180,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1421939760,"startStationId":"526","startStationName":"Lancaster Drive, Blackwall"}, +{"_id":"40728942","duration":240,"bikeId":"7734","endDate":1421940420,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1421940180,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40728893","duration":780,"bikeId":"8376","endDate":1421940720,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421939940,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40729006","duration":540,"bikeId":"11971","endDate":1421941020,"endStationId":"728","endStationName":"Putney Bridge Road, East Putney","startDate":1421940480,"startStationId":"637","startStationName":"Spencer Park, Wandsworth Common"}, +{"_id":"40729158","duration":240,"bikeId":"3088","endDate":1421941260,"endStationId":"402","endStationName":"Penfold Street, Marylebone","startDate":1421941020,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"40729140","duration":480,"bikeId":"3705","endDate":1421941500,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421941020,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"40729021","duration":1260,"bikeId":"1193","endDate":1421941800,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1421940540,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40729000","duration":1560,"bikeId":"5166","endDate":1421942040,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421940480,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40729441","duration":180,"bikeId":"54","endDate":1421942220,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1421942040,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40729524","duration":300,"bikeId":"1126","endDate":1421942520,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1421942220,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40729166","duration":1680,"bikeId":"9608","endDate":1421942760,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1421941080,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40729694","duration":300,"bikeId":"3236","endDate":1421943000,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1421942700,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40729522","duration":840,"bikeId":"1952","endDate":1421943120,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1421942280,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40729867","duration":120,"bikeId":"7935","endDate":1421943300,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1421943180,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40729760","duration":600,"bikeId":"2251","endDate":1421943480,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1421942880,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40729764","duration":780,"bikeId":"6673","endDate":1421943660,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1421942880,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40729799","duration":900,"bikeId":"12893","endDate":1421943900,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1421943000,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"40730066","duration":420,"bikeId":"8205","endDate":1421944140,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421943720,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40730016","duration":720,"bikeId":"6381","endDate":1421944320,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1421943600,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40729901","duration":1200,"bikeId":"7150","endDate":1421944440,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1421943240,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"40730179","duration":540,"bikeId":"12562","endDate":1421944620,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1421944080,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40730384","duration":240,"bikeId":"3145","endDate":1421944860,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1421944620,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40730338","duration":480,"bikeId":"4601","endDate":1421944980,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1421944500,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40730051","duration":1500,"bikeId":"1986","endDate":1421945160,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421943660,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40730464","duration":540,"bikeId":"11147","endDate":1421945340,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1421944800,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40730499","duration":540,"bikeId":"9817","endDate":1421945460,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421944920,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40730398","duration":960,"bikeId":"5180","endDate":1421945640,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1421944680,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40730617","duration":660,"bikeId":"3095","endDate":1421945820,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1421945160,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40730705","duration":540,"bikeId":"7984","endDate":1421945940,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1421945400,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40730771","duration":600,"bikeId":"5528","endDate":1421946180,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1421945580,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40730853","duration":540,"bikeId":"6081","endDate":1421946300,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1421945760,"startStationId":"521","startStationName":"Driffield Road, Old Ford"}, +{"_id":"40731005","duration":420,"bikeId":"9652","endDate":1421946480,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1421946060,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40729952","duration":3180,"bikeId":"10236","endDate":1421946600,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1421943420,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40731212","duration":360,"bikeId":"12780","endDate":1421946780,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1421946420,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40731183","duration":480,"bikeId":"10215","endDate":1421946840,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421946360,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40731414","duration":240,"bikeId":"2132","endDate":1421946960,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1421946720,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40730717","duration":1560,"bikeId":"344","endDate":1421947020,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1421945460,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40731311","duration":660,"bikeId":"5528","endDate":1421947200,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421946540,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40731503","duration":480,"bikeId":"5901","endDate":1421947320,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1421946840,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40731465","duration":660,"bikeId":"6464","endDate":1421947440,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1421946780,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40731471","duration":720,"bikeId":"2430","endDate":1421947500,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1421946780,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40731513","duration":780,"bikeId":"1574","endDate":1421947620,"endStationId":"435","endStationName":"Kennington Station, Kennington","startDate":1421946840,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40731684","duration":540,"bikeId":"3766","endDate":1421947740,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421947200,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40731437","duration":1080,"bikeId":"6041","endDate":1421947860,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421946780,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40731841","duration":540,"bikeId":"12503","endDate":1421947980,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1421947440,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40730452","duration":3240,"bikeId":"4457","endDate":1421948040,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1421944800,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40731450","duration":1380,"bikeId":"12875","endDate":1421948160,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1421946780,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40731383","duration":1620,"bikeId":"1771","endDate":1421948280,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1421946660,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40731769","duration":1080,"bikeId":"3256","endDate":1421948400,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1421947320,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"40732169","duration":480,"bikeId":"586","endDate":1421948460,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1421947980,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40732099","duration":720,"bikeId":"5738","endDate":1421948580,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1421947860,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40732446","duration":420,"bikeId":"6048","endDate":1421948700,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1421948280,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40731910","duration":1200,"bikeId":"6108","endDate":1421948760,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1421947560,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40732456","duration":540,"bikeId":"3717","endDate":1421948880,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421948340,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40732787","duration":240,"bikeId":"12271","endDate":1421948940,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1421948700,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40731815","duration":1620,"bikeId":"4788","endDate":1421949000,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1421947380,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40732372","duration":900,"bikeId":"4689","endDate":1421949120,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1421948220,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40732586","duration":720,"bikeId":"11693","endDate":1421949180,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1421948460,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"40732593","duration":780,"bikeId":"11004","endDate":1421949240,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421948460,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40732874","duration":480,"bikeId":"7184","endDate":1421949300,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1421948820,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"40732757","duration":780,"bikeId":"12733","endDate":1421949420,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1421948640,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40732810","duration":780,"bikeId":"10205","endDate":1421949480,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1421948700,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40733223","duration":420,"bikeId":"12687","endDate":1421949600,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1421949180,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40732965","duration":780,"bikeId":"3145","endDate":1421949660,"endStationId":"770","endStationName":"Gwendwr Road, West Kensington","startDate":1421948880,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40732776","duration":1020,"bikeId":"615","endDate":1421949720,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421948700,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40732539","duration":1380,"bikeId":"10133","endDate":1421949780,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1421948400,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40733509","duration":300,"bikeId":"7447","endDate":1421949900,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1421949600,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40733200","duration":780,"bikeId":"12466","endDate":1421949960,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421949180,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40733263","duration":780,"bikeId":"3309","endDate":1421950020,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1421949240,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40733219","duration":960,"bikeId":"12888","endDate":1421950140,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1421949180,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"40733238","duration":960,"bikeId":"11276","endDate":1421950200,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1421949240,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40733673","duration":480,"bikeId":"8602","endDate":1421950260,"endStationId":"370","endStationName":"Paddington Green, Paddington","startDate":1421949780,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40733377","duration":960,"bikeId":"5816","endDate":1421950380,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1421949420,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40733746","duration":600,"bikeId":"7875","endDate":1421950440,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421949840,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40734049","duration":360,"bikeId":"3551","endDate":1421950560,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1421950200,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"40734223","duration":240,"bikeId":"9021","endDate":1421950620,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1421950380,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40733515","duration":1080,"bikeId":"10680","endDate":1421950680,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1421949600,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40733887","duration":720,"bikeId":"7091","endDate":1421950740,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421950020,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"40734047","duration":600,"bikeId":"724","endDate":1421950800,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1421950200,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40733576","duration":1260,"bikeId":"240","endDate":1421950920,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421949660,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40733883","duration":960,"bikeId":"9757","endDate":1421950980,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1421950020,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"40734097","duration":840,"bikeId":"11246","endDate":1421951100,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421950260,"startStationId":"466","startStationName":"Whiston Road, Haggerston"}, +{"_id":"40734300","duration":660,"bikeId":"12108","endDate":1421951160,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1421950500,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40733761","duration":1380,"bikeId":"11439","endDate":1421951280,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1421949900,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40734468","duration":660,"bikeId":"4351","endDate":1421951340,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1421950680,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"40734001","duration":1320,"bikeId":"4190","endDate":1421951460,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1421950140,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40734914","duration":240,"bikeId":"6712","endDate":1421951520,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1421951280,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40734500","duration":900,"bikeId":"9557","endDate":1421951580,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421950680,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40733881","duration":1680,"bikeId":"10007","endDate":1421951700,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1421950020,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40735014","duration":300,"bikeId":"5590","endDate":1421951760,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1421951460,"startStationId":"759","startStationName":"Broadley Terrace, Marylebone"}, +{"_id":"40734753","duration":840,"bikeId":"8759","endDate":1421951880,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421951040,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40735119","duration":420,"bikeId":"5122","endDate":1421952000,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421951580,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"40733966","duration":1980,"bikeId":"6995","endDate":1421952060,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1421950080,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40734519","duration":1440,"bikeId":"13069","endDate":1421952180,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1421950740,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40735214","duration":540,"bikeId":"11787","endDate":1421952300,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1421951760,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40734466","duration":1740,"bikeId":"9997","endDate":1421952420,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1421950680,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40735310","duration":540,"bikeId":"7716","endDate":1421952480,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421951940,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40735562","duration":300,"bikeId":"10654","endDate":1421952600,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1421952300,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40735411","duration":600,"bikeId":"4214","endDate":1421952660,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1421952060,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40735347","duration":780,"bikeId":"6748","endDate":1421952780,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1421952000,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40735125","duration":1260,"bikeId":"3835","endDate":1421952840,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1421951580,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40735599","duration":600,"bikeId":"2738","endDate":1421952960,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1421952360,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40735151","duration":1440,"bikeId":"2652","endDate":1421953080,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1421951640,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"40735684","duration":720,"bikeId":"6404","endDate":1421953200,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1421952480,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40727047","duration":20280,"bikeId":"7427","endDate":1421953320,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1421933040,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40735500","duration":1260,"bikeId":"12718","endDate":1421953440,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1421952180,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40736151","duration":180,"bikeId":"1562","endDate":1421953560,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1421953380,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40736071","duration":420,"bikeId":"4947","endDate":1421953620,"endStationId":"654","endStationName":"Ashmole Estate, Oval","startDate":1421953200,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"40736086","duration":480,"bikeId":"3807","endDate":1421953740,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1421953260,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40736252","duration":360,"bikeId":"11698","endDate":1421953920,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1421953560,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40736188","duration":600,"bikeId":"8249","endDate":1421954040,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1421953440,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40736129","duration":840,"bikeId":"10489","endDate":1421954160,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1421953320,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40736124","duration":960,"bikeId":"10930","endDate":1421954280,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1421953320,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40736156","duration":1020,"bikeId":"9932","endDate":1421954400,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1421953380,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"40735946","duration":1560,"bikeId":"11992","endDate":1421954520,"endStationId":"474","endStationName":"Castalia Square, Cubitt Town","startDate":1421952960,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40736264","duration":1080,"bikeId":"8870","endDate":1421954700,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1421953620,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"40736250","duration":1260,"bikeId":"12470","endDate":1421954820,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1421953560,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40736516","duration":840,"bikeId":"9678","endDate":1421955000,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1421954160,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40736253","duration":1560,"bikeId":"8936","endDate":1421955120,"endStationId":"134","endStationName":"Wapping High Street, Wapping","startDate":1421953560,"startStationId":"523","startStationName":"Langdon Park, Poplar"}, +{"_id":"40736851","duration":420,"bikeId":"11059","endDate":1421955360,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421954940,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40736499","duration":1320,"bikeId":"5270","endDate":1421955480,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1421954160,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40736846","duration":720,"bikeId":"4786","endDate":1421955660,"endStationId":"588","endStationName":"Hoxton Street, Hoxton","startDate":1421954940,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40737030","duration":420,"bikeId":"7099","endDate":1421955840,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1421955420,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40737117","duration":360,"bikeId":"9372","endDate":1421956020,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1421955660,"startStationId":"774","startStationName":"Hurlingham Park, Parsons Green"}, +{"_id":"40736879","duration":1140,"bikeId":"1594","endDate":1421956200,"endStationId":"477","endStationName":"Spindrift Avenue, Millwall","startDate":1421955060,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40737034","duration":900,"bikeId":"60","endDate":1421956380,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1421955480,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"40737270","duration":420,"bikeId":"9077","endDate":1421956500,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1421956080,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40735395","duration":4620,"bikeId":"11387","endDate":1421956680,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1421952060,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40737216","duration":900,"bikeId":"7480","endDate":1421956860,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1421955960,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40737487","duration":300,"bikeId":"9306","endDate":1421957100,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1421956800,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40737609","duration":180,"bikeId":"10","endDate":1421957400,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1421957220,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40737253","duration":1500,"bikeId":"7592","endDate":1421957580,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1421956080,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40737697","duration":300,"bikeId":"4508","endDate":1421957820,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1421957520,"startStationId":"696","startStationName":"Charing Cross Hospital, Hammersmith"}, +{"_id":"40737689","duration":540,"bikeId":"5315","endDate":1421958060,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1421957520,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40737714","duration":660,"bikeId":"1792","endDate":1421958240,"endStationId":"761","endStationName":"Humbolt Road, Fulham","startDate":1421957580,"startStationId":"686","startStationName":"Beryl Road, Hammersmith"}, +{"_id":"40737761","duration":840,"bikeId":"1999","endDate":1421958540,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1421957700,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40737710","duration":1200,"bikeId":"8840","endDate":1421958720,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421957520,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40737820","duration":1020,"bikeId":"1077","endDate":1421959020,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1421958000,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"40738032","duration":540,"bikeId":"10847","endDate":1421959320,"endStationId":"704","endStationName":"Mexfield Road, East Putney","startDate":1421958780,"startStationId":"734","startStationName":"Plough Terrace, Clapham Junction"}, +{"_id":"40738055","duration":720,"bikeId":"10199","endDate":1421959560,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1421958840,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40738089","duration":840,"bikeId":"1188","endDate":1421959860,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1421959020,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"40738300","duration":120,"bikeId":"9272","endDate":1421960160,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1421960040,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40738297","duration":420,"bikeId":"9872","endDate":1421960400,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1421959980,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40738279","duration":840,"bikeId":"6682","endDate":1421960760,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1421959920,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40738283","duration":1200,"bikeId":"4395","endDate":1421961120,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1421959920,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"40738356","duration":1020,"bikeId":"11999","endDate":1421961420,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1421960400,"startStationId":"629","startStationName":"Morie Street, Wandsworth"}, +{"_id":"40738606","duration":300,"bikeId":"7941","endDate":1421961840,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1421961540,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40738605","duration":660,"bikeId":"1950","endDate":1421962200,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1421961540,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40738524","duration":1440,"bikeId":"9240","endDate":1421962560,"endStationId":"464","endStationName":"St. Mary and St. Michael Church, Stepney","startDate":1421961120,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40738772","duration":300,"bikeId":"6702","endDate":1421962860,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1421962560,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40738807","duration":480,"bikeId":"10880","endDate":1421963220,"endStationId":"547","endStationName":"East India DLR, Blackwall","startDate":1421962740,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40738784","duration":960,"bikeId":"8239","endDate":1421963580,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1421962620,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40738907","duration":600,"bikeId":"8865","endDate":1421964000,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1421963400,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"40738788","duration":1680,"bikeId":"3089","endDate":1421964360,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1421962680,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40738853","duration":1740,"bikeId":"1533","endDate":1421964780,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1421963040,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40739138","duration":600,"bikeId":"172","endDate":1421965320,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421964720,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40739124","duration":1020,"bikeId":"41","endDate":1421965680,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1421964660,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40739171","duration":1320,"bikeId":"8369","endDate":1421966220,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1421964900,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40739331","duration":480,"bikeId":"1524","endDate":1421966760,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1421966280,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40739425","duration":300,"bikeId":"4878","endDate":1421967300,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1421967000,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40739416","duration":960,"bikeId":"2368","endDate":1421967900,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1421966940,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40739493","duration":840,"bikeId":"8702","endDate":1421968500,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1421967660,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40739345","duration":2700,"bikeId":"1388","endDate":1421969100,"endStationId":"743","endStationName":"Oxford Road, Putney","startDate":1421966400,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40739636","duration":840,"bikeId":"10244","endDate":1421969820,"endStationId":"442","endStationName":"Walmer Road, Notting Hill","startDate":1421968980,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"40739754","duration":240,"bikeId":"2040","endDate":1421970600,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1421970360,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"40739713","duration":1380,"bikeId":"10708","endDate":1421971320,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1421969940,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40739820","duration":960,"bikeId":"942","endDate":1421972100,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1421971140,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40739923","duration":540,"bikeId":"3667","endDate":1421973420,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1421972880,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"40739983","duration":540,"bikeId":"4484","endDate":1421974800,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1421974260,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40740009","duration":1800,"bikeId":"6379","endDate":1421976660,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1421974860,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40740105","duration":1560,"bikeId":"10299","endDate":1421979600,"endStationId":"521","endStationName":"Driffield Road, Old Ford","startDate":1421978040,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40740183","duration":900,"bikeId":"3061","endDate":1421984220,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1421983320,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40740246","duration":1560,"bikeId":"216","endDate":1421990580,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1421989020,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"40740346","duration":240,"bikeId":"1211","endDate":1421993220,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1421992980,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40740412","duration":420,"bikeId":"9992","endDate":1421994420,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1421994000,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40740466","duration":660,"bikeId":"7429","endDate":1421995260,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1421994600,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"40740540","duration":600,"bikeId":"5488","endDate":1421995740,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1421995140,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40740589","duration":660,"bikeId":"621","endDate":1421996100,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1421995440,"startStationId":"590","startStationName":"Greenberry Street, St.John's Wood"}, +{"_id":"40740709","duration":420,"bikeId":"4293","endDate":1421996460,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1421996040,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40740821","duration":240,"bikeId":"10893","endDate":1421996820,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1421996580,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"40740761","duration":720,"bikeId":"3152","endDate":1421997060,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1421996340,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40740890","duration":540,"bikeId":"3645","endDate":1421997420,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1421996880,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40740614","duration":2160,"bikeId":"3662","endDate":1421997720,"endStationId":"7","endStationName":"Charlbert Street, St. John's Wood","startDate":1421995560,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"40741141","duration":240,"bikeId":"4630","endDate":1421997960,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1421997720,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"40741221","duration":180,"bikeId":"55","endDate":1421998140,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1421997960,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"40741167","duration":600,"bikeId":"6812","endDate":1421998380,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1421997780,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40740879","duration":1800,"bikeId":"1257","endDate":1421998620,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1421996820,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"40741324","duration":540,"bikeId":"6655","endDate":1421998740,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1421998200,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40741345","duration":720,"bikeId":"3886","endDate":1421998920,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1421998200,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40741415","duration":660,"bikeId":"9552","endDate":1421999040,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1421998380,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40741663","duration":360,"bikeId":"1476","endDate":1421999220,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1421998860,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40741817","duration":240,"bikeId":"1709","endDate":1421999340,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1421999100,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"40741865","duration":240,"bikeId":"2354","endDate":1421999460,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1421999220,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40741838","duration":420,"bikeId":"11252","endDate":1421999580,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1421999160,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40741952","duration":360,"bikeId":"5189","endDate":1421999700,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1421999340,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40741859","duration":600,"bikeId":"6005","endDate":1421999760,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1421999160,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40741737","duration":900,"bikeId":"11538","endDate":1421999880,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1421998980,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40742255","duration":180,"bikeId":"13030","endDate":1422000000,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1421999820,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40741716","duration":1140,"bikeId":"462","endDate":1422000120,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1421998980,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40742131","duration":600,"bikeId":"5924","endDate":1422000240,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1421999640,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"40741992","duration":960,"bikeId":"10378","endDate":1422000360,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1421999400,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40742901","duration":540,"bikeId":"10079","endDate":1422000480,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1421999940,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40742115","duration":960,"bikeId":"4162","endDate":1422000600,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1421999640,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40742163","duration":960,"bikeId":"9251","endDate":1422000660,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1421999700,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40742558","duration":480,"bikeId":"5432","endDate":1422000780,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1422000300,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40742514","duration":600,"bikeId":"8691","endDate":1422000840,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1422000240,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40742728","duration":480,"bikeId":"12345","endDate":1422000960,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422000480,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"40742320","duration":1140,"bikeId":"6135","endDate":1422001080,"endStationId":"205","endStationName":"New Road 2, Whitechapel","startDate":1421999940,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40742661","duration":780,"bikeId":"12569","endDate":1422001200,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422000420,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40742950","duration":420,"bikeId":"7971","endDate":1422001260,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1422000840,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40742820","duration":720,"bikeId":"12513","endDate":1422001380,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422000660,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"40742688","duration":1080,"bikeId":"11743","endDate":1422001500,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1422000420,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40742731","duration":1080,"bikeId":"12452","endDate":1422001560,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422000480,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40743204","duration":540,"bikeId":"10136","endDate":1422001680,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1422001140,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40743542","duration":240,"bikeId":"7230","endDate":1422001740,"endStationId":"728","endStationName":"Putney Bridge Road, East Putney","startDate":1422001500,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"40743137","duration":780,"bikeId":"816","endDate":1422001860,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1422001080,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40743862","duration":120,"bikeId":"7565","endDate":1422001920,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1422001800,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"40743681","duration":300,"bikeId":"11470","endDate":1422001980,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1422001680,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40743379","duration":720,"bikeId":"11444","endDate":1422002040,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1422001320,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40743533","duration":600,"bikeId":"2742","endDate":1422002100,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422001500,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40743829","duration":360,"bikeId":"414","endDate":1422002160,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1422001800,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"40743261","duration":1080,"bikeId":"2513","endDate":1422002280,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1422001200,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40743663","duration":720,"bikeId":"4742","endDate":1422002340,"endStationId":"693","endStationName":"Felsham Road, Putney","startDate":1422001620,"startStationId":"599","startStationName":"Manbre Road, Hammersmith"}, +{"_id":"40744007","duration":480,"bikeId":"11216","endDate":1422002400,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1422001920,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40743886","duration":600,"bikeId":"10837","endDate":1422002460,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422001860,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"40743247","duration":1320,"bikeId":"2860","endDate":1422002520,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1422001200,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40744314","duration":420,"bikeId":"4086","endDate":1422002580,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1422002160,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40742764","duration":2100,"bikeId":"11343","endDate":1422002640,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1422000540,"startStationId":"728","startStationName":"Putney Bridge Road, East Putney"}, +{"_id":"40743801","duration":960,"bikeId":"2825","endDate":1422002700,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1422001740,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40743701","duration":1080,"bikeId":"12215","endDate":1422002760,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1422001680,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40743809","duration":1020,"bikeId":"12357","endDate":1422002820,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1422001800,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40744204","duration":780,"bikeId":"3502","endDate":1422002880,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422002100,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"40744085","duration":960,"bikeId":"9874","endDate":1422002940,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422001980,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40744830","duration":360,"bikeId":"10448","endDate":1422003000,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1422002640,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40744699","duration":540,"bikeId":"12854","endDate":1422003060,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1422002520,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40745025","duration":300,"bikeId":"6504","endDate":1422003120,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1422002820,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40743873","duration":1380,"bikeId":"9004","endDate":1422003180,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1422001800,"startStationId":"543","startStationName":"Lansdowne Walk, Notting Hill"}, +{"_id":"40744326","duration":1020,"bikeId":"436","endDate":1422003240,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1422002220,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40743342","duration":1980,"bikeId":"928","endDate":1422003300,"endStationId":"592","endStationName":"Bishop's Bridge Road East, Bayswater","startDate":1422001320,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40744038","duration":1380,"bikeId":"3140","endDate":1422003360,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1422001980,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40744496","duration":1020,"bikeId":"12440","endDate":1422003360,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422002340,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40744184","duration":1320,"bikeId":"2679","endDate":1422003420,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1422002100,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40745248","duration":480,"bikeId":"3634","endDate":1422003480,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422003000,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40745231","duration":540,"bikeId":"1803","endDate":1422003540,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1422003000,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40744717","duration":1080,"bikeId":"5469","endDate":1422003600,"endStationId":"692","endStationName":"Cadogan Close, Victoria Park","startDate":1422002520,"startStationId":"523","startStationName":"Langdon Park, Poplar"}, +{"_id":"40745192","duration":720,"bikeId":"9146","endDate":1422003660,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1422002940,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40743454","duration":2340,"bikeId":"8901","endDate":1422003720,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1422001380,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"40745682","duration":360,"bikeId":"11167","endDate":1422003780,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1422003420,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40745672","duration":420,"bikeId":"9429","endDate":1422003840,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1422003420,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"40745351","duration":780,"bikeId":"12762","endDate":1422003900,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1422003120,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40745819","duration":360,"bikeId":"8897","endDate":1422003960,"endStationId":"370","endStationName":"Paddington Green, Paddington","startDate":1422003600,"startStationId":"208","startStationName":"Mallory Street, Marylebone"}, +{"_id":"40745626","duration":600,"bikeId":"1051","endDate":1422004020,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1422003420,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40745909","duration":420,"bikeId":"11458","endDate":1422004080,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1422003660,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40745754","duration":720,"bikeId":"8451","endDate":1422004200,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1422003480,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40745608","duration":960,"bikeId":"6141","endDate":1422004320,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1422003360,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40746250","duration":240,"bikeId":"1117","endDate":1422004380,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1422004140,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40746167","duration":420,"bikeId":"9165","endDate":1422004440,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1422004020,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"40745621","duration":1140,"bikeId":"5983","endDate":1422004500,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1422003360,"startStationId":"672","startStationName":"Grant Road Central, Clapham Junction"}, +{"_id":"40746402","duration":300,"bikeId":"8959","endDate":1422004620,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1422004320,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40746251","duration":540,"bikeId":"10177","endDate":1422004680,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1422004140,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40745852","duration":1140,"bikeId":"5111","endDate":1422004740,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1422003600,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40745923","duration":1140,"bikeId":"1121","endDate":1422004860,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1422003720,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40745823","duration":1380,"bikeId":"5577","endDate":1422004980,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1422003600,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40746223","duration":960,"bikeId":"5302","endDate":1422005040,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422004080,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"40746241","duration":1080,"bikeId":"2920","endDate":1422005160,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1422004080,"startStationId":"466","startStationName":"Whiston Road, Haggerston"}, +{"_id":"40746432","duration":840,"bikeId":"10746","endDate":1422005220,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1422004380,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40746688","duration":540,"bikeId":"12998","endDate":1422005340,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422004800,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40746917","duration":180,"bikeId":"10169","endDate":1422005400,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1422005220,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40746818","duration":480,"bikeId":"3099","endDate":1422005520,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1422005040,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40746648","duration":900,"bikeId":"1248","endDate":1422005640,"endStationId":"654","endStationName":"Ashmole Estate, Oval","startDate":1422004740,"startStationId":"624","startStationName":"Courland Grove, Wandsworth Road"}, +{"_id":"40746677","duration":960,"bikeId":"326","endDate":1422005760,"endStationId":"365","endStationName":"City Road, Angel","startDate":1422004800,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40746969","duration":600,"bikeId":"4617","endDate":1422005940,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1422005340,"startStationId":"8","startStationName":"Lodge Road, St. John's Wood"}, +{"_id":"40747056","duration":600,"bikeId":"13069","endDate":1422006060,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422005460,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"40747137","duration":540,"bikeId":"8888","endDate":1422006180,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1422005640,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40747031","duration":1260,"bikeId":"10083","endDate":1422006300,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1422005040,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40747232","duration":720,"bikeId":"10656","endDate":1422006480,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1422005760,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40747311","duration":660,"bikeId":"3276","endDate":1422006600,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1422005940,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40746823","duration":1680,"bikeId":"5099","endDate":1422006720,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1422005040,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40747484","duration":540,"bikeId":"3271","endDate":1422006900,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1422006360,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40747437","duration":780,"bikeId":"6395","endDate":1422007020,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1422006240,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40747319","duration":1200,"bikeId":"3489","endDate":1422007200,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422006000,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"40747601","duration":660,"bikeId":"11408","endDate":1422007380,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1422006720,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40747609","duration":840,"bikeId":"10442","endDate":1422007560,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422006720,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"40747746","duration":660,"bikeId":"12063","endDate":1422007740,"endStationId":"375","endStationName":"Kensington Town Hall, Kensington","startDate":1422007080,"startStationId":"222","startStationName":"Knightsbridge, Hyde Park"}, +{"_id":"40747858","duration":480,"bikeId":"6475","endDate":1422007920,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1422007440,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40747883","duration":660,"bikeId":"5163","endDate":1422008220,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1422007560,"startStationId":"466","startStationName":"Whiston Road, Haggerston"}, +{"_id":"40747941","duration":660,"bikeId":"8159","endDate":1422008460,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1422007800,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40748020","duration":660,"bikeId":"11055","endDate":1422008760,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422008100,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40748153","duration":480,"bikeId":"10979","endDate":1422009000,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422008520,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40748264","duration":300,"bikeId":"407","endDate":1422009240,"endStationId":"692","endStationName":"Cadogan Close, Victoria Park","startDate":1422008940,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40748340","duration":360,"bikeId":"11012","endDate":1422009600,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422009240,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40748480","duration":120,"bikeId":"9630","endDate":1422009840,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1422009720,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40748494","duration":360,"bikeId":"1957","endDate":1422010080,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1422009720,"startStationId":"757","startStationName":"Harcourt Terrace, West Brompton"}, +{"_id":"40748056","duration":2160,"bikeId":"7198","endDate":1422010380,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1422008220,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"40748540","duration":660,"bikeId":"12696","endDate":1422010560,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1422009900,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"40748443","duration":1260,"bikeId":"4731","endDate":1422010860,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1422009600,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40748750","duration":360,"bikeId":"6089","endDate":1422011160,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1422010800,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40748606","duration":1260,"bikeId":"5252","endDate":1422011460,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422010200,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40748738","duration":960,"bikeId":"6177","endDate":1422011760,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1422010800,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"40748661","duration":1620,"bikeId":"5727","endDate":1422012120,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1422010500,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"40748995","duration":480,"bikeId":"2098","endDate":1422012420,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422011940,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"40749084","duration":360,"bikeId":"8929","endDate":1422012720,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1422012360,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40749187","duration":240,"bikeId":"11968","endDate":1422013020,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422012780,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40749177","duration":600,"bikeId":"9591","endDate":1422013380,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1422012780,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40749303","duration":420,"bikeId":"9739","endDate":1422013680,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1422013260,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"40749369","duration":480,"bikeId":"5219","endDate":1422013920,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1422013440,"startStationId":"759","startStationName":"Broadley Terrace, Marylebone"}, +{"_id":"40749349","duration":840,"bikeId":"4256","endDate":1422014220,"endStationId":"611","endStationName":"Princedale Road , Holland Park","startDate":1422013380,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40749543","duration":300,"bikeId":"3370","endDate":1422014460,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1422014160,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40749575","duration":480,"bikeId":"7937","endDate":1422014760,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1422014280,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40749675","duration":360,"bikeId":"1752","endDate":1422015000,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1422014640,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40749491","duration":1260,"bikeId":"1736","endDate":1422015240,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1422013980,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40749734","duration":660,"bikeId":"12774","endDate":1422015480,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1422014820,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"40749636","duration":1140,"bikeId":"12032","endDate":1422015660,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1422014520,"startStationId":"134","startStationName":"Wapping High Street, Wapping"}, +{"_id":"40749826","duration":660,"bikeId":"4252","endDate":1422015840,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1422015180,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40750050","duration":300,"bikeId":"302","endDate":1422016140,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1422015840,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"40750047","duration":540,"bikeId":"5339","endDate":1422016380,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1422015840,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40750176","duration":360,"bikeId":"4214","endDate":1422016620,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1422016260,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40749985","duration":1140,"bikeId":"9943","endDate":1422016800,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422015660,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40750312","duration":360,"bikeId":"8746","endDate":1422017040,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1422016680,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40750454","duration":120,"bikeId":"10073","endDate":1422017280,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1422017160,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40750423","duration":480,"bikeId":"12120","endDate":1422017520,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1422017040,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40750164","duration":1560,"bikeId":"9329","endDate":1422017760,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1422016200,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40750565","duration":480,"bikeId":"12550","endDate":1422017940,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1422017460,"startStationId":"507","startStationName":"Clarkson Street, Bethnal Green"}, +{"_id":"40750043","duration":2220,"bikeId":"10427","endDate":1422018060,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422015840,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"40750663","duration":540,"bikeId":"3758","endDate":1422018300,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422017760,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40750612","duration":840,"bikeId":"10150","endDate":1422018420,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1422017580,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"40750766","duration":600,"bikeId":"4196","endDate":1422018660,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1422018060,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40750366","duration":1980,"bikeId":"11705","endDate":1422018840,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422016860,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40750784","duration":900,"bikeId":"4349","endDate":1422019020,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1422018120,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40750735","duration":1320,"bikeId":"11550","endDate":1422019260,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1422017940,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40750998","duration":660,"bikeId":"10406","endDate":1422019440,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1422018780,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40750965","duration":960,"bikeId":"6766","endDate":1422019620,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1422018660,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"40751179","duration":480,"bikeId":"6904","endDate":1422019860,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1422019380,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40751229","duration":540,"bikeId":"12211","endDate":1422020160,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1422019620,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40751191","duration":960,"bikeId":"12957","endDate":1422020400,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1422019440,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40751395","duration":360,"bikeId":"4840","endDate":1422020580,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1422020220,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"40751561","duration":180,"bikeId":"12765","endDate":1422020880,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1422020700,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40751611","duration":300,"bikeId":"3992","endDate":1422021120,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1422020820,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"40751397","duration":1080,"bikeId":"3748","endDate":1422021300,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1422020220,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40751784","duration":180,"bikeId":"5718","endDate":1422021540,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1422021360,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"40751645","duration":840,"bikeId":"9054","endDate":1422021720,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1422020880,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"40751903","duration":300,"bikeId":"2514","endDate":1422021960,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1422021660,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40751982","duration":240,"bikeId":"5381","endDate":1422022200,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1422021960,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40751776","duration":1080,"bikeId":"5331","endDate":1422022380,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1422021300,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40751935","duration":840,"bikeId":"6077","endDate":1422022620,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1422021780,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40752111","duration":420,"bikeId":"12119","endDate":1422022920,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1422022500,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40752151","duration":540,"bikeId":"12837","endDate":1422023160,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1422022620,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40752165","duration":720,"bikeId":"6057","endDate":1422023400,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1422022680,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40752368","duration":360,"bikeId":"5221","endDate":1422023640,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1422023280,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40752192","duration":1140,"bikeId":"2958","endDate":1422023880,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1422022740,"startStationId":"667","startStationName":"Shepherd's Bush Road North, Shepherd's Bush"}, +{"_id":"40752194","duration":1380,"bikeId":"1898","endDate":1422024120,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1422022740,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40752522","duration":540,"bikeId":"3794","endDate":1422024360,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1422023820,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40752543","duration":660,"bikeId":"9634","endDate":1422024600,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1422023940,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"40752687","duration":480,"bikeId":"9307","endDate":1422024840,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422024360,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"40751880","duration":3420,"bikeId":"10025","endDate":1422025020,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422021600,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40752420","duration":1680,"bikeId":"8970","endDate":1422025140,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422023460,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40752549","duration":1500,"bikeId":"5991","endDate":1422025440,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1422023940,"startStationId":"528","startStationName":"Clarges Street, West End"}, +{"_id":"40752677","duration":1380,"bikeId":"11404","endDate":1422025680,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1422024300,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40753045","duration":360,"bikeId":"5762","endDate":1422025920,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1422025560,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40753036","duration":660,"bikeId":"7618","endDate":1422026160,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422025500,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40753065","duration":720,"bikeId":"12555","endDate":1422026340,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422025620,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40753235","duration":420,"bikeId":"10889","endDate":1422026580,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1422026160,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"40753230","duration":660,"bikeId":"4671","endDate":1422026820,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1422026160,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40753252","duration":840,"bikeId":"5401","endDate":1422027060,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422026220,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40753409","duration":540,"bikeId":"9748","endDate":1422027300,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1422026760,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40753370","duration":900,"bikeId":"561","endDate":1422027540,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422026640,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"40753442","duration":900,"bikeId":"5866","endDate":1422027780,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1422026880,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"40753472","duration":960,"bikeId":"10334","endDate":1422027960,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1422027000,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40753418","duration":1380,"bikeId":"12811","endDate":1422028200,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1422026820,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"40753692","duration":780,"bikeId":"10624","endDate":1422028440,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1422027660,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40753496","duration":1560,"bikeId":"4080","endDate":1422028620,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1422027060,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40753382","duration":2100,"bikeId":"6465","endDate":1422028800,"endStationId":"60","endStationName":"Lisson Grove, St. John's Wood","startDate":1422026700,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40753814","duration":960,"bikeId":"10433","endDate":1422029040,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1422028080,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40753911","duration":780,"bikeId":"8622","endDate":1422029220,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1422028440,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40754111","duration":360,"bikeId":"12641","endDate":1422029340,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1422028980,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40754121","duration":540,"bikeId":"8872","endDate":1422029580,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422029040,"startStationId":"283","startStationName":"Kingsway, Covent Garden"}, +{"_id":"40754363","duration":120,"bikeId":"3073","endDate":1422029760,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1422029640,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40753891","duration":1620,"bikeId":"11053","endDate":1422030000,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1422028380,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"40754217","duration":840,"bikeId":"11264","endDate":1422030120,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422029280,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"40754488","duration":360,"bikeId":"216","endDate":1422030360,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1422030000,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40754496","duration":540,"bikeId":"1886","endDate":1422030540,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1422030000,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40754669","duration":240,"bikeId":"6831","endDate":1422030720,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1422030480,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"40754218","duration":1620,"bikeId":"10074","endDate":1422030900,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1422029280,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"40754547","duration":900,"bikeId":"9862","endDate":1422031080,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1422030180,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40754463","duration":1260,"bikeId":"12724","endDate":1422031200,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422029940,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40754367","duration":1740,"bikeId":"7023","endDate":1422031380,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1422029640,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40754965","duration":420,"bikeId":"12088","endDate":1422031560,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1422031140,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40754546","duration":1560,"bikeId":"6712","endDate":1422031740,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1422030180,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40754998","duration":660,"bikeId":"3970","endDate":1422031920,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422031260,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40754855","duration":1200,"bikeId":"10245","endDate":1422032100,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422030900,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40755196","duration":480,"bikeId":"1947","endDate":1422032220,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422031740,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40754554","duration":2160,"bikeId":"1479","endDate":1422032340,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1422030180,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40755054","duration":1140,"bikeId":"12443","endDate":1422032520,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1422031380,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40755143","duration":1080,"bikeId":"12355","endDate":1422032640,"endStationId":"761","endStationName":"Humbolt Road, Fulham","startDate":1422031560,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40755085","duration":1260,"bikeId":"12488","endDate":1422032760,"endStationId":"271","endStationName":"London Zoo, Regents Park","startDate":1422031500,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40755017","duration":1560,"bikeId":"5132","endDate":1422032880,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1422031320,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40755697","duration":360,"bikeId":"7793","endDate":1422033060,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1422032700,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40755859","duration":180,"bikeId":"6764","endDate":1422033180,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422033000,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40755569","duration":780,"bikeId":"7284","endDate":1422033300,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422032520,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40755919","duration":360,"bikeId":"7555","endDate":1422033420,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1422033060,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40755876","duration":540,"bikeId":"4040","endDate":1422033540,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1422033000,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40755693","duration":960,"bikeId":"5946","endDate":1422033660,"endStationId":"461","endStationName":"Aston Street, Stepney","startDate":1422032700,"startStationId":"551","startStationName":"Montgomery Square, Canary Wharf"}, +{"_id":"40756008","duration":480,"bikeId":"1764","endDate":1422033720,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1422033240,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40756095","duration":480,"bikeId":"107","endDate":1422033840,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1422033360,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40755763","duration":1080,"bikeId":"11888","endDate":1422033900,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422032820,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40756216","duration":540,"bikeId":"12417","endDate":1422034020,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1422033480,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"40756026","duration":900,"bikeId":"10791","endDate":1422034140,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422033240,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40756421","duration":360,"bikeId":"5690","endDate":1422034200,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1422033840,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40756494","duration":420,"bikeId":"12786","endDate":1422034320,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1422033900,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40756238","duration":840,"bikeId":"8580","endDate":1422034380,"endStationId":"523","endStationName":"Langdon Park, Poplar","startDate":1422033540,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"40756476","duration":600,"bikeId":"2985","endDate":1422034500,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1422033900,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40756245","duration":1080,"bikeId":"4933","endDate":1422034620,"endStationId":"677","endStationName":"Heath Road, Battersea","startDate":1422033540,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40756479","duration":840,"bikeId":"4113","endDate":1422034740,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1422033900,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40756825","duration":360,"bikeId":"6907","endDate":1422034800,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1422034440,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40756941","duration":360,"bikeId":"88","endDate":1422034920,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422034560,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40756293","duration":1380,"bikeId":"10936","endDate":1422034980,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1422033600,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40756546","duration":1080,"bikeId":"10494","endDate":1422035100,"endStationId":"721","endStationName":"Wendon Street, Old Ford","startDate":1422034020,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40756365","duration":1440,"bikeId":"830","endDate":1422035160,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1422033720,"startStationId":"164","startStationName":"Cleveland Gardens, Bayswater"}, +{"_id":"40757296","duration":300,"bikeId":"9724","endDate":1422035280,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1422034980,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40757238","duration":420,"bikeId":"11356","endDate":1422035340,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422034920,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40757365","duration":360,"bikeId":"8778","endDate":1422035460,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422035100,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40757528","duration":240,"bikeId":"8850","endDate":1422035520,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1422035280,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40757348","duration":540,"bikeId":"1290","endDate":1422035580,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1422035040,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40757407","duration":600,"bikeId":"2128","endDate":1422035700,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1422035100,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40757305","duration":780,"bikeId":"1291","endDate":1422035760,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1422034980,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"40757625","duration":480,"bikeId":"776","endDate":1422035880,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422035400,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40757799","duration":300,"bikeId":"5286","endDate":1422035940,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1422035640,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40757104","duration":1320,"bikeId":"12055","endDate":1422036060,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1422034740,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40757556","duration":780,"bikeId":"110","endDate":1422036120,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1422035340,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40757590","duration":840,"bikeId":"8937","endDate":1422036180,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1422035340,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40757669","duration":780,"bikeId":"2580","endDate":1422036300,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1422035520,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40757787","duration":780,"bikeId":"12901","endDate":1422036420,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1422035640,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40756045","duration":3300,"bikeId":"2132","endDate":1422036540,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1422033240,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40758291","duration":180,"bikeId":"6418","endDate":1422036600,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1422036420,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40757756","duration":1140,"bikeId":"6652","endDate":1422036720,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1422035580,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40757476","duration":1560,"bikeId":"9709","endDate":1422036780,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1422035220,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40757484","duration":1680,"bikeId":"1934","endDate":1422036900,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422035220,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40757200","duration":2100,"bikeId":"1665","endDate":1422036960,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1422034860,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40758474","duration":420,"bikeId":"6382","endDate":1422037080,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422036660,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40758661","duration":300,"bikeId":"4764","endDate":1422037200,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1422036900,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40757959","duration":1380,"bikeId":"13031","endDate":1422037260,"endStationId":"699","endStationName":"Belford House, Haggerston","startDate":1422035880,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"40758079","duration":1260,"bikeId":"8635","endDate":1422037380,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1422036120,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40758611","duration":660,"bikeId":"6825","endDate":1422037500,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422036840,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40758547","duration":840,"bikeId":"9900","endDate":1422037620,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422036780,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40758508","duration":960,"bikeId":"10600","endDate":1422037680,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1422036720,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40758930","duration":360,"bikeId":"6962","endDate":1422037800,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1422037440,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40758747","duration":840,"bikeId":"3120","endDate":1422037860,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422037020,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40759273","duration":0,"bikeId":"453","endDate":1422037980,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1422037980,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"40758850","duration":780,"bikeId":"295","endDate":1422038040,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1422037260,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40758477","duration":1500,"bikeId":"12745","endDate":1422038160,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1422036660,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40759039","duration":720,"bikeId":"6761","endDate":1422038280,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1422037560,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40758791","duration":1260,"bikeId":"3781","endDate":1422038400,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1422037140,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40759175","duration":780,"bikeId":"2983","endDate":1422038580,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1422037800,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40759141","duration":960,"bikeId":"3645","endDate":1422038700,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1422037740,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40759195","duration":960,"bikeId":"7837","endDate":1422038820,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1422037860,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"40759637","duration":240,"bikeId":"10287","endDate":1422038940,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1422038700,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40759339","duration":960,"bikeId":"1828","endDate":1422039060,"endStationId":"327","endStationName":"New North Road 1, Hoxton","startDate":1422038100,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40759418","duration":900,"bikeId":"928","endDate":1422039180,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1422038280,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"40759689","duration":540,"bikeId":"8684","endDate":1422039360,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1422038820,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40759154","duration":1680,"bikeId":"4458","endDate":1422039480,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422037800,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40759484","duration":1200,"bikeId":"500","endDate":1422039660,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1422038460,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40759989","duration":240,"bikeId":"4678","endDate":1422039780,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1422039540,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40759889","duration":660,"bikeId":"2323","endDate":1422039900,"endStationId":"599","endStationName":"Manbre Road, Hammersmith","startDate":1422039240,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40760034","duration":420,"bikeId":"12712","endDate":1422040080,"endStationId":"576","endStationName":"Alpha Grove, Millwall","startDate":1422039660,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40760073","duration":480,"bikeId":"10079","endDate":1422040200,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1422039720,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"40760080","duration":600,"bikeId":"2212","endDate":1422040380,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1422039780,"startStationId":"291","startStationName":"Claverton Street, Pimlico"}, +{"_id":"40759868","duration":1320,"bikeId":"6156","endDate":1422040500,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1422039180,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"40760146","duration":780,"bikeId":"6730","endDate":1422040680,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1422039900,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40760417","duration":120,"bikeId":"10789","endDate":1422040860,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1422040740,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40760321","duration":600,"bikeId":"1055","endDate":1422041040,"endStationId":"134","endStationName":"Wapping High Street, Wapping","startDate":1422040440,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40760354","duration":780,"bikeId":"9469","endDate":1422041280,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1422040500,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40760570","duration":300,"bikeId":"11982","endDate":1422041460,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1422041160,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40760582","duration":480,"bikeId":"11298","endDate":1422041640,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1422041160,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40760537","duration":840,"bikeId":"9668","endDate":1422041880,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1422041040,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"40760759","duration":360,"bikeId":"3895","endDate":1422042060,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1422041700,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"40760657","duration":840,"bikeId":"4911","endDate":1422042240,"endStationId":"497","endStationName":"Coborn Street, Mile End","startDate":1422041400,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"40760770","duration":660,"bikeId":"9579","endDate":1422042420,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1422041760,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40760962","duration":240,"bikeId":"13080","endDate":1422042660,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1422042420,"startStationId":"600","startStationName":"South Lambeth Road, Vauxhall"}, +{"_id":"40760861","duration":840,"bikeId":"307","endDate":1422042840,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1422042000,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40761103","duration":180,"bikeId":"8871","endDate":1422043080,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1422042900,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40761097","duration":480,"bikeId":"2947","endDate":1422043380,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1422042900,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40760610","duration":2280,"bikeId":"9216","endDate":1422043560,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1422041280,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40761153","duration":720,"bikeId":"1413","endDate":1422043800,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1422043080,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"40761262","duration":600,"bikeId":"6253","endDate":1422044040,"endStationId":"517","endStationName":"Ford Road, Old Ford","startDate":1422043440,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40761232","duration":960,"bikeId":"6720","endDate":1422044280,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1422043320,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40761406","duration":600,"bikeId":"3747","endDate":1422044580,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1422043980,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40761250","duration":1380,"bikeId":"3702","endDate":1422044820,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1422043440,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40761587","duration":300,"bikeId":"6752","endDate":1422045120,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1422044820,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40761595","duration":540,"bikeId":"3379","endDate":1422045360,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1422044820,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40761689","duration":300,"bikeId":"8525","endDate":1422045660,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1422045360,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40761731","duration":480,"bikeId":"8341","endDate":1422046020,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1422045540,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40761796","duration":480,"bikeId":"5685","endDate":1422046320,"endStationId":"700","endStationName":"Battersea Church Road, Battersea","startDate":1422045840,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"40761756","duration":1140,"bikeId":"6490","endDate":1422046800,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1422045660,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40761918","duration":480,"bikeId":"1829","endDate":1422047340,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1422046860,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40762055","duration":120,"bikeId":"11068","endDate":1422047880,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1422047760,"startStationId":"669","startStationName":"Teversham Lane, Stockwell"}, +{"_id":"40762033","duration":720,"bikeId":"7786","endDate":1422048360,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1422047640,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40762166","duration":300,"bikeId":"6602","endDate":1422048900,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1422048600,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40762204","duration":480,"bikeId":"9460","endDate":1422049320,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1422048840,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40762271","duration":540,"bikeId":"7580","endDate":1422049920,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1422049380,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"40761883","duration":4020,"bikeId":"10247","endDate":1422050520,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1422046500,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40762411","duration":240,"bikeId":"5686","endDate":1422051300,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1422051060,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40762461","duration":240,"bikeId":"7947","endDate":1422052140,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1422051900,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40762326","duration":3540,"bikeId":"2429","endDate":1422053520,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422049980,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40762566","duration":600,"bikeId":"2596","endDate":1422054540,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422053940,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40762663","duration":240,"bikeId":"12356","endDate":1422055560,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1422055320,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40762687","duration":780,"bikeId":"10247","endDate":1422056400,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1422055620,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40762805","duration":420,"bikeId":"1567","endDate":1422057120,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1422056700,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40762747","duration":1560,"bikeId":"7708","endDate":1422057780,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1422056220,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40762929","duration":540,"bikeId":"456","endDate":1422058620,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1422058080,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40762787","duration":3060,"bikeId":"44","endDate":1422059580,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1422056520,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40763041","duration":1080,"bikeId":"7007","endDate":1422060840,"endStationId":"714","endStationName":"Stewart's Road, Nine Elms","startDate":1422059760,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"40763152","duration":240,"bikeId":"11092","endDate":1422062520,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1422062280,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40763165","duration":1560,"bikeId":"9641","endDate":1422064320,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1422062760,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"40763279","duration":600,"bikeId":"9564","endDate":1422066480,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1422065880,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40763328","duration":1200,"bikeId":"3146","endDate":1422068160,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1422066960,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"40763376","duration":1500,"bikeId":"652","endDate":1422069600,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422068100,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40763472","duration":780,"bikeId":"590","endDate":1422071220,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1422070440,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"40763519","duration":1200,"bikeId":"10760","endDate":1422073140,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1422071940,"startStationId":"750","startStationName":"Culvert Road, Battersea"}, +{"_id":"40763558","duration":2820,"bikeId":"4177","endDate":1422076140,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1422073320,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40763610","duration":3900,"bikeId":"10940","endDate":1422080100,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1422076200,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40763730","duration":240,"bikeId":"7002","endDate":1422082800,"endStationId":"663","endStationName":"Clarendon Road, Avondale","startDate":1422082560,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"40763793","duration":780,"bikeId":"9851","endDate":1422085380,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422084600,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40763836","duration":1080,"bikeId":"2012","endDate":1422086520,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1422085440,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40763950","duration":240,"bikeId":"7248","endDate":1422087960,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422087720,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40763905","duration":2100,"bikeId":"5583","endDate":1422088920,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1422086820,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"40763993","duration":1380,"bikeId":"9334","endDate":1422089580,"endStationId":"291","endStationName":"Claverton Street, Pimlico","startDate":1422088200,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40763992","duration":1800,"bikeId":"9764","endDate":1422090000,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1422088200,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"40764282","duration":300,"bikeId":"6764","endDate":1422090600,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1422090300,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"40764275","duration":780,"bikeId":"4883","endDate":1422091080,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1422090300,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40764262","duration":1260,"bikeId":"2487","endDate":1422091500,"endStationId":"725","endStationName":"Thessaly Road North, Nine Elms","startDate":1422090240,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40764310","duration":1500,"bikeId":"9990","endDate":1422091980,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422090480,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"40764603","duration":300,"bikeId":"11217","endDate":1422092400,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1422092100,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40764672","duration":360,"bikeId":"9872","endDate":1422092700,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1422092340,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40764581","duration":1020,"bikeId":"11070","endDate":1422092940,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422091920,"startStationId":"668","startStationName":"Ravenscourt Park Station, Hammersmith"}, +{"_id":"40764712","duration":780,"bikeId":"5726","endDate":1422093300,"endStationId":"617","endStationName":"Elysium Place, Fulham","startDate":1422092520,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"40764783","duration":720,"bikeId":"4044","endDate":1422093540,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1422092820,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"40764901","duration":540,"bikeId":"6770","endDate":1422093780,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1422093240,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40764939","duration":660,"bikeId":"6716","endDate":1422094020,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1422093360,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40765043","duration":480,"bikeId":"10925","endDate":1422094260,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1422093780,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"40765073","duration":720,"bikeId":"219","endDate":1422094560,"endStationId":"611","endStationName":"Princedale Road , Holland Park","startDate":1422093840,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"40765038","duration":1020,"bikeId":"8848","endDate":1422094800,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1422093780,"startStationId":"518","startStationName":"Antill Road, Mile End"}, +{"_id":"40765077","duration":1200,"bikeId":"7561","endDate":1422095040,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1422093840,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"40765117","duration":1260,"bikeId":"10013","endDate":1422095280,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1422094020,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40765130","duration":1440,"bikeId":"8826","endDate":1422095520,"endStationId":"100","endStationName":"Albert Embankment, Vauxhall","startDate":1422094080,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40765548","duration":300,"bikeId":"6768","endDate":1422095820,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1422095520,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"40765312","duration":1380,"bikeId":"2687","endDate":1422096060,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1422094680,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"40765644","duration":480,"bikeId":"6748","endDate":1422096240,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422095760,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40765896","duration":0,"bikeId":"11858","endDate":1422096420,"endStationId":"606","endStationName":"Addison Road, Holland Park","startDate":1422096420,"startStationId":"606","startStationName":"Addison Road, Holland Park"}, +{"_id":"40765704","duration":660,"bikeId":"12792","endDate":1422096600,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1422095940,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40765771","duration":780,"bikeId":"9326","endDate":1422096840,"endStationId":"530","endStationName":"Newby Place, Poplar","startDate":1422096060,"startStationId":"475","startStationName":"Lightermans Road, Millwall"}, +{"_id":"40766052","duration":240,"bikeId":"6531","endDate":1422097080,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1422096840,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40765858","duration":900,"bikeId":"315","endDate":1422097260,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422096360,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40765956","duration":840,"bikeId":"9191","endDate":1422097440,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1422096600,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40766268","duration":180,"bikeId":"13028","endDate":1422097680,"endStationId":"149","endStationName":"Kennington Road Post Office, Oval","startDate":1422097500,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"40766107","duration":900,"bikeId":"11123","endDate":1422097920,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1422097020,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40765971","duration":1440,"bikeId":"8960","endDate":1422098100,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422096660,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"40766215","duration":1020,"bikeId":"8407","endDate":1422098340,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1422097320,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40766510","duration":360,"bikeId":"9742","endDate":1422098580,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1422098220,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40766583","duration":420,"bikeId":"9334","endDate":1422098820,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1422098400,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"40766488","duration":840,"bikeId":"9766","endDate":1422099000,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422098160,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40766589","duration":780,"bikeId":"2085","endDate":1422099180,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422098400,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40766836","duration":360,"bikeId":"10370","endDate":1422099420,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422099060,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40766867","duration":480,"bikeId":"9681","endDate":1422099600,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1422099120,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"40766654","duration":1140,"bikeId":"7821","endDate":1422099720,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1422098580,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40766747","duration":1080,"bikeId":"865","endDate":1422099900,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422098820,"startStationId":"470","startStationName":"Mostyn Grove, Bow"}, +{"_id":"40766914","duration":840,"bikeId":"4149","endDate":1422100080,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1422099240,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"40767018","duration":780,"bikeId":"110","endDate":1422100260,"endStationId":"149","endStationName":"Kennington Road Post Office, Oval","startDate":1422099480,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"40766764","duration":1500,"bikeId":"4192","endDate":1422100380,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1422098880,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40767217","duration":660,"bikeId":"9066","endDate":1422100560,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1422099900,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"40766986","duration":1380,"bikeId":"1053","endDate":1422100740,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422099360,"startStationId":"496","startStationName":"Devons Road, Bow"}, +{"_id":"40766607","duration":2400,"bikeId":"11112","endDate":1422100860,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1422098460,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40767658","duration":300,"bikeId":"954","endDate":1422101040,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1422100740,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40767368","duration":960,"bikeId":"6636","endDate":1422101100,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1422100140,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40766389","duration":3420,"bikeId":"2037","endDate":1422101280,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422097860,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40767713","duration":600,"bikeId":"13028","endDate":1422101460,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1422100860,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"40767826","duration":600,"bikeId":"7634","endDate":1422101640,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422101040,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40768147","duration":0,"bikeId":"1413","endDate":1422101820,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1422101820,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"40768036","duration":420,"bikeId":"12958","endDate":1422102000,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1422101580,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40768225","duration":240,"bikeId":"965","endDate":1422102180,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1422101940,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"40767659","duration":1560,"bikeId":"12204","endDate":1422102300,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1422100740,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40767987","duration":1020,"bikeId":"7017","endDate":1422102480,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1422101460,"startStationId":"714","startStationName":"Stewart's Road, Nine Elms"}, +{"_id":"40766673","duration":3960,"bikeId":"6655","endDate":1422102600,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1422098640,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40768537","duration":180,"bikeId":"10656","endDate":1422102780,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1422102600,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40768456","duration":420,"bikeId":"5067","endDate":1422102900,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422102480,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40768446","duration":600,"bikeId":"3566","endDate":1422103080,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422102480,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40768130","duration":1500,"bikeId":"9853","endDate":1422103260,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1422101760,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40768107","duration":1680,"bikeId":"9925","endDate":1422103380,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422101700,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40768795","duration":300,"bikeId":"10962","endDate":1422103500,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422103200,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40768433","duration":1260,"bikeId":"2697","endDate":1422103680,"endStationId":"684","endStationName":"Neville Gill Close, Wandsworth","startDate":1422102420,"startStationId":"684","startStationName":"Neville Gill Close, Wandsworth"}, +{"_id":"40768671","duration":960,"bikeId":"5688","endDate":1422103860,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1422102900,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40768654","duration":1080,"bikeId":"8834","endDate":1422103980,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1422102900,"startStationId":"734","startStationName":"Plough Terrace, Clapham Junction"}, +{"_id":"40768479","duration":1620,"bikeId":"4221","endDate":1422104160,"endStationId":"766","endStationName":"Ram Street, Wandsworth","startDate":1422102540,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"40769133","duration":480,"bikeId":"6599","endDate":1422104280,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1422103800,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40767364","duration":4260,"bikeId":"9799","endDate":1422104400,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1422100140,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40769411","duration":240,"bikeId":"2966","endDate":1422104520,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1422104280,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40769253","duration":600,"bikeId":"13009","endDate":1422104640,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1422104040,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40769537","duration":240,"bikeId":"7715","endDate":1422104760,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1422104520,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40768033","duration":3240,"bikeId":"4118","endDate":1422104820,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1422101580,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"40769644","duration":240,"bikeId":"6872","endDate":1422104940,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1422104700,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40769564","duration":540,"bikeId":"3214","endDate":1422105120,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1422104580,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40769219","duration":1320,"bikeId":"5116","endDate":1422105240,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1422103920,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40768983","duration":1800,"bikeId":"8262","endDate":1422105360,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1422103560,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40769417","duration":1140,"bikeId":"9571","endDate":1422105480,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1422104340,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40769630","duration":960,"bikeId":"4276","endDate":1422105660,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1422104700,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"40769637","duration":1080,"bikeId":"4199","endDate":1422105780,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1422104700,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40769998","duration":480,"bikeId":"11039","endDate":1422105900,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1422105420,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40768485","duration":3480,"bikeId":"10745","endDate":1422106020,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1422102540,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"40766974","duration":6840,"bikeId":"925","endDate":1422106200,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1422099360,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40770312","duration":240,"bikeId":"2290","endDate":1422106320,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1422106080,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"40769955","duration":1080,"bikeId":"9355","endDate":1422106440,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1422105360,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40770255","duration":660,"bikeId":"11788","endDate":1422106620,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1422105960,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40767228","duration":6840,"bikeId":"6052","endDate":1422106740,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1422099900,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40770592","duration":360,"bikeId":"12485","endDate":1422106860,"endStationId":"665","endStationName":"Smugglers Way, Wandsworth","startDate":1422106500,"startStationId":"734","startStationName":"Plough Terrace, Clapham Junction"}, +{"_id":"40770389","duration":780,"bikeId":"4293","endDate":1422106980,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1422106200,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"40770641","duration":540,"bikeId":"6195","endDate":1422107160,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1422106620,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40770952","duration":180,"bikeId":"12159","endDate":1422107340,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1422107160,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40770716","duration":660,"bikeId":"10510","endDate":1422107400,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1422106740,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40768985","duration":3960,"bikeId":"593","endDate":1422107520,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422103560,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40769854","duration":2460,"bikeId":"6861","endDate":1422107640,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1422105180,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"40770876","duration":780,"bikeId":"13049","endDate":1422107760,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1422106980,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40770539","duration":1500,"bikeId":"2317","endDate":1422107940,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1422106440,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"40770972","duration":840,"bikeId":"11357","endDate":1422108060,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1422107220,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40770516","duration":1740,"bikeId":"7938","endDate":1422108120,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1422106380,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40771350","duration":300,"bikeId":"7241","endDate":1422108240,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1422107940,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40770271","duration":2460,"bikeId":"7844","endDate":1422108420,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1422105960,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40771605","duration":180,"bikeId":"8778","endDate":1422108540,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1422108360,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"40768776","duration":5580,"bikeId":"10665","endDate":1422108720,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1422103140,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40771354","duration":900,"bikeId":"4044","endDate":1422108840,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1422107940,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40770703","duration":2220,"bikeId":"696","endDate":1422108960,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422106740,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40771743","duration":480,"bikeId":"576","endDate":1422109140,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422108660,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"40771326","duration":1380,"bikeId":"8148","endDate":1422109260,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1422107880,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"40771473","duration":1260,"bikeId":"2228","endDate":1422109440,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422108180,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"40771667","duration":1020,"bikeId":"188","endDate":1422109560,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422108540,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40771995","duration":660,"bikeId":"12711","endDate":1422109740,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1422109080,"startStationId":"291","startStationName":"Claverton Street, Pimlico"}, +{"_id":"40771449","duration":1740,"bikeId":"10136","endDate":1422109860,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1422108120,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40771971","duration":960,"bikeId":"10721","endDate":1422109980,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1422109020,"startStationId":"412","startStationName":"Cleaver Street, Kennington"}, +{"_id":"40772150","duration":720,"bikeId":"5554","endDate":1422110040,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1422109320,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40771893","duration":1200,"bikeId":"10686","endDate":1422110160,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422108960,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40771040","duration":2940,"bikeId":"12087","endDate":1422110280,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1422107340,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40772476","duration":480,"bikeId":"12377","endDate":1422110460,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1422109980,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40772393","duration":780,"bikeId":"11972","endDate":1422110520,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1422109740,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40772672","duration":360,"bikeId":"11977","endDate":1422110700,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1422110340,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"40772887","duration":120,"bikeId":"451","endDate":1422110820,"endStationId":"724","endStationName":"Alma Road, Wandsworth","startDate":1422110700,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40771942","duration":1920,"bikeId":"5549","endDate":1422110880,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1422108960,"startStationId":"757","startStationName":"Harcourt Terrace, West Brompton"}, +{"_id":"40771476","duration":2820,"bikeId":"11821","endDate":1422111000,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1422108180,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40772374","duration":1500,"bikeId":"10538","endDate":1422111180,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1422109680,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40773024","duration":360,"bikeId":"9394","endDate":1422111300,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1422110940,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"40772597","duration":1260,"bikeId":"11935","endDate":1422111420,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422110160,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40773175","duration":360,"bikeId":"3061","endDate":1422111600,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1422111240,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40772245","duration":2220,"bikeId":"12569","endDate":1422111720,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1422109500,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40773058","duration":780,"bikeId":"7413","endDate":1422111840,"endStationId":"675","endStationName":"Usk Road, Battersea","startDate":1422111060,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40772712","duration":1620,"bikeId":"10331","endDate":1422112020,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1422110400,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"40773228","duration":780,"bikeId":"141","endDate":1422112140,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1422111360,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40772464","duration":2340,"bikeId":"5046","endDate":1422112260,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1422109920,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40772166","duration":3060,"bikeId":"12709","endDate":1422112380,"endStationId":"692","endStationName":"Cadogan Close, Victoria Park","startDate":1422109320,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"40773218","duration":1140,"bikeId":"2070","endDate":1422112500,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1422111360,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40773778","duration":240,"bikeId":"1185","endDate":1422112680,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422112440,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40773603","duration":720,"bikeId":"5117","endDate":1422112800,"endStationId":"674","endStationName":"Carnegie Street, King's Cross","startDate":1422112080,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40773954","duration":240,"bikeId":"887","endDate":1422112980,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1422112740,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"40773898","duration":480,"bikeId":"11357","endDate":1422113100,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1422112620,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40773765","duration":780,"bikeId":"11039","endDate":1422113220,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1422112440,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40772349","duration":3660,"bikeId":"3677","endDate":1422113340,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1422109680,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"40772424","duration":3600,"bikeId":"7241","endDate":1422113460,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1422109860,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40774100","duration":600,"bikeId":"12069","endDate":1422113580,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1422112980,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40774480","duration":0,"bikeId":"3536","endDate":1422113700,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422113700,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40774240","duration":600,"bikeId":"11882","endDate":1422113880,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1422113280,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"40774353","duration":540,"bikeId":"8821","endDate":1422114000,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1422113460,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"40774051","duration":1200,"bikeId":"4726","endDate":1422114120,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422112920,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"40773915","duration":1620,"bikeId":"2311","endDate":1422114300,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422112680,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40774294","duration":960,"bikeId":"12282","endDate":1422114360,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1422113400,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40774723","duration":360,"bikeId":"7830","endDate":1422114480,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1422114120,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40774864","duration":240,"bikeId":"7","endDate":1422114600,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1422114360,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40774742","duration":540,"bikeId":"12525","endDate":1422114720,"endStationId":"759","endStationName":"Broadley Terrace, Marylebone","startDate":1422114180,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40773718","duration":2520,"bikeId":"13068","endDate":1422114840,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1422112320,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40775078","duration":180,"bikeId":"7674","endDate":1422114960,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1422114780,"startStationId":"363","startStationName":"Lord's, St. John's Wood"}, +{"_id":"40774913","duration":600,"bikeId":"511","endDate":1422115080,"endStationId":"766","endStationName":"Ram Street, Wandsworth","startDate":1422114480,"startStationId":"776","startStationName":"Abyssinia Close, Clapham Junction"}, +{"_id":"40773284","duration":3660,"bikeId":"6330","endDate":1422115140,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1422111480,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40774713","duration":1200,"bikeId":"6206","endDate":1422115260,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1422114060,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40775075","duration":660,"bikeId":"2128","endDate":1422115440,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1422114780,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40771573","duration":7260,"bikeId":"2708","endDate":1422115560,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1422108300,"startStationId":"146","startStationName":"Vauxhall Bridge , Pimlico"}, +{"_id":"40775244","duration":540,"bikeId":"7847","endDate":1422115680,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1422115140,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"40775449","duration":300,"bikeId":"7724","endDate":1422115860,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1422115560,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40775531","duration":240,"bikeId":"6564","endDate":1422115980,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422115740,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"40775370","duration":660,"bikeId":"1360","endDate":1422116100,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1422115440,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40775593","duration":360,"bikeId":"2809","endDate":1422116280,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1422115920,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40775258","duration":1260,"bikeId":"3929","endDate":1422116400,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1422115140,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40775170","duration":1560,"bikeId":"5428","endDate":1422116520,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1422114960,"startStationId":"276","startStationName":"Lower Thames Street, Monument"}, +{"_id":"40775772","duration":420,"bikeId":"9935","endDate":1422116640,"endStationId":"599","endStationName":"Manbre Road, Hammersmith","startDate":1422116220,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"40775807","duration":540,"bikeId":"3042","endDate":1422116820,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1422116280,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40775971","duration":300,"bikeId":"12992","endDate":1422116940,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1422116640,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40775780","duration":840,"bikeId":"2179","endDate":1422117060,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1422116220,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"40775984","duration":480,"bikeId":"7527","endDate":1422117180,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1422116700,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40776198","duration":240,"bikeId":"2246","endDate":1422117360,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1422117120,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40774883","duration":3060,"bikeId":"7468","endDate":1422117480,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1422114420,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40774193","duration":4380,"bikeId":"4716","endDate":1422117600,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1422113220,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40775967","duration":1140,"bikeId":"12761","endDate":1422117780,"endStationId":"297","endStationName":"Geraldine Street, Elephant & Castle","startDate":1422116640,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40776016","duration":1140,"bikeId":"11971","endDate":1422117840,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1422116700,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40776442","duration":360,"bikeId":"2698","endDate":1422117960,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1422117600,"startStationId":"469","startStationName":"Lindfield Street, Poplar"}, +{"_id":"40776527","duration":360,"bikeId":"5821","endDate":1422118140,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1422117780,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"40776352","duration":900,"bikeId":"12975","endDate":1422118260,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1422117360,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40776155","duration":1380,"bikeId":"11878","endDate":1422118380,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1422117000,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"40776530","duration":720,"bikeId":"3209","endDate":1422118500,"endStationId":"484","endStationName":"Bromley High Street, Bromley","startDate":1422117780,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"40776444","duration":1020,"bikeId":"11375","endDate":1422118620,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1422117600,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40776697","duration":600,"bikeId":"3028","endDate":1422118740,"endStationId":"60","endStationName":"Lisson Grove, St. John's Wood","startDate":1422118140,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"40776487","duration":1200,"bikeId":"9645","endDate":1422118860,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422117660,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40775127","duration":4080,"bikeId":"8733","endDate":1422118980,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422114900,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40776515","duration":1380,"bikeId":"6078","endDate":1422119100,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1422117720,"startStationId":"692","startStationName":"Cadogan Close, Victoria Park"}, +{"_id":"40776800","duration":960,"bikeId":"11121","endDate":1422119280,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1422118320,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40777081","duration":360,"bikeId":"788","endDate":1422119400,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1422119040,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40776447","duration":1920,"bikeId":"3622","endDate":1422119520,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1422117600,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40776651","duration":1620,"bikeId":"1902","endDate":1422119640,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1422118020,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40777242","duration":480,"bikeId":"7052","endDate":1422119820,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1422119340,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40776945","duration":1200,"bikeId":"3733","endDate":1422119940,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1422118740,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40776199","duration":3000,"bikeId":"3940","endDate":1422120120,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1422117120,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40777235","duration":960,"bikeId":"9778","endDate":1422120300,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1422119340,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40777470","duration":480,"bikeId":"8946","endDate":1422120480,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422120000,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40777185","duration":1380,"bikeId":"1087","endDate":1422120600,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422119220,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40777370","duration":1080,"bikeId":"10420","endDate":1422120780,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1422119700,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40774861","duration":6600,"bikeId":"4162","endDate":1422120960,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1422114360,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40777093","duration":2040,"bikeId":"3836","endDate":1422121080,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422119040,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40777277","duration":1740,"bikeId":"1046","endDate":1422121200,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1422119460,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40777724","duration":780,"bikeId":"5760","endDate":1422121440,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1422120660,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40777700","duration":1020,"bikeId":"12055","endDate":1422121620,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1422120600,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40777695","duration":1200,"bikeId":"8702","endDate":1422121800,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422120600,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40778054","duration":240,"bikeId":"12813","endDate":1422121980,"endStationId":"455","endStationName":"East Ferry Road, Cubitt Town","startDate":1422121740,"startStationId":"477","startStationName":"Spindrift Avenue, Millwall"}, +{"_id":"40777620","duration":1800,"bikeId":"1873","endDate":1422122220,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1422120420,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40778152","duration":420,"bikeId":"635","endDate":1422122460,"endStationId":"463","endStationName":"Thurtle Road, Haggerston","startDate":1422122040,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40777781","duration":1680,"bikeId":"7765","endDate":1422122580,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1422120900,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40778017","duration":1140,"bikeId":"12822","endDate":1422122760,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1422121620,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40778067","duration":1140,"bikeId":"7668","endDate":1422122940,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1422121800,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40778235","duration":900,"bikeId":"1035","endDate":1422123180,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1422122280,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40778160","duration":1380,"bikeId":"11043","endDate":1422123420,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1422122040,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40778395","duration":780,"bikeId":"1537","endDate":1422123660,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1422122880,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40778499","duration":600,"bikeId":"5173","endDate":1422123840,"endStationId":"777","endStationName":"Limburg Road, Clapham Common","startDate":1422123240,"startStationId":"690","startStationName":"Stanley Grove, Battersea"}, +{"_id":"40778300","duration":1560,"bikeId":"116","endDate":1422124080,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1422122520,"startStationId":"371","startStationName":"King Edward Walk, Waterloo"}, +{"_id":"40778700","duration":480,"bikeId":"2106","endDate":1422124380,"endStationId":"384","endStationName":"Marloes Road, Kensington","startDate":1422123900,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40778404","duration":1620,"bikeId":"9341","endDate":1422124560,"endStationId":"726","endStationName":"Alfreda Street, Battersea Park","startDate":1422122940,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40778080","duration":3000,"bikeId":"10909","endDate":1422124800,"endStationId":"222","endStationName":"Knightsbridge, Hyde Park","startDate":1422121800,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40778833","duration":600,"bikeId":"1658","endDate":1422125100,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1422124500,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40778812","duration":900,"bikeId":"12982","endDate":1422125340,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1422124440,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40778451","duration":2580,"bikeId":"11881","endDate":1422125640,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1422123060,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40779105","duration":240,"bikeId":"8540","endDate":1422125940,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1422125700,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40778834","duration":1680,"bikeId":"11084","endDate":1422126240,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422124560,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40779054","duration":1080,"bikeId":"2624","endDate":1422126600,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1422125520,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"40779257","duration":420,"bikeId":"5265","endDate":1422126900,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1422126480,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40779112","duration":1440,"bikeId":"1477","endDate":1422127200,"endStationId":"100","endStationName":"Albert Embankment, Vauxhall","startDate":1422125760,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40778952","duration":2460,"bikeId":"5489","endDate":1422127500,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1422125040,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"40779367","duration":960,"bikeId":"6261","endDate":1422127800,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1422126840,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40779572","duration":120,"bikeId":"9821","endDate":1422128040,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1422127920,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40779584","duration":360,"bikeId":"8968","endDate":1422128340,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1422127980,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40779625","duration":600,"bikeId":"3958","endDate":1422128700,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422128100,"startStationId":"117","startStationName":"Lollard Street, Vauxhall"}, +{"_id":"40779740","duration":300,"bikeId":"563","endDate":1422129060,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1422128760,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40779787","duration":360,"bikeId":"9269","endDate":1422129360,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1422129000,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40779797","duration":660,"bikeId":"5037","endDate":1422129660,"endStationId":"283","endStationName":"Kingsway, Covent Garden","startDate":1422129000,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40779844","duration":720,"bikeId":"9603","endDate":1422130020,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1422129300,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40779851","duration":1080,"bikeId":"2449","endDate":1422130440,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1422129360,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40779982","duration":720,"bikeId":"8067","endDate":1422130920,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1422130200,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"40780099","duration":360,"bikeId":"5932","endDate":1422131220,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1422130860,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40780183","duration":240,"bikeId":"10962","endDate":1422131640,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1422131400,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40780177","duration":780,"bikeId":"7454","endDate":1422132120,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1422131340,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"40780309","duration":180,"bikeId":"3861","endDate":1422132540,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1422132360,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"40780320","duration":600,"bikeId":"1509","endDate":1422133020,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1422132420,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40780427","duration":360,"bikeId":"6932","endDate":1422133560,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1422133200,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40780270","duration":1920,"bikeId":"4043","endDate":1422133980,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1422132060,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40780482","duration":900,"bikeId":"10768","endDate":1422134460,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1422133560,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"40780501","duration":1320,"bikeId":"4905","endDate":1422135120,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1422133800,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40780591","duration":1200,"bikeId":"2176","endDate":1422135720,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1422134520,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40780409","duration":3240,"bikeId":"514","endDate":1422136320,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1422133080,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40780780","duration":600,"bikeId":"12171","endDate":1422136860,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1422136260,"startStationId":"681","startStationName":"Bishop's Avenue, Fulham"}, +{"_id":"40780800","duration":1020,"bikeId":"9431","endDate":1422137460,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1422136440,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40780944","duration":480,"bikeId":"11554","endDate":1422138120,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1422137640,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40780994","duration":660,"bikeId":"3160","endDate":1422138660,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1422138000,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40781095","duration":360,"bikeId":"8319","endDate":1422139200,"endStationId":"208","endStationName":"Mallory Street, Marylebone","startDate":1422138840,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40781161","duration":300,"bikeId":"3182","endDate":1422139740,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1422139440,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40781235","duration":240,"bikeId":"7324","endDate":1422140340,"endStationId":"623","endStationName":"Nantes Close, Wandsworth","startDate":1422140100,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"40781152","duration":1620,"bikeId":"99","endDate":1422140940,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422139320,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40781226","duration":1620,"bikeId":"6756","endDate":1422141600,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1422139980,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40781379","duration":720,"bikeId":"1069","endDate":1422142260,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1422141540,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40781467","duration":660,"bikeId":"8167","endDate":1422142920,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1422142260,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40781510","duration":900,"bikeId":"435","endDate":1422143520,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1422142620,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40781389","duration":2160,"bikeId":"4323","endDate":1422143880,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1422141720,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40781685","duration":420,"bikeId":"3827","endDate":1422144540,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1422144120,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40781732","duration":900,"bikeId":"3216","endDate":1422145380,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1422144480,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"40781772","duration":1020,"bikeId":"6891","endDate":1422145920,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1422144900,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40781916","duration":420,"bikeId":"11379","endDate":1422146640,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1422146220,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"40781983","duration":420,"bikeId":"6347","endDate":1422147300,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1422146880,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40782014","duration":840,"bikeId":"9996","endDate":1422148140,"endStationId":"518","endStationName":"Antill Road, Mile End","startDate":1422147300,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40782101","duration":480,"bikeId":"11327","endDate":1422148980,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1422148500,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40782162","duration":600,"bikeId":"12627","endDate":1422149820,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1422149220,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"40782186","duration":1380,"bikeId":"8982","endDate":1422150780,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1422149400,"startStationId":"765","startStationName":"Ranelagh Gardens, Fulham"}, +{"_id":"40782311","duration":720,"bikeId":"10229","endDate":1422151740,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1422151020,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40782286","duration":1620,"bikeId":"11429","endDate":1422152340,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422150720,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40782409","duration":780,"bikeId":"7956","endDate":1422152940,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422152160,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40782403","duration":1920,"bikeId":"12171","endDate":1422154020,"endStationId":"724","endStationName":"Alma Road, Wandsworth","startDate":1422152100,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"40782581","duration":300,"bikeId":"6103","endDate":1422155340,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1422155040,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"40782637","duration":660,"bikeId":"6635","endDate":1422156540,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1422155880,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40782710","duration":720,"bikeId":"422","endDate":1422158160,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1422157440,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40782791","duration":420,"bikeId":"4687","endDate":1422160020,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1422159600,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"40782853","duration":720,"bikeId":"405","endDate":1422162180,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1422161460,"startStationId":"577","startStationName":"Globe Town Market, Bethnal Green"}, +{"_id":"40782912","duration":600,"bikeId":"4352","endDate":1422164880,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1422164280,"startStationId":"608","startStationName":"Colet Gardens, Hammersmith"}, +{"_id":"40782981","duration":900,"bikeId":"7510","endDate":1422167820,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1422166920,"startStationId":"505","startStationName":"Ackroyd Drive, Bow"}, +{"_id":"40783015","duration":2160,"bikeId":"10138","endDate":1422170520,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1422168360,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40783115","duration":600,"bikeId":"2858","endDate":1422172740,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1422172140,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"40783194","duration":720,"bikeId":"9680","endDate":1422174540,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1422173820,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40783289","duration":360,"bikeId":"5886","endDate":1422175740,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1422175380,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"40783347","duration":540,"bikeId":"3706","endDate":1422176580,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422176040,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"40783376","duration":1020,"bikeId":"5502","endDate":1422177300,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1422176280,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40783508","duration":540,"bikeId":"12742","endDate":1422177900,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1422177360,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"40783396","duration":1920,"bikeId":"7604","endDate":1422178380,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1422176460,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40783432","duration":2040,"bikeId":"8394","endDate":1422178920,"endStationId":"7","endStationName":"Charlbert Street, St. John's Wood","startDate":1422176880,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"40783590","duration":1380,"bikeId":"11252","endDate":1422179340,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422177960,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40783662","duration":1320,"bikeId":"11978","endDate":1422179760,"endStationId":"692","endStationName":"Cadogan Close, Victoria Park","startDate":1422178440,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40783908","duration":420,"bikeId":"8725","endDate":1422180120,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1422179700,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40783972","duration":480,"bikeId":"11153","endDate":1422180480,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1422180000,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40784026","duration":600,"bikeId":"7916","endDate":1422180900,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1422180300,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40784152","duration":480,"bikeId":"6178","endDate":1422181320,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1422180840,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40784103","duration":960,"bikeId":"11343","endDate":1422181560,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422180600,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40784310","duration":480,"bikeId":"3333","endDate":1422181980,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1422181500,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40784163","duration":1320,"bikeId":"2246","endDate":1422182220,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422180900,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"40784199","duration":1560,"bikeId":"6019","endDate":1422182580,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1422181020,"startStationId":"623","startStationName":"Nantes Close, Wandsworth"}, +{"_id":"40784392","duration":1020,"bikeId":"12448","endDate":1422182820,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1422181800,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"40784455","duration":1020,"bikeId":"305","endDate":1422183060,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1422182040,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40784698","duration":360,"bikeId":"3963","endDate":1422183300,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1422182940,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"40784394","duration":1860,"bikeId":"4516","endDate":1422183660,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422181800,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40784720","duration":900,"bikeId":"7945","endDate":1422183900,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1422183000,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40784923","duration":480,"bikeId":"10307","endDate":1422184140,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1422183660,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40784779","duration":1200,"bikeId":"10558","endDate":1422184380,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1422183180,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40785132","duration":240,"bikeId":"11490","endDate":1422184620,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1422184380,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40784817","duration":1500,"bikeId":"9368","endDate":1422184860,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1422183360,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40784413","duration":3240,"bikeId":"9721","endDate":1422185100,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1422181860,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"40785233","duration":600,"bikeId":"3062","endDate":1422185340,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1422184740,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40784166","duration":4680,"bikeId":"3210","endDate":1422185580,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1422180900,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40784414","duration":3900,"bikeId":"1678","endDate":1422185760,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1422181860,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40785398","duration":900,"bikeId":"4315","endDate":1422186060,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1422185160,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40785679","duration":360,"bikeId":"8407","endDate":1422186300,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1422185940,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40785509","duration":960,"bikeId":"9924","endDate":1422186480,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1422185520,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"40785598","duration":1020,"bikeId":"12094","endDate":1422186720,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1422185700,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40785621","duration":1140,"bikeId":"8793","endDate":1422186900,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1422185760,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"40785739","duration":960,"bikeId":"2279","endDate":1422187080,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1422186120,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40785800","duration":1020,"bikeId":"3071","endDate":1422187260,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1422186240,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40786339","duration":0,"bikeId":"3127","endDate":1422187500,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1422187500,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40785314","duration":2640,"bikeId":"12640","endDate":1422187620,"endStationId":"222","endStationName":"Knightsbridge, Hyde Park","startDate":1422184980,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"40786106","duration":840,"bikeId":"12188","endDate":1422187800,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1422186960,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40784930","duration":4260,"bikeId":"12503","endDate":1422187980,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1422183720,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40785441","duration":2940,"bikeId":"10433","endDate":1422188220,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1422185280,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40786380","duration":720,"bikeId":"7036","endDate":1422188340,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1422187620,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40786645","duration":300,"bikeId":"8009","endDate":1422188520,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1422188220,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40786239","duration":1380,"bikeId":"9188","endDate":1422188640,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422187260,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"40786358","duration":1260,"bikeId":"9920","endDate":1422188820,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1422187560,"startStationId":"777","startStationName":"Limburg Road, Clapham Common"}, +{"_id":"40786774","duration":480,"bikeId":"9086","endDate":1422189000,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1422188520,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"40786373","duration":1500,"bikeId":"6641","endDate":1422189120,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422187620,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40786475","duration":1500,"bikeId":"12964","endDate":1422189300,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1422187800,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40786699","duration":1140,"bikeId":"13040","endDate":1422189480,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1422188340,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40786983","duration":660,"bikeId":"7013","endDate":1422189660,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422189000,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40787106","duration":600,"bikeId":"600","endDate":1422189840,"endStationId":"60","endStationName":"Lisson Grove, St. John's Wood","startDate":1422189240,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40786996","duration":900,"bikeId":"2746","endDate":1422189960,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1422189060,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40786897","duration":1320,"bikeId":"11988","endDate":1422190140,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1422188820,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40787167","duration":840,"bikeId":"12969","endDate":1422190260,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1422189420,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"40787338","duration":660,"bikeId":"8960","endDate":1422190440,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1422189780,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40787392","duration":660,"bikeId":"1629","endDate":1422190500,"endStationId":"435","endStationName":"Kennington Station, Kennington","startDate":1422189840,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40787555","duration":420,"bikeId":"9357","endDate":1422190680,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1422190260,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40787364","duration":1020,"bikeId":"702","endDate":1422190800,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1422189780,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"40787746","duration":300,"bikeId":"7732","endDate":1422190920,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1422190620,"startStationId":"757","startStationName":"Harcourt Terrace, West Brompton"}, +{"_id":"40786974","duration":2040,"bikeId":"7136","endDate":1422191040,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422189000,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40787812","duration":420,"bikeId":"1117","endDate":1422191220,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422190800,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40787387","duration":1500,"bikeId":"846","endDate":1422191340,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1422189840,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"40785576","duration":5880,"bikeId":"460","endDate":1422191520,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1422185640,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40788219","duration":120,"bikeId":"3362","endDate":1422191700,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1422191580,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40788026","duration":600,"bikeId":"7856","endDate":1422191880,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1422191280,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"40788080","duration":660,"bikeId":"9468","endDate":1422192000,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1422191340,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"40788177","duration":660,"bikeId":"10830","endDate":1422192180,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422191520,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40788252","duration":720,"bikeId":"11991","endDate":1422192300,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1422191580,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40788187","duration":900,"bikeId":"6645","endDate":1422192420,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1422191520,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"40788247","duration":960,"bikeId":"12582","endDate":1422192540,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422191580,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40786524","duration":4680,"bikeId":"9725","endDate":1422192660,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1422187980,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40785917","duration":6240,"bikeId":"909","endDate":1422192780,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1422186540,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"40788384","duration":1020,"bikeId":"9213","endDate":1422192900,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1422191880,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40788544","duration":900,"bikeId":"1032","endDate":1422193080,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1422192180,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40788869","duration":420,"bikeId":"4367","endDate":1422193200,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1422192780,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40788549","duration":1140,"bikeId":"4789","endDate":1422193320,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1422192180,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40789001","duration":480,"bikeId":"3648","endDate":1422193500,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1422193020,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40788493","duration":1560,"bikeId":"7640","endDate":1422193620,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1422192060,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40789083","duration":540,"bikeId":"4095","endDate":1422193740,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1422193200,"startStationId":"291","startStationName":"Claverton Street, Pimlico"}, +{"_id":"40789184","duration":480,"bikeId":"4323","endDate":1422193860,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1422193380,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"40789336","duration":300,"bikeId":"12418","endDate":1422194040,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1422193740,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"40789072","duration":960,"bikeId":"8918","endDate":1422194160,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1422193200,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"40789325","duration":600,"bikeId":"11113","endDate":1422194280,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422193680,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40788879","duration":1620,"bikeId":"11530","endDate":1422194460,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422192840,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40788985","duration":1560,"bikeId":"7407","endDate":1422194580,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422193020,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40788584","duration":2460,"bikeId":"4778","endDate":1422194700,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1422192240,"startStationId":"222","startStationName":"Knightsbridge, Hyde Park"}, +{"_id":"40789579","duration":540,"bikeId":"11533","endDate":1422194820,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1422194280,"startStationId":"469","startStationName":"Lindfield Street, Poplar"}, +{"_id":"40789465","duration":1020,"bikeId":"10922","endDate":1422195000,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1422193980,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40789700","duration":600,"bikeId":"2438","endDate":1422195120,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1422194520,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"40789617","duration":900,"bikeId":"638","endDate":1422195240,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1422194340,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"40789546","duration":1140,"bikeId":"3828","endDate":1422195360,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1422194220,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40789994","duration":420,"bikeId":"11011","endDate":1422195540,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1422195120,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40789706","duration":1140,"bikeId":"6831","endDate":1422195660,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1422194520,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40790168","duration":300,"bikeId":"6827","endDate":1422195840,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1422195540,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40790007","duration":840,"bikeId":"3375","endDate":1422196020,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1422195180,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40789815","duration":1380,"bikeId":"4886","endDate":1422196140,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1422194760,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40789880","duration":1440,"bikeId":"8622","endDate":1422196320,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1422194880,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"40790240","duration":780,"bikeId":"4848","endDate":1422196500,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1422195720,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40789326","duration":3000,"bikeId":"9369","endDate":1422196680,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1422193680,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"40790125","duration":1380,"bikeId":"12769","endDate":1422196860,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1422195480,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40790590","duration":540,"bikeId":"11446","endDate":1422196980,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1422196440,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40790850","duration":180,"bikeId":"7994","endDate":1422197160,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1422196980,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40790677","duration":720,"bikeId":"9869","endDate":1422197280,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1422196560,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40790655","duration":840,"bikeId":"4664","endDate":1422197400,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1422196560,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40790637","duration":1020,"bikeId":"11817","endDate":1422197520,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1422196500,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40790523","duration":1380,"bikeId":"9701","endDate":1422197700,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422196320,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"40790679","duration":1260,"bikeId":"11977","endDate":1422197820,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1422196560,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40790920","duration":900,"bikeId":"7098","endDate":1422198000,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1422197100,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40789676","duration":3660,"bikeId":"708","endDate":1422198120,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1422194460,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"40791110","duration":780,"bikeId":"9436","endDate":1422198300,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1422197520,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40791030","duration":1080,"bikeId":"2106","endDate":1422198420,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1422197340,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40790266","duration":2820,"bikeId":"11496","endDate":1422198600,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422195780,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40791085","duration":1320,"bikeId":"12479","endDate":1422198780,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1422197460,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"40790640","duration":2400,"bikeId":"3113","endDate":1422198900,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1422196500,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40790264","duration":3300,"bikeId":"11416","endDate":1422199080,"endStationId":"674","endStationName":"Carnegie Street, King's Cross","startDate":1422195780,"startStationId":"439","startStationName":"Killick Street, Kings Cross"}, +{"_id":"40789476","duration":5160,"bikeId":"5217","endDate":1422199200,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1422194040,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40791834","duration":300,"bikeId":"6499","endDate":1422199380,"endStationId":"205","endStationName":"New Road 2, Whitechapel","startDate":1422199080,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40791563","duration":1020,"bikeId":"8959","endDate":1422199500,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422198480,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"40792000","duration":120,"bikeId":"7324","endDate":1422199680,"endStationId":"648","endStationName":"Peterborough Road, Sands End","startDate":1422199560,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40791630","duration":1200,"bikeId":"12669","endDate":1422199800,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1422198600,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40791703","duration":1200,"bikeId":"12913","endDate":1422199980,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1422198780,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40791523","duration":1680,"bikeId":"9626","endDate":1422200100,"endStationId":"612","endStationName":"Wandsworth Rd, Isley Court, Wandsworth Road","startDate":1422198420,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40774897","duration":85860,"bikeId":"685","endDate":1422200280,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1422114420,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40791282","duration":2520,"bikeId":"6158","endDate":1422200460,"endStationId":"93","endStationName":"Cloudesley Road, Angel","startDate":1422197940,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40792028","duration":1020,"bikeId":"7163","endDate":1422200640,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1422199620,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40792277","duration":540,"bikeId":"12366","endDate":1422200760,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1422200220,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40792212","duration":840,"bikeId":"12835","endDate":1422200880,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1422200040,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40792406","duration":480,"bikeId":"8891","endDate":1422201000,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1422200520,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40791826","duration":2100,"bikeId":"9030","endDate":1422201180,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1422199080,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40791527","duration":2880,"bikeId":"1374","endDate":1422201300,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422198420,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"40792756","duration":240,"bikeId":"11189","endDate":1422201480,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1422201240,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40792428","duration":1080,"bikeId":"1564","endDate":1422201660,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1422200580,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"40792486","duration":1140,"bikeId":"2815","endDate":1422201840,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1422200700,"startStationId":"146","startStationName":"Vauxhall Bridge , Pimlico"}, +{"_id":"40792708","duration":900,"bikeId":"10605","endDate":1422202020,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1422201120,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40793037","duration":240,"bikeId":"9057","endDate":1422202200,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1422201960,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40792744","duration":1080,"bikeId":"1958","endDate":1422202320,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1422201240,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"40792599","duration":1500,"bikeId":"6004","endDate":1422202440,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1422200940,"startStationId":"776","startStationName":"Abyssinia Close, Clapham Junction"}, +{"_id":"40793030","duration":660,"bikeId":"4127","endDate":1422202620,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422201960,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40793171","duration":480,"bikeId":"11759","endDate":1422202800,"endStationId":"247","endStationName":"St. John's Wood Church, Regent's Park","startDate":1422202320,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40793375","duration":300,"bikeId":"12308","endDate":1422202980,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1422202680,"startStationId":"139","startStationName":"Lambeth Road, Vauxhall"}, +{"_id":"40793499","duration":120,"bikeId":"1858","endDate":1422203160,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1422203040,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40793390","duration":540,"bikeId":"4679","endDate":1422203280,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422202740,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40792440","duration":2820,"bikeId":"5302","endDate":1422203460,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422200640,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40793172","duration":1260,"bikeId":"5495","endDate":1422203580,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1422202320,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40793648","duration":300,"bikeId":"2738","endDate":1422203700,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1422203400,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"40791873","duration":4680,"bikeId":"8547","endDate":1422203880,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1422199200,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40793705","duration":480,"bikeId":"7074","endDate":1422204060,"endStationId":"759","endStationName":"Broadley Terrace, Marylebone","startDate":1422203580,"startStationId":"759","startStationName":"Broadley Terrace, Marylebone"}, +{"_id":"40793764","duration":480,"bikeId":"11377","endDate":1422204240,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1422203760,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40793686","duration":900,"bikeId":"5824","endDate":1422204420,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1422203520,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40793330","duration":1920,"bikeId":"4472","endDate":1422204540,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422202620,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40794063","duration":180,"bikeId":"11550","endDate":1422204780,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1422204600,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40793211","duration":2520,"bikeId":"1262","endDate":1422204900,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1422202380,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"40794144","duration":240,"bikeId":"6542","endDate":1422205080,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1422204840,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40793958","duration":900,"bikeId":"11189","endDate":1422205200,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1422204300,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40793965","duration":1080,"bikeId":"1056","endDate":1422205380,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1422204300,"startStationId":"736","startStationName":"Queensdale Road, Shepherd's Bush"}, +{"_id":"40794218","duration":480,"bikeId":"2519","endDate":1422205560,"endStationId":"297","endStationName":"Geraldine Street, Elephant & Castle","startDate":1422205080,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40794189","duration":780,"bikeId":"10341","endDate":1422205800,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1422205020,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"40794278","duration":720,"bikeId":"3495","endDate":1422205980,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1422205260,"startStationId":"352","startStationName":"Vauxhall Street, Vauxhall"}, +{"_id":"40793871","duration":2220,"bikeId":"11700","endDate":1422206220,"endStationId":"247","endStationName":"St. John's Wood Church, Regent's Park","startDate":1422204000,"startStationId":"247","startStationName":"St. John's Wood Church, Regent's Park"}, +{"_id":"40794134","duration":1620,"bikeId":"99","endDate":1422206460,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1422204840,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40794558","duration":420,"bikeId":"4708","endDate":1422206700,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1422206280,"startStationId":"771","startStationName":"Rifle Place, Avondale"}, +{"_id":"40794619","duration":360,"bikeId":"12203","endDate":1422206880,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1422206520,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40793559","duration":3960,"bikeId":"3444","endDate":1422207120,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1422203160,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"40794496","duration":1440,"bikeId":"7740","endDate":1422207420,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1422205980,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40794577","duration":1320,"bikeId":"6027","endDate":1422207660,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1422206340,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40794781","duration":720,"bikeId":"2975","endDate":1422207900,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1422207180,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40794758","duration":1080,"bikeId":"7729","endDate":1422208140,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1422207060,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40794485","duration":2460,"bikeId":"6266","endDate":1422208440,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1422205980,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40794880","duration":1080,"bikeId":"12684","endDate":1422208680,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1422207600,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40795174","duration":180,"bikeId":"8255","endDate":1422208920,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1422208740,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40795203","duration":360,"bikeId":"9969","endDate":1422209220,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1422208860,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40789944","duration":14400,"bikeId":"7641","endDate":1422209460,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1422195060,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40795208","duration":900,"bikeId":"12658","endDate":1422209760,"endStationId":"365","endStationName":"City Road, Angel","startDate":1422208860,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40795353","duration":600,"bikeId":"12697","endDate":1422210060,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1422209460,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40795456","duration":420,"bikeId":"4569","endDate":1422210240,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1422209820,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40795480","duration":660,"bikeId":"10620","endDate":1422210540,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1422209880,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40795662","duration":300,"bikeId":"5948","endDate":1422210840,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1422210540,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40795738","duration":240,"bikeId":"2587","endDate":1422211140,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1422210900,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"40795124","duration":2760,"bikeId":"8440","endDate":1422211320,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1422208560,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40795654","duration":1020,"bikeId":"8812","endDate":1422211560,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1422210540,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"40795856","duration":420,"bikeId":"12625","endDate":1422211800,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1422211380,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"40795906","duration":540,"bikeId":"5278","endDate":1422212100,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1422211560,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40796051","duration":60,"bikeId":"10218","endDate":1422212460,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1422212400,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"40795736","duration":1800,"bikeId":"4440","endDate":1422212700,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1422210900,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"40796087","duration":420,"bikeId":"6904","endDate":1422213000,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1422212580,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"40796069","duration":900,"bikeId":"12749","endDate":1422213360,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1422212460,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40796153","duration":900,"bikeId":"3644","endDate":1422213780,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1422212880,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40796225","duration":840,"bikeId":"7740","endDate":1422214140,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422213300,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40796352","duration":420,"bikeId":"8681","endDate":1422214500,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1422214080,"startStationId":"725","startStationName":"Thessaly Road North, Nine Elms"}, +{"_id":"40796209","duration":1800,"bikeId":"9812","endDate":1422214980,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1422213180,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40796461","duration":480,"bikeId":"7476","endDate":1422215220,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1422214740,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40796490","duration":780,"bikeId":"151","endDate":1422215700,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1422214920,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40796553","duration":780,"bikeId":"6016","endDate":1422216180,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1422215400,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40796715","duration":120,"bikeId":"10719","endDate":1422216600,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1422216480,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"40796740","duration":540,"bikeId":"13034","endDate":1422217080,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1422216540,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40796802","duration":600,"bikeId":"5011","endDate":1422217560,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1422216960,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40796809","duration":900,"bikeId":"10030","endDate":1422217980,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422217080,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40796940","duration":480,"bikeId":"4903","endDate":1422218520,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1422218040,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"40796934","duration":1080,"bikeId":"6348","endDate":1422219120,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422218040,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40796666","duration":3540,"bikeId":"2430","endDate":1422219600,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1422216060,"startStationId":"384","startStationName":"Marloes Road, Kensington"}, +{"_id":"40797125","duration":420,"bikeId":"3646","endDate":1422220380,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422219960,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40797196","duration":360,"bikeId":"6711","endDate":1422221040,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1422220680,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"40796784","duration":4920,"bikeId":"12957","endDate":1422221760,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422216840,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40797345","duration":420,"bikeId":"11955","endDate":1422222420,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1422222000,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40797363","duration":1020,"bikeId":"1243","endDate":1422223200,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1422222180,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40797464","duration":600,"bikeId":"3229","endDate":1422223860,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422223260,"startStationId":"518","startStationName":"Antill Road, Mile End"}, +{"_id":"40797558","duration":360,"bikeId":"345","endDate":1422224520,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1422224160,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40797592","duration":720,"bikeId":"7942","endDate":1422225120,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1422224400,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40797304","duration":4140,"bikeId":"10387","endDate":1422225900,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1422221760,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40797773","duration":180,"bikeId":"7554","endDate":1422226860,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1422226680,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40797756","duration":1020,"bikeId":"12963","endDate":1422227460,"endStationId":"617","endStationName":"Elysium Place, Fulham","startDate":1422226440,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40797868","duration":480,"bikeId":"317","endDate":1422228420,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422227940,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40797929","duration":540,"bikeId":"3236","endDate":1422229680,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1422229140,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40798017","duration":300,"bikeId":"7352","endDate":1422230820,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1422230520,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40798062","duration":720,"bikeId":"965","endDate":1422232320,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1422231600,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"40798048","duration":2880,"bikeId":"10079","endDate":1422234120,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1422231240,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40798207","duration":420,"bikeId":"6328","endDate":1422237420,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1422237000,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"40798271","duration":720,"bikeId":"2457","endDate":1422243000,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422242280,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"40798340","duration":720,"bikeId":"11449","endDate":1422248940,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1422248220,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40798384","duration":1080,"bikeId":"4840","endDate":1422251760,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1422250680,"startStationId":"59","startStationName":"Rodney Street, Angel"}, +{"_id":"40798515","duration":180,"bikeId":"12463","endDate":1422253380,"endStationId":"759","endStationName":"Broadley Terrace, Marylebone","startDate":1422253200,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40798580","duration":360,"bikeId":"8148","endDate":1422254160,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422253800,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"40798585","duration":780,"bikeId":"12824","endDate":1422254640,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422253860,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40798651","duration":780,"bikeId":"12390","endDate":1422255120,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422254340,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40798780","duration":360,"bikeId":"8445","endDate":1422255360,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1422255000,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40798858","duration":360,"bikeId":"365","endDate":1422255720,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1422255360,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40798974","duration":240,"bikeId":"2326","endDate":1422256020,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1422255780,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40799018","duration":300,"bikeId":"11356","endDate":1422256260,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422255960,"startStationId":"117","startStationName":"Lollard Street, Vauxhall"}, +{"_id":"40799095","duration":360,"bikeId":"5487","endDate":1422256620,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1422256260,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40799064","duration":720,"bikeId":"7926","endDate":1422256860,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1422256140,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40799254","duration":360,"bikeId":"7092","endDate":1422257100,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1422256740,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"40799369","duration":240,"bikeId":"12226","endDate":1422257280,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1422257040,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40799246","duration":780,"bikeId":"2197","endDate":1422257460,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1422256680,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"40799310","duration":780,"bikeId":"4649","endDate":1422257640,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1422256860,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40799416","duration":660,"bikeId":"11135","endDate":1422257820,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1422257160,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40799669","duration":300,"bikeId":"5685","endDate":1422258000,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1422257700,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40799264","duration":1440,"bikeId":"2382","endDate":1422258180,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1422256740,"startStationId":"734","startStationName":"Plough Terrace, Clapham Junction"}, +{"_id":"40799876","duration":240,"bikeId":"5726","endDate":1422258300,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422258060,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"40799465","duration":1140,"bikeId":"9411","endDate":1422258420,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422257280,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40800023","duration":240,"bikeId":"9736","endDate":1422258540,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1422258300,"startStationId":"681","startStationName":"Bishop's Avenue, Fulham"}, +{"_id":"40799955","duration":480,"bikeId":"1048","endDate":1422258660,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422258180,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"40800085","duration":480,"bikeId":"7226","endDate":1422258840,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1422258360,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40799991","duration":660,"bikeId":"4613","endDate":1422258900,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1422258240,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"40799507","duration":1620,"bikeId":"10083","endDate":1422259020,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1422257400,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"40799965","duration":900,"bikeId":"10730","endDate":1422259140,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422258240,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40800088","duration":840,"bikeId":"3205","endDate":1422259260,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422258420,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40800330","duration":660,"bikeId":"8885","endDate":1422259380,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422258720,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"40800495","duration":420,"bikeId":"3134","endDate":1422259440,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422259020,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40800037","duration":1260,"bikeId":"11168","endDate":1422259560,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422258300,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"40800756","duration":240,"bikeId":"6631","endDate":1422259620,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422259380,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40800367","duration":900,"bikeId":"11012","endDate":1422259740,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1422258840,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"40800742","duration":540,"bikeId":"8067","endDate":1422259860,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1422259320,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40800570","duration":780,"bikeId":"3981","endDate":1422259920,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1422259140,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40800738","duration":720,"bikeId":"6272","endDate":1422260040,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1422259320,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40800967","duration":480,"bikeId":"5342","endDate":1422260100,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422259620,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40800144","duration":1680,"bikeId":"4360","endDate":1422260160,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422258480,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"40800691","duration":1020,"bikeId":"12198","endDate":1422260280,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422259260,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40800873","duration":840,"bikeId":"9274","endDate":1422260340,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422259500,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40800875","duration":900,"bikeId":"9296","endDate":1422260400,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1422259500,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40801257","duration":600,"bikeId":"2040","endDate":1422260520,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422259920,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40801199","duration":720,"bikeId":"7014","endDate":1422260580,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1422259860,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40800338","duration":1860,"bikeId":"9870","endDate":1422260640,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1422258780,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40801188","duration":900,"bikeId":"7285","endDate":1422260760,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1422259860,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40801347","duration":780,"bikeId":"7974","endDate":1422260820,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422260040,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40801761","duration":420,"bikeId":"10485","endDate":1422260880,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1422260460,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40801632","duration":600,"bikeId":"3876","endDate":1422260940,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422260340,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40801886","duration":480,"bikeId":"9341","endDate":1422261060,"endStationId":"222","endStationName":"Knightsbridge, Hyde Park","startDate":1422260580,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40801707","duration":720,"bikeId":"3835","endDate":1422261120,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1422260400,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40801589","duration":900,"bikeId":"1001","endDate":1422261180,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1422260280,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"40801866","duration":660,"bikeId":"11378","endDate":1422261240,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1422260580,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40802125","duration":540,"bikeId":"2125","endDate":1422261360,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1422260820,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40802066","duration":660,"bikeId":"12650","endDate":1422261420,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1422260760,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40801597","duration":1200,"bikeId":"262","endDate":1422261480,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422260280,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"40801970","duration":840,"bikeId":"2116","endDate":1422261540,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1422260700,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40802107","duration":780,"bikeId":"3705","endDate":1422261600,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1422260820,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"40802289","duration":660,"bikeId":"12685","endDate":1422261660,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1422261000,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40802480","duration":600,"bikeId":"7901","endDate":1422261720,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422261120,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40802424","duration":720,"bikeId":"1356","endDate":1422261840,"endStationId":"599","endStationName":"Manbre Road, Hammersmith","startDate":1422261120,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"40802843","duration":480,"bikeId":"5752","endDate":1422261900,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1422261420,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40802621","duration":660,"bikeId":"2056","endDate":1422261900,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422261240,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40802358","duration":900,"bikeId":"12355","endDate":1422261960,"endStationId":"172","endStationName":"Sumner Place, South Kensington","startDate":1422261060,"startStationId":"609","startStationName":"Sugden Road, Battersea"}, +{"_id":"40802620","duration":780,"bikeId":"6490","endDate":1422262020,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1422261240,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40803165","duration":360,"bikeId":"10976","endDate":1422262080,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1422261720,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"40802330","duration":1080,"bikeId":"2740","endDate":1422262140,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1422261060,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40803062","duration":600,"bikeId":"5333","endDate":1422262200,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1422261600,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40803317","duration":480,"bikeId":"750","endDate":1422262320,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1422261840,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40803428","duration":420,"bikeId":"12382","endDate":1422262320,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422261900,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40803421","duration":480,"bikeId":"6978","endDate":1422262380,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1422261900,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40803106","duration":780,"bikeId":"12571","endDate":1422262440,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1422261660,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"40803526","duration":480,"bikeId":"4869","endDate":1422262500,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1422262020,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40802990","duration":1020,"bikeId":"9475","endDate":1422262560,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422261540,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40803598","duration":480,"bikeId":"12665","endDate":1422262560,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1422262080,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40802382","duration":1560,"bikeId":"1157","endDate":1422262620,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422261060,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40803746","duration":480,"bikeId":"1100","endDate":1422262680,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1422262200,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40803812","duration":480,"bikeId":"4857","endDate":1422262740,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1422262260,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40804186","duration":240,"bikeId":"7134","endDate":1422262800,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1422262560,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40803971","duration":480,"bikeId":"2868","endDate":1422262860,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1422262380,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40804168","duration":360,"bikeId":"8187","endDate":1422262920,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422262560,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40804131","duration":360,"bikeId":"9180","endDate":1422262920,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1422262560,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40802903","duration":1500,"bikeId":"12739","endDate":1422262980,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1422261480,"startStationId":"474","startStationName":"Castalia Square, Cubitt Town"}, +{"_id":"40803697","duration":900,"bikeId":"5638","endDate":1422263040,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422262140,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"40803870","duration":780,"bikeId":"5210","endDate":1422263100,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422262320,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40803645","duration":1020,"bikeId":"3141","endDate":1422263160,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1422262140,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"40804602","duration":240,"bikeId":"12626","endDate":1422263280,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1422263040,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"40804481","duration":360,"bikeId":"9856","endDate":1422263280,"endStationId":"365","endStationName":"City Road, Angel","startDate":1422262920,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40804742","duration":120,"bikeId":"12152","endDate":1422263340,"endStationId":"59","endStationName":"Rodney Street, Angel","startDate":1422263220,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"40803071","duration":1740,"bikeId":"1498","endDate":1422263400,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1422261660,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40803696","duration":1260,"bikeId":"9283","endDate":1422263460,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422262200,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40803362","duration":1680,"bikeId":"5499","endDate":1422263520,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1422261840,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"40804957","duration":180,"bikeId":"4416","endDate":1422263640,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1422263460,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40803716","duration":1500,"bikeId":"2854","endDate":1422263700,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1422262200,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40804701","duration":660,"bikeId":"5776","endDate":1422263820,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1422263160,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40804992","duration":360,"bikeId":"7856","endDate":1422263880,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1422263520,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40805029","duration":360,"bikeId":"4453","endDate":1422263940,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1422263580,"startStationId":"725","startStationName":"Thessaly Road North, Nine Elms"}, +{"_id":"40804362","duration":1260,"bikeId":"8526","endDate":1422264060,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1422262800,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"40804693","duration":960,"bikeId":"1072","endDate":1422264120,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1422263160,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"40805300","duration":240,"bikeId":"10665","endDate":1422264240,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1422264000,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40804926","duration":840,"bikeId":"4548","endDate":1422264300,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1422263460,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40804735","duration":1140,"bikeId":"3549","endDate":1422264360,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1422263220,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40805151","duration":720,"bikeId":"3881","endDate":1422264480,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1422263760,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"40805104","duration":900,"bikeId":"2308","endDate":1422264540,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422263640,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40805303","duration":660,"bikeId":"764","endDate":1422264660,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422264000,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40805323","duration":720,"bikeId":"2432","endDate":1422264720,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1422264000,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40805477","duration":540,"bikeId":"831","endDate":1422264840,"endStationId":"276","endStationName":"Lower Thames Street, Monument","startDate":1422264300,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"40805649","duration":360,"bikeId":"10587","endDate":1422264960,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1422264600,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40805501","duration":720,"bikeId":"5554","endDate":1422265080,"endStationId":"566","endStationName":"Westfield Ariel Way, White City","startDate":1422264360,"startStationId":"599","startStationName":"Manbre Road, Hammersmith"}, +{"_id":"40805448","duration":960,"bikeId":"7528","endDate":1422265200,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422264240,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40805833","duration":360,"bikeId":"7352","endDate":1422265380,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1422265020,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40805828","duration":480,"bikeId":"8547","endDate":1422265500,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422265020,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40805800","duration":720,"bikeId":"7368","endDate":1422265680,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1422264960,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"40805860","duration":780,"bikeId":"5838","endDate":1422265860,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422265080,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"40805717","duration":1260,"bikeId":"5803","endDate":1422266040,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1422264780,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40805821","duration":1140,"bikeId":"9921","endDate":1422266160,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1422265020,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40805557","duration":1920,"bikeId":"9461","endDate":1422266340,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1422264420,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40805906","duration":1260,"bikeId":"4678","endDate":1422266460,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1422265200,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"40806128","duration":900,"bikeId":"1845","endDate":1422266640,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422265740,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40806095","duration":1200,"bikeId":"994","endDate":1422266820,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422265620,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40806372","duration":360,"bikeId":"5155","endDate":1422267060,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1422266700,"startStationId":"355","startStationName":"Oval Way, Lambeth"}, +{"_id":"40806395","duration":600,"bikeId":"12553","endDate":1422267360,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422266760,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40805683","duration":3060,"bikeId":"8351","endDate":1422267720,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422264660,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40806551","duration":420,"bikeId":"7921","endDate":1422268080,"endStationId":"408","endStationName":"Paddington Green Police Station, Paddington","startDate":1422267660,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40806218","duration":2580,"bikeId":"6908","endDate":1422268560,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1422265980,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40806644","duration":720,"bikeId":"10661","endDate":1422269040,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422268320,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40806751","duration":480,"bikeId":"3815","endDate":1422269400,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1422268920,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"40806781","duration":720,"bikeId":"955","endDate":1422269820,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1422269100,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40806913","duration":420,"bikeId":"4247","endDate":1422270240,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422269820,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40806901","duration":780,"bikeId":"9540","endDate":1422270540,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1422269760,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40806754","duration":2040,"bikeId":"4678","endDate":1422271020,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422268980,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40807015","duration":1140,"bikeId":"4266","endDate":1422271440,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1422270300,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40807010","duration":1620,"bikeId":"9327","endDate":1422271860,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1422270240,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"40807232","duration":600,"bikeId":"10053","endDate":1422272280,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1422271680,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40807199","duration":1260,"bikeId":"2659","endDate":1422272700,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1422271440,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40807361","duration":660,"bikeId":"825","endDate":1422273060,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1422272400,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40807379","duration":840,"bikeId":"5282","endDate":1422273360,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1422272520,"startStationId":"696","startStationName":"Charing Cross Hospital, Hammersmith"}, +{"_id":"40807541","duration":420,"bikeId":"8857","endDate":1422273660,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1422273240,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40807127","duration":2940,"bikeId":"4928","endDate":1422273960,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1422271020,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"40807729","duration":300,"bikeId":"10498","endDate":1422274320,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1422274020,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40807827","duration":240,"bikeId":"9848","endDate":1422274680,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1422274440,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"40807471","duration":1980,"bikeId":"6790","endDate":1422274920,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422272940,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40807784","duration":960,"bikeId":"4685","endDate":1422275220,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1422274260,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"40807483","duration":2400,"bikeId":"495","endDate":1422275400,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1422273000,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40807798","duration":1380,"bikeId":"1349","endDate":1422275700,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1422274320,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40807905","duration":1320,"bikeId":"12602","endDate":1422276000,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1422274680,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40807406","duration":3600,"bikeId":"9680","endDate":1422276240,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1422272640,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40808050","duration":1080,"bikeId":"5365","endDate":1422276480,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1422275400,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40808326","duration":300,"bikeId":"2140","endDate":1422276720,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422276420,"startStationId":"250","startStationName":"Royal Avenue 1, Chelsea"}, +{"_id":"40808108","duration":1380,"bikeId":"10990","endDate":1422277020,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1422275640,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40808323","duration":840,"bikeId":"12169","endDate":1422277260,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1422276420,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40808359","duration":960,"bikeId":"1180","endDate":1422277560,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1422276600,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"40808595","duration":420,"bikeId":"2239","endDate":1422277800,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1422277380,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"40808242","duration":2040,"bikeId":"2035","endDate":1422278100,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1422276060,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40808734","duration":420,"bikeId":"1044","endDate":1422278400,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1422277980,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40808803","duration":420,"bikeId":"4465","endDate":1422278700,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1422278280,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40808882","duration":420,"bikeId":"5890","endDate":1422279000,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1422278580,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40808791","duration":960,"bikeId":"6178","endDate":1422279180,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1422278220,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40809072","duration":180,"bikeId":"11764","endDate":1422279480,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1422279300,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"40809044","duration":540,"bikeId":"7984","endDate":1422279780,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1422279240,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"40809030","duration":840,"bikeId":"7568","endDate":1422280020,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1422279180,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40808874","duration":1740,"bikeId":"8887","endDate":1422280260,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422278520,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40809279","duration":420,"bikeId":"5898","endDate":1422280500,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422280080,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40809404","duration":180,"bikeId":"422","endDate":1422280740,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422280560,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40809407","duration":420,"bikeId":"2480","endDate":1422280980,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1422280560,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"40809461","duration":420,"bikeId":"2457","endDate":1422281220,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1422280800,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40809354","duration":1200,"bikeId":"9257","endDate":1422281520,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1422280320,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40809504","duration":780,"bikeId":"102","endDate":1422281760,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422280980,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40808313","duration":5700,"bikeId":"4421","endDate":1422282060,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422276360,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40809375","duration":1920,"bikeId":"10752","endDate":1422282360,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1422280440,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40809840","duration":360,"bikeId":"5008","endDate":1422282720,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1422282360,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40809925","duration":300,"bikeId":"7515","endDate":1422283140,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1422282840,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40809924","duration":600,"bikeId":"10950","endDate":1422283380,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1422282780,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40809616","duration":2400,"bikeId":"12847","endDate":1422283740,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1422281340,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40810156","duration":180,"bikeId":"6211","endDate":1422283980,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1422283800,"startStationId":"172","startStationName":"Sumner Place, South Kensington"}, +{"_id":"40810175","duration":420,"bikeId":"10478","endDate":1422284280,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422283860,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40810223","duration":480,"bikeId":"11848","endDate":1422284520,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422284040,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"40810331","duration":360,"bikeId":"9310","endDate":1422284820,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1422284460,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40810310","duration":720,"bikeId":"7492","endDate":1422285120,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1422284400,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40810506","duration":300,"bikeId":"9798","endDate":1422285420,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1422285120,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40809200","duration":5820,"bikeId":"2492","endDate":1422285660,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422279840,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40810270","duration":1680,"bikeId":"1857","endDate":1422285900,"endStationId":"766","endStationName":"Ram Street, Wandsworth","startDate":1422284220,"startStationId":"714","startStationName":"Stewart's Road, Nine Elms"}, +{"_id":"40810652","duration":480,"bikeId":"12919","endDate":1422286200,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1422285720,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"40810656","duration":720,"bikeId":"9602","endDate":1422286440,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1422285720,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"40810749","duration":660,"bikeId":"8909","endDate":1422286740,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1422286080,"startStationId":"250","startStationName":"Royal Avenue 1, Chelsea"}, +{"_id":"40810911","duration":360,"bikeId":"4144","endDate":1422286980,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1422286620,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40810833","duration":780,"bikeId":"5797","endDate":1422287160,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1422286380,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"40810715","duration":1500,"bikeId":"4596","endDate":1422287400,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1422285900,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"40810865","duration":1140,"bikeId":"10696","endDate":1422287640,"endStationId":"713","endStationName":"Hawley Crescent, Camden Town","startDate":1422286500,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40810778","duration":1680,"bikeId":"8097","endDate":1422287880,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1422286200,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40810319","duration":3720,"bikeId":"7839","endDate":1422288120,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1422284400,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40810988","duration":1440,"bikeId":"11227","endDate":1422288360,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422286920,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40811276","duration":540,"bikeId":"1241","endDate":1422288600,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1422288060,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"40811227","duration":960,"bikeId":"11692","endDate":1422288840,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1422287880,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40811428","duration":540,"bikeId":"12954","endDate":1422289020,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422288480,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40811559","duration":360,"bikeId":"10152","endDate":1422289260,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422288900,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"40811560","duration":600,"bikeId":"7481","endDate":1422289500,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1422288900,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40811715","duration":300,"bikeId":"8704","endDate":1422289680,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422289380,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40811755","duration":360,"bikeId":"1902","endDate":1422289860,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1422289500,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40811920","duration":180,"bikeId":"8628","endDate":1422290100,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1422289920,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40811498","duration":1560,"bikeId":"9310","endDate":1422290280,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1422288720,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40810570","duration":5100,"bikeId":"4205","endDate":1422290460,"endStationId":"117","endStationName":"Lollard Street, Vauxhall","startDate":1422285360,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40811979","duration":540,"bikeId":"12784","endDate":1422290640,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1422290100,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40812072","duration":420,"bikeId":"12509","endDate":1422290760,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1422290340,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"40811970","duration":900,"bikeId":"12457","endDate":1422290940,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422290040,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40812081","duration":720,"bikeId":"8140","endDate":1422291120,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422290400,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40812168","duration":780,"bikeId":"1838","endDate":1422291300,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1422290520,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"40812337","duration":480,"bikeId":"1371","endDate":1422291420,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422290940,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40812064","duration":1260,"bikeId":"3746","endDate":1422291600,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1422290340,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40812249","duration":1020,"bikeId":"6698","endDate":1422291720,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422290700,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40812643","duration":300,"bikeId":"3129","endDate":1422291900,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1422291600,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"40812639","duration":420,"bikeId":"5051","endDate":1422292020,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1422291600,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"40812452","duration":960,"bikeId":"9768","endDate":1422292140,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422291180,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40812838","duration":420,"bikeId":"10977","endDate":1422292320,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1422291900,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40812287","duration":1560,"bikeId":"11512","endDate":1422292380,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422290820,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"40812763","duration":720,"bikeId":"10210","endDate":1422292500,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1422291780,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40813056","duration":420,"bikeId":"9483","endDate":1422292620,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1422292200,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40812955","duration":660,"bikeId":"7226","endDate":1422292740,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1422292080,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40811119","duration":5340,"bikeId":"2895","endDate":1422292800,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1422287460,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40811712","duration":3540,"bikeId":"4224","endDate":1422292920,"endStationId":"408","endStationName":"Paddington Green Police Station, Paddington","startDate":1422289380,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"40813251","duration":540,"bikeId":"10770","endDate":1422293040,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1422292500,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40813370","duration":420,"bikeId":"11808","endDate":1422293100,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1422292680,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40812666","duration":1620,"bikeId":"6965","endDate":1422293220,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422291600,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40813384","duration":660,"bikeId":"12479","endDate":1422293340,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422292680,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40812843","duration":1500,"bikeId":"8880","endDate":1422293400,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1422291900,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40813499","duration":660,"bikeId":"4498","endDate":1422293520,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422292860,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40813518","duration":780,"bikeId":"10632","endDate":1422293640,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1422292860,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40813550","duration":720,"bikeId":"2243","endDate":1422293700,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1422292980,"startStationId":"652","startStationName":"Evesham Street, Avondale"}, +{"_id":"40813649","duration":720,"bikeId":"9987","endDate":1422293820,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1422293100,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40814062","duration":300,"bikeId":"4323","endDate":1422293940,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1422293640,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"40812721","duration":2280,"bikeId":"6220","endDate":1422294000,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1422291720,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40813603","duration":1080,"bikeId":"11054","endDate":1422294120,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1422293040,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40814088","duration":540,"bikeId":"4733","endDate":1422294180,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1422293640,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40814295","duration":420,"bikeId":"13054","endDate":1422294300,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422293880,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40814516","duration":240,"bikeId":"168","endDate":1422294360,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422294120,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40814478","duration":360,"bikeId":"11779","endDate":1422294420,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1422294060,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"40814306","duration":600,"bikeId":"12766","endDate":1422294480,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1422293880,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"40812806","duration":2700,"bikeId":"7462","endDate":1422294540,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1422291840,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40814700","duration":360,"bikeId":"216","endDate":1422294660,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422294300,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40814335","duration":780,"bikeId":"12498","endDate":1422294720,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422293940,"startStationId":"775","startStationName":"Little Brook Green, Brook Green"}, +{"_id":"40815098","duration":0,"bikeId":"5469","endDate":1422294780,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1422294780,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"40814553","duration":720,"bikeId":"8708","endDate":1422294900,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1422294180,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40815004","duration":300,"bikeId":"4248","endDate":1422294960,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422294660,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40814225","duration":1200,"bikeId":"7613","endDate":1422295020,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422293820,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40814803","duration":660,"bikeId":"178","endDate":1422295080,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422294420,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40814773","duration":720,"bikeId":"1303","endDate":1422295140,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1422294420,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40815005","duration":600,"bikeId":"586","endDate":1422295260,"endStationId":"697","endStationName":"Charlotte Terrace, Angel","startDate":1422294660,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40815039","duration":600,"bikeId":"11994","endDate":1422295320,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1422294720,"startStationId":"466","startStationName":"Whiston Road, Haggerston"}, +{"_id":"40815016","duration":720,"bikeId":"6785","endDate":1422295380,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422294660,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40815397","duration":360,"bikeId":"2461","endDate":1422295440,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1422295080,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40814943","duration":900,"bikeId":"7514","endDate":1422295500,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1422294600,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"40814868","duration":1020,"bikeId":"1251","endDate":1422295560,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1422294540,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40815440","duration":540,"bikeId":"8558","endDate":1422295680,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422295140,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40814931","duration":1140,"bikeId":"6994","endDate":1422295740,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422294600,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40815843","duration":240,"bikeId":"6088","endDate":1422295800,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422295560,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40815757","duration":360,"bikeId":"5944","endDate":1422295860,"endStationId":"455","endStationName":"East Ferry Road, Cubitt Town","startDate":1422295500,"startStationId":"538","startStationName":"Naval Row, Blackwall"}, +{"_id":"40815359","duration":900,"bikeId":"8981","endDate":1422295920,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1422295020,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40815404","duration":960,"bikeId":"7753","endDate":1422296040,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422295080,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40815037","duration":1380,"bikeId":"432","endDate":1422296100,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1422294720,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40815778","duration":720,"bikeId":"6516","endDate":1422296220,"endStationId":"7","endStationName":"Charlbert Street, St. John's Wood","startDate":1422295500,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"40816212","duration":240,"bikeId":"12746","endDate":1422296280,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1422296040,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"40816234","duration":300,"bikeId":"9987","endDate":1422296340,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1422296040,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"40816056","duration":540,"bikeId":"6697","endDate":1422296400,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1422295860,"startStationId":"765","startStationName":"Ranelagh Gardens, Fulham"}, +{"_id":"40815324","duration":1440,"bikeId":"2301","endDate":1422296460,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1422295020,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40815189","duration":1740,"bikeId":"3852","endDate":1422296580,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422294840,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40815859","duration":1020,"bikeId":"11297","endDate":1422296640,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422295620,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40816068","duration":840,"bikeId":"11859","endDate":1422296700,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1422295860,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40815937","duration":1080,"bikeId":"12582","endDate":1422296760,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422295680,"startStationId":"611","startStationName":"Princedale Road , Holland Park"}, +{"_id":"40816517","duration":480,"bikeId":"11537","endDate":1422296880,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422296400,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40815481","duration":1740,"bikeId":"1269","endDate":1422296940,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1422295200,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40816903","duration":180,"bikeId":"5545","endDate":1422297060,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1422296880,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40816352","duration":960,"bikeId":"6200","endDate":1422297120,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1422296160,"startStationId":"686","startStationName":"Beryl Road, Hammersmith"}, +{"_id":"40816557","duration":780,"bikeId":"8072","endDate":1422297240,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1422296460,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40816707","duration":660,"bikeId":"375","endDate":1422297300,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1422296640,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40816451","duration":1140,"bikeId":"12870","endDate":1422297420,"endStationId":"612","endStationName":"Wandsworth Rd, Isley Court, Wandsworth Road","startDate":1422296280,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"40816990","duration":480,"bikeId":"8474","endDate":1422297540,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1422297060,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40816912","duration":660,"bikeId":"6179","endDate":1422297600,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1422296940,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40816951","duration":720,"bikeId":"6899","endDate":1422297720,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1422297000,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40817329","duration":240,"bikeId":"5425","endDate":1422297780,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1422297540,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40816532","duration":1500,"bikeId":"12964","endDate":1422297900,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422296400,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40817419","duration":360,"bikeId":"5807","endDate":1422298020,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1422297660,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40817573","duration":180,"bikeId":"955","endDate":1422298080,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1422297900,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"40817413","duration":480,"bikeId":"1942","endDate":1422298140,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1422297660,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"40816657","duration":1680,"bikeId":"10056","endDate":1422298260,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1422296580,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40817192","duration":1020,"bikeId":"3152","endDate":1422298380,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1422297360,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40817127","duration":1260,"bikeId":"11042","endDate":1422298500,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1422297240,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40812735","duration":6840,"bikeId":"1356","endDate":1422298560,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1422291720,"startStationId":"599","startStationName":"Manbre Road, Hammersmith"}, +{"_id":"40817190","duration":1320,"bikeId":"3943","endDate":1422298680,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1422297360,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40817221","duration":1320,"bikeId":"8603","endDate":1422298740,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1422297420,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40818033","duration":180,"bikeId":"6676","endDate":1422298860,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422298680,"startStationId":"222","startStationName":"Knightsbridge, Hyde Park"}, +{"_id":"40818068","duration":240,"bikeId":"305","endDate":1422298980,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1422298740,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40817687","duration":1020,"bikeId":"5365","endDate":1422299100,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1422298080,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40818247","duration":180,"bikeId":"12729","endDate":1422299220,"endStationId":"697","endStationName":"Charlotte Terrace, Angel","startDate":1422299040,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40818000","duration":720,"bikeId":"7558","endDate":1422299340,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1422298620,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"40817415","duration":1740,"bikeId":"7559","endDate":1422299400,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1422297660,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40818320","duration":360,"bikeId":"10127","endDate":1422299520,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1422299160,"startStationId":"750","startStationName":"Culvert Road, Battersea"}, +{"_id":"40818303","duration":480,"bikeId":"2756","endDate":1422299640,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1422299160,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40817908","duration":1320,"bikeId":"9050","endDate":1422299760,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1422298440,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"40818175","duration":960,"bikeId":"2830","endDate":1422299880,"endStationId":"482","endStationName":"Thornfield House, Poplar","startDate":1422298920,"startStationId":"477","startStationName":"Spindrift Avenue, Millwall"}, +{"_id":"40818529","duration":420,"bikeId":"12994","endDate":1422300000,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1422299580,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"40818731","duration":180,"bikeId":"8812","endDate":1422300180,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1422300000,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40818438","duration":900,"bikeId":"5870","endDate":1422300300,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1422299400,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"40818318","duration":1320,"bikeId":"8659","endDate":1422300480,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422299160,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40818464","duration":1140,"bikeId":"11007","endDate":1422300600,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1422299460,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"40818459","duration":1260,"bikeId":"9008","endDate":1422300720,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1422299460,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"40818801","duration":720,"bikeId":"9506","endDate":1422300900,"endStationId":"412","endStationName":"Cleaver Street, Kennington","startDate":1422300180,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40818727","duration":1020,"bikeId":"11479","endDate":1422301020,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1422300000,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40818932","duration":660,"bikeId":"7139","endDate":1422301200,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1422300540,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40819008","duration":660,"bikeId":"8688","endDate":1422301380,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422300720,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40819105","duration":540,"bikeId":"12658","endDate":1422301500,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1422300960,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40818796","duration":1560,"bikeId":"5439","endDate":1422301740,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1422300180,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40819140","duration":840,"bikeId":"10598","endDate":1422301860,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1422301020,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40819049","duration":1140,"bikeId":"5019","endDate":1422301980,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1422300840,"startStationId":"49","startStationName":"Curzon Street, Mayfair"}, +{"_id":"40819374","duration":540,"bikeId":"5219","endDate":1422302220,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1422301680,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40818683","duration":2460,"bikeId":"3367","endDate":1422302340,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1422299880,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40819115","duration":1560,"bikeId":"1612","endDate":1422302520,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1422300960,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40819565","duration":480,"bikeId":"10913","endDate":1422302700,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1422302220,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40819617","duration":540,"bikeId":"11068","endDate":1422302940,"endStationId":"726","endStationName":"Alfreda Street, Battersea Park","startDate":1422302400,"startStationId":"624","startStationName":"Courland Grove, Wandsworth Road"}, +{"_id":"40819631","duration":660,"bikeId":"12902","endDate":1422303120,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1422302460,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40819309","duration":1860,"bikeId":"10643","endDate":1422303360,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1422301500,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40819812","duration":540,"bikeId":"7321","endDate":1422303540,"endStationId":"674","endStationName":"Carnegie Street, King's Cross","startDate":1422303000,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40819989","duration":180,"bikeId":"10292","endDate":1422303780,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1422303600,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40819905","duration":720,"bikeId":"11856","endDate":1422303960,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422303240,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40819745","duration":1380,"bikeId":"1354","endDate":1422304200,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1422302820,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"40820033","duration":720,"bikeId":"6869","endDate":1422304440,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1422303720,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40820208","duration":360,"bikeId":"9071","endDate":1422304680,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1422304320,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40820223","duration":420,"bikeId":"7886","endDate":1422304800,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1422304380,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"40820338","duration":300,"bikeId":"4619","endDate":1422305160,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1422304860,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40820419","duration":300,"bikeId":"5211","endDate":1422305460,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1422305160,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40820444","duration":480,"bikeId":"9461","endDate":1422305760,"endStationId":"291","endStationName":"Claverton Street, Pimlico","startDate":1422305280,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40820499","duration":600,"bikeId":"3554","endDate":1422306060,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1422305460,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40820644","duration":180,"bikeId":"10246","endDate":1422306360,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1422306180,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40820677","duration":300,"bikeId":"2447","endDate":1422306660,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1422306360,"startStationId":"686","startStationName":"Beryl Road, Hammersmith"}, +{"_id":"40820737","duration":360,"bikeId":"696","endDate":1422306960,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1422306600,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40820792","duration":360,"bikeId":"4389","endDate":1422307260,"endStationId":"412","endStationName":"Cleaver Street, Kennington","startDate":1422306900,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"40820780","duration":780,"bikeId":"10039","endDate":1422307560,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1422306780,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40820933","duration":120,"bikeId":"7283","endDate":1422307980,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1422307860,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40820833","duration":1320,"bikeId":"7119","endDate":1422308460,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422307140,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40820957","duration":840,"bikeId":"11742","endDate":1422308880,"endStationId":"608","endStationName":"Colet Gardens, Hammersmith","startDate":1422308040,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40820983","duration":1080,"bikeId":"13034","endDate":1422309300,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1422308220,"startStationId":"172","startStationName":"Sumner Place, South Kensington"}, +{"_id":"40821035","duration":1260,"bikeId":"9793","endDate":1422309720,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422308460,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40820962","duration":2100,"bikeId":"7934","endDate":1422310200,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1422308100,"startStationId":"134","startStationName":"Wapping High Street, Wapping"}, +{"_id":"40821196","duration":900,"bikeId":"7232","endDate":1422310680,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1422309780,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"40821262","duration":960,"bikeId":"9198","endDate":1422311160,"endStationId":"352","endStationName":"Vauxhall Street, Vauxhall","startDate":1422310200,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40821408","duration":420,"bikeId":"12083","endDate":1422311580,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1422311160,"startStationId":"560","startStationName":"Ladbroke Grove Central, Notting Hill"}, +{"_id":"40821387","duration":1080,"bikeId":"3716","endDate":1422312060,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1422310980,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40821498","duration":780,"bikeId":"11403","endDate":1422312660,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1422311880,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40821613","duration":240,"bikeId":"3632","endDate":1422313260,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1422313020,"startStationId":"686","startStationName":"Beryl Road, Hammersmith"}, +{"_id":"40821685","duration":180,"bikeId":"7454","endDate":1422313860,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1422313680,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40821713","duration":480,"bikeId":"2244","endDate":1422314520,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1422314040,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40821281","duration":5220,"bikeId":"10116","endDate":1422315480,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1422310260,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40821768","duration":1980,"bikeId":"11919","endDate":1422316860,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1422314880,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40821898","duration":600,"bikeId":"5901","endDate":1422318300,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1422317700,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40821979","duration":180,"bikeId":"7300","endDate":1422319680,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1422319500,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40822046","duration":240,"bikeId":"9819","endDate":1422322440,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1422322200,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"40822096","duration":780,"bikeId":"2067","endDate":1422325860,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1422325080,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40822170","duration":960,"bikeId":"5465","endDate":1422333840,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1422332880,"startStationId":"715","startStationName":"Aylward Street, Stepney"}, +{"_id":"40822222","duration":1140,"bikeId":"10423","endDate":1422337500,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1422336360,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40822248","duration":2340,"bikeId":"12925","endDate":1422339360,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1422337020,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"40822429","duration":300,"bikeId":"2312","endDate":1422340200,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1422339900,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40822444","duration":780,"bikeId":"11432","endDate":1422340740,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422339960,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"40822532","duration":540,"bikeId":"8070","endDate":1422341100,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1422340560,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40822542","duration":840,"bikeId":"7352","endDate":1422341460,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1422340620,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40822737","duration":300,"bikeId":"8777","endDate":1422341700,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1422341400,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40822686","duration":780,"bikeId":"10990","endDate":1422342000,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1422341220,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"40822804","duration":600,"bikeId":"645","endDate":1422342300,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1422341700,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40822939","duration":420,"bikeId":"4755","endDate":1422342540,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1422342120,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40822969","duration":540,"bikeId":"8134","endDate":1422342780,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1422342240,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"40822975","duration":780,"bikeId":"11135","endDate":1422343020,"endStationId":"207","endStationName":"Grosvenor Crescent, Belgravia","startDate":1422342240,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"40822924","duration":1140,"bikeId":"7832","endDate":1422343200,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1422342060,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40823245","duration":480,"bikeId":"12989","endDate":1422343440,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1422342960,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40823299","duration":540,"bikeId":"12655","endDate":1422343620,"endStationId":"181","endStationName":"Belgrave Square, Belgravia","startDate":1422343080,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40822952","duration":1620,"bikeId":"8515","endDate":1422343740,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422342120,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40823383","duration":600,"bikeId":"5857","endDate":1422343920,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422343320,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40823310","duration":900,"bikeId":"6674","endDate":1422344040,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1422343140,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40823442","duration":780,"bikeId":"12587","endDate":1422344220,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1422343440,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40823586","duration":660,"bikeId":"7435","endDate":1422344340,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1422343680,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40823697","duration":540,"bikeId":"11315","endDate":1422344460,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1422343920,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40823602","duration":840,"bikeId":"3296","endDate":1422344580,"endStationId":"726","endStationName":"Alfreda Street, Battersea Park","startDate":1422343740,"startStationId":"673","startStationName":"Hibbert Street, Battersea"}, +{"_id":"40823916","duration":480,"bikeId":"10125","endDate":1422344700,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1422344220,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40823751","duration":840,"bikeId":"12763","endDate":1422344820,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1422343980,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"40824041","duration":480,"bikeId":"7004","endDate":1422344880,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1422344400,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40823886","duration":840,"bikeId":"178","endDate":1422345000,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1422344160,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40824044","duration":720,"bikeId":"12027","endDate":1422345120,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422344400,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40823705","duration":1320,"bikeId":"13048","endDate":1422345240,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1422343920,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40823839","duration":1200,"bikeId":"7369","endDate":1422345300,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1422344100,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40824344","duration":600,"bikeId":"2125","endDate":1422345420,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422344820,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40823874","duration":1320,"bikeId":"7064","endDate":1422345480,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422344160,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40823877","duration":1440,"bikeId":"9371","endDate":1422345600,"endStationId":"668","endStationName":"Ravenscourt Park Station, Hammersmith","startDate":1422344160,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"40824539","duration":540,"bikeId":"8685","endDate":1422345660,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1422345120,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40824876","duration":240,"bikeId":"11985","endDate":1422345780,"endStationId":"212","endStationName":"Campden Hill Road, Notting Hill","startDate":1422345540,"startStationId":"398","startStationName":"Holland Park, Kensington"}, +{"_id":"40824036","duration":1500,"bikeId":"11532","endDate":1422345900,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1422344400,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40825030","duration":240,"bikeId":"13023","endDate":1422345960,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1422345720,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40824965","duration":420,"bikeId":"10284","endDate":1422346080,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422345660,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40825022","duration":420,"bikeId":"7540","endDate":1422346140,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1422345720,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40825092","duration":420,"bikeId":"424","endDate":1422346200,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1422345780,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40825242","duration":360,"bikeId":"6302","endDate":1422346320,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422345960,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40825121","duration":540,"bikeId":"7660","endDate":1422346380,"endStationId":"566","endStationName":"Westfield Ariel Way, White City","startDate":1422345840,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"40825532","duration":120,"bikeId":"10968","endDate":1422346440,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1422346320,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40824391","duration":1680,"bikeId":"12874","endDate":1422346560,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1422344880,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40825157","duration":720,"bikeId":"7652","endDate":1422346620,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1422345900,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"40824602","duration":1560,"bikeId":"7842","endDate":1422346740,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1422345180,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"40825547","duration":480,"bikeId":"9304","endDate":1422346800,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422346320,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40825731","duration":360,"bikeId":"7822","endDate":1422346860,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1422346500,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"40824298","duration":2160,"bikeId":"3153","endDate":1422346920,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1422344760,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"40825806","duration":480,"bikeId":"9480","endDate":1422347040,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1422346560,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"40825780","duration":540,"bikeId":"12022","endDate":1422347100,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422346560,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"40825711","duration":660,"bikeId":"3549","endDate":1422347160,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1422346500,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40825375","duration":1080,"bikeId":"897","endDate":1422347220,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1422346140,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40826547","duration":0,"bikeId":"7240","endDate":1422347280,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1422347280,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"40825356","duration":1260,"bikeId":"10730","endDate":1422347340,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422346080,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40826222","duration":480,"bikeId":"9903","endDate":1422347400,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1422346920,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40825784","duration":960,"bikeId":"88","endDate":1422347520,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1422346560,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40825775","duration":1020,"bikeId":"12463","endDate":1422347580,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1422346560,"startStationId":"759","startStationName":"Broadley Terrace, Marylebone"}, +{"_id":"40826016","duration":900,"bikeId":"3040","endDate":1422347640,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422346740,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40826446","duration":540,"bikeId":"9668","endDate":1422347700,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1422347160,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"40826849","duration":240,"bikeId":"5409","endDate":1422347760,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422347520,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40826168","duration":900,"bikeId":"247","endDate":1422347820,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422346920,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40826591","duration":600,"bikeId":"7627","endDate":1422347880,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1422347280,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40827218","duration":120,"bikeId":"10489","endDate":1422347940,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1422347820,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40826912","duration":480,"bikeId":"8327","endDate":1422348000,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1422347520,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40826479","duration":900,"bikeId":"3260","endDate":1422348060,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1422347160,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"40826196","duration":1200,"bikeId":"8202","endDate":1422348120,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1422346920,"startStationId":"496","startStationName":"Devons Road, Bow"}, +{"_id":"40825666","duration":1740,"bikeId":"3256","endDate":1422348180,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1422346440,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40826941","duration":660,"bikeId":"2392","endDate":1422348240,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1422347580,"startStationId":"678","startStationName":"Esmond Street, Putney"}, +{"_id":"40827028","duration":660,"bikeId":"10775","endDate":1422348300,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1422347640,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40826671","duration":1020,"bikeId":"2228","endDate":1422348360,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1422347340,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"40827120","duration":720,"bikeId":"4167","endDate":1422348420,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1422347700,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40827816","duration":240,"bikeId":"550","endDate":1422348480,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1422348240,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"40826705","duration":1140,"bikeId":"10360","endDate":1422348540,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1422347400,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"40827505","duration":540,"bikeId":"2028","endDate":1422348540,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1422348000,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40827642","duration":480,"bikeId":"12573","endDate":1422348600,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1422348120,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40827419","duration":720,"bikeId":"9021","endDate":1422348660,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1422347940,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40827878","duration":420,"bikeId":"11899","endDate":1422348720,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1422348300,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40827611","duration":660,"bikeId":"7410","endDate":1422348780,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1422348120,"startStationId":"454","startStationName":"Napier Avenue, Millwall"}, +{"_id":"40827930","duration":420,"bikeId":"12994","endDate":1422348780,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1422348360,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"40827867","duration":540,"bikeId":"11305","endDate":1422348840,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1422348300,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40827257","duration":1080,"bikeId":"3609","endDate":1422348900,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1422347820,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"40827346","duration":1080,"bikeId":"7004","endDate":1422348960,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1422347880,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40828218","duration":480,"bikeId":"4830","endDate":1422349020,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1422348540,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40827392","duration":1140,"bikeId":"5691","endDate":1422349080,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1422347940,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40827536","duration":1020,"bikeId":"8177","endDate":1422349080,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422348060,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40828228","duration":540,"bikeId":"7010","endDate":1422349140,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1422348600,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40828525","duration":420,"bikeId":"5205","endDate":1422349200,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422348780,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"40827772","duration":1020,"bikeId":"8922","endDate":1422349260,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422348240,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"40826901","duration":1740,"bikeId":"6625","endDate":1422349260,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1422347520,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40827135","duration":1560,"bikeId":"6703","endDate":1422349320,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1422347760,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40828843","duration":300,"bikeId":"1002","endDate":1422349380,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422349080,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"40827958","duration":1080,"bikeId":"13016","endDate":1422349440,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422348360,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"40828344","duration":840,"bikeId":"7229","endDate":1422349500,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422348660,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40827718","duration":1380,"bikeId":"9110","endDate":1422349560,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1422348180,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"40828055","duration":1200,"bikeId":"8233","endDate":1422349620,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1422348420,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40828327","duration":1020,"bikeId":"11904","endDate":1422349680,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1422348660,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"40828510","duration":960,"bikeId":"10947","endDate":1422349740,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422348780,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40828841","duration":720,"bikeId":"3218","endDate":1422349800,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1422349080,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"40828906","duration":720,"bikeId":"8128","endDate":1422349860,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1422349140,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40828839","duration":840,"bikeId":"5749","endDate":1422349920,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1422349080,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40828870","duration":840,"bikeId":"595","endDate":1422349980,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1422349140,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40828691","duration":1140,"bikeId":"3815","endDate":1422350100,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1422348960,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40829232","duration":660,"bikeId":"5219","endDate":1422350160,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1422349500,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40829408","duration":540,"bikeId":"5332","endDate":1422350280,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1422349740,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40829468","duration":480,"bikeId":"11079","endDate":1422350340,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1422349860,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40829301","duration":780,"bikeId":"4523","endDate":1422350400,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1422349620,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40829586","duration":540,"bikeId":"2021","endDate":1422350520,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1422349980,"startStationId":"490","startStationName":"Pennington Street, Wapping"}, +{"_id":"40829791","duration":300,"bikeId":"1371","endDate":1422350580,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422350280,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40829052","duration":1380,"bikeId":"1477","endDate":1422350700,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1422349320,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40829699","duration":600,"bikeId":"12110","endDate":1422350760,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1422350160,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40829647","duration":780,"bikeId":"5681","endDate":1422350820,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422350040,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40829193","duration":1440,"bikeId":"6410","endDate":1422350940,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1422349500,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"40829561","duration":1140,"bikeId":"7604","endDate":1422351060,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1422349920,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40830108","duration":300,"bikeId":"12425","endDate":1422351120,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1422350820,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40829963","duration":720,"bikeId":"8130","endDate":1422351240,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1422350520,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40830027","duration":720,"bikeId":"10967","endDate":1422351360,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1422350640,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40829955","duration":960,"bikeId":"5947","endDate":1422351480,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1422350520,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40829798","duration":1320,"bikeId":"3983","endDate":1422351600,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1422350280,"startStationId":"776","startStationName":"Abyssinia Close, Clapham Junction"}, +{"_id":"40829964","duration":1200,"bikeId":"8519","endDate":1422351720,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1422350520,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40830056","duration":1200,"bikeId":"5711","endDate":1422351900,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1422350700,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40830592","duration":240,"bikeId":"10774","endDate":1422352020,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1422351780,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40830414","duration":780,"bikeId":"11986","endDate":1422352200,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1422351420,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40830637","duration":420,"bikeId":"5534","endDate":1422352320,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1422351900,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40830343","duration":1200,"bikeId":"2761","endDate":1422352500,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1422351300,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40830364","duration":1200,"bikeId":"5880","endDate":1422352560,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1422351360,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"40830662","duration":720,"bikeId":"10752","endDate":1422352680,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1422351960,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"40830863","duration":420,"bikeId":"4731","endDate":1422352860,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1422352440,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40830690","duration":1140,"bikeId":"2009","endDate":1422353100,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1422351960,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"40830905","duration":720,"bikeId":"12697","endDate":1422353340,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422352620,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40831014","duration":480,"bikeId":"634","endDate":1422353520,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1422353040,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40830944","duration":1020,"bikeId":"5339","endDate":1422353760,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1422352740,"startStationId":"222","startStationName":"Knightsbridge, Hyde Park"}, +{"_id":"40831186","duration":300,"bikeId":"2392","endDate":1422354000,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1422353700,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"40831096","duration":900,"bikeId":"12837","endDate":1422354240,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1422353340,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40831155","duration":1020,"bikeId":"12158","endDate":1422354600,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1422353580,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"40831308","duration":600,"bikeId":"7299","endDate":1422354840,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1422354240,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"40831474","duration":180,"bikeId":"10623","endDate":1422355140,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1422354960,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40831505","duration":420,"bikeId":"12819","endDate":1422355440,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1422355020,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40831676","duration":60,"bikeId":"1261","endDate":1422355680,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1422355620,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40831593","duration":600,"bikeId":"2641","endDate":1422355980,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1422355380,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40831610","duration":780,"bikeId":"4994","endDate":1422356220,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1422355440,"startStationId":"616","startStationName":"Aintree Street, Fulham"}, +{"_id":"40831839","duration":120,"bikeId":"7531","endDate":1422356460,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422356340,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40831673","duration":1140,"bikeId":"10732","endDate":1422356760,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1422355620,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40831882","duration":540,"bikeId":"3536","endDate":1422357000,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1422356460,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"40831953","duration":480,"bikeId":"6397","endDate":1422357300,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1422356820,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40830560","duration":5880,"bikeId":"9855","endDate":1422357600,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1422351720,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"40832081","duration":660,"bikeId":"9802","endDate":1422357960,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1422357300,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40832001","duration":1440,"bikeId":"12582","endDate":1422358380,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1422356940,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40832071","duration":1500,"bikeId":"4319","endDate":1422358740,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1422357240,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40832349","duration":480,"bikeId":"9925","endDate":1422359100,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422358620,"startStationId":"441","startStationName":"Sail Street, Vauxhall"}, +{"_id":"40832412","duration":600,"bikeId":"2848","endDate":1422359400,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1422358800,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40832545","duration":240,"bikeId":"2974","endDate":1422359640,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1422359400,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40832487","duration":720,"bikeId":"10142","endDate":1422359820,"endStationId":"236","endStationName":"Fashion Street, Whitechapel","startDate":1422359100,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40832562","duration":660,"bikeId":"9446","endDate":1422360120,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1422359460,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40832416","duration":1560,"bikeId":"2271","endDate":1422360420,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1422358860,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40832639","duration":1020,"bikeId":"2247","endDate":1422360720,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1422359700,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"40832573","duration":1500,"bikeId":"6640","endDate":1422360960,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1422359460,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40832794","duration":960,"bikeId":"352","endDate":1422361260,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422360300,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40832900","duration":720,"bikeId":"4869","endDate":1422361440,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422360720,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40833149","duration":120,"bikeId":"6579","endDate":1422361680,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422361560,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40833193","duration":240,"bikeId":"2097","endDate":1422361920,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1422361680,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40832990","duration":1140,"bikeId":"882","endDate":1422362160,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1422361020,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"40833129","duration":900,"bikeId":"5839","endDate":1422362400,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1422361500,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"40833405","duration":300,"bikeId":"4457","endDate":1422362700,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1422362400,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40833436","duration":360,"bikeId":"1993","endDate":1422362880,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1422362520,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40833471","duration":540,"bikeId":"11507","endDate":1422363120,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1422362580,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"40833207","duration":1560,"bikeId":"8139","endDate":1422363300,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1422361740,"startStationId":"775","startStationName":"Little Brook Green, Brook Green"}, +{"_id":"40833429","duration":1020,"bikeId":"6812","endDate":1422363480,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1422362460,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40833716","duration":360,"bikeId":"11539","endDate":1422363720,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1422363360,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40833639","duration":780,"bikeId":"776","endDate":1422363900,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422363120,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40833756","duration":600,"bikeId":"10565","endDate":1422364140,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422363540,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40833826","duration":600,"bikeId":"8870","endDate":1422364380,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1422363780,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40833991","duration":300,"bikeId":"10994","endDate":1422364620,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1422364320,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40833840","duration":1020,"bikeId":"12708","endDate":1422364860,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1422363840,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"40833689","duration":1800,"bikeId":"1246","endDate":1422365100,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1422363300,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40834191","duration":300,"bikeId":"11458","endDate":1422365340,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1422365040,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40834117","duration":780,"bikeId":"9674","endDate":1422365520,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1422364740,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40834264","duration":480,"bikeId":"6771","endDate":1422365820,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422365340,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"40833749","duration":2520,"bikeId":"5683","endDate":1422366060,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1422363540,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40834436","duration":420,"bikeId":"6565","endDate":1422366300,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1422365880,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40834424","duration":660,"bikeId":"12282","endDate":1422366540,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1422365880,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40834539","duration":480,"bikeId":"11313","endDate":1422366720,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422366240,"startStationId":"139","startStationName":"Lambeth Road, Vauxhall"}, +{"_id":"40833317","duration":4860,"bikeId":"11369","endDate":1422366960,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1422362100,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40834528","duration":1020,"bikeId":"4850","endDate":1422367200,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1422366180,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40834343","duration":1800,"bikeId":"12562","endDate":1422367440,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422365640,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40834713","duration":840,"bikeId":"586","endDate":1422367740,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1422366900,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40834883","duration":480,"bikeId":"4775","endDate":1422367980,"endStationId":"683","endStationName":"Dorothy Road, Clapham Junction","startDate":1422367500,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40834907","duration":660,"bikeId":"3310","endDate":1422368220,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1422367560,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40835051","duration":300,"bikeId":"10222","endDate":1422368460,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422368160,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40835122","duration":240,"bikeId":"2636","endDate":1422368700,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1422368460,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40835142","duration":360,"bikeId":"2422","endDate":1422368940,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1422368580,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40835175","duration":540,"bikeId":"2015","endDate":1422369240,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422368700,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40835197","duration":720,"bikeId":"5988","endDate":1422369480,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1422368760,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40835375","duration":360,"bikeId":"11485","endDate":1422369780,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422369420,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40835489","duration":180,"bikeId":"4925","endDate":1422370080,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1422369900,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40835464","duration":600,"bikeId":"4787","endDate":1422370380,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1422369780,"startStationId":"44","startStationName":"Bruton Street, Mayfair"}, +{"_id":"40835645","duration":120,"bikeId":"2457","endDate":1422370620,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1422370500,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40835647","duration":420,"bikeId":"115","endDate":1422370920,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1422370500,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40835627","duration":600,"bikeId":"10778","endDate":1422371100,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1422370500,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40835581","duration":1080,"bikeId":"11079","endDate":1422371340,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1422370260,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40835855","duration":360,"bikeId":"4162","endDate":1422371640,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422371280,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40835584","duration":1560,"bikeId":"9228","endDate":1422371880,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1422370320,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40835783","duration":1080,"bikeId":"12646","endDate":1422372120,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422371040,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40833989","duration":8040,"bikeId":"10636","endDate":1422372360,"endStationId":"766","endStationName":"Ram Street, Wandsworth","startDate":1422364320,"startStationId":"766","startStationName":"Ram Street, Wandsworth"}, +{"_id":"40836099","duration":480,"bikeId":"1487","endDate":1422372660,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1422372180,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"40835752","duration":1980,"bikeId":"1323","endDate":1422372900,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1422370920,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40836168","duration":780,"bikeId":"10623","endDate":1422373200,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422372420,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40835714","duration":2580,"bikeId":"1614","endDate":1422373380,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1422370800,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40836413","duration":420,"bikeId":"11982","endDate":1422373680,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1422373260,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"40836177","duration":1440,"bikeId":"10201","endDate":1422373920,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1422372480,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"40836504","duration":480,"bikeId":"12545","endDate":1422374100,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1422373620,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"40836255","duration":1620,"bikeId":"10122","endDate":1422374340,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1422372720,"startStationId":"725","startStationName":"Thessaly Road North, Nine Elms"}, +{"_id":"40836386","duration":1320,"bikeId":"992","endDate":1422374520,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1422373200,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40836680","duration":540,"bikeId":"4571","endDate":1422374760,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1422374220,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40836490","duration":1380,"bikeId":"10987","endDate":1422374940,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422373560,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40836882","duration":420,"bikeId":"4261","endDate":1422375180,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422374760,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40836658","duration":1200,"bikeId":"681","endDate":1422375360,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1422374160,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40836981","duration":540,"bikeId":"5561","endDate":1422375540,"endStationId":"692","endStationName":"Cadogan Close, Victoria Park","startDate":1422375000,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40837140","duration":300,"bikeId":"12901","endDate":1422375720,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1422375420,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40837141","duration":480,"bikeId":"8945","endDate":1422375900,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422375420,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40837180","duration":540,"bikeId":"5269","endDate":1422376080,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422375540,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40837058","duration":1020,"bikeId":"491","endDate":1422376260,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1422375240,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40837295","duration":540,"bikeId":"1797","endDate":1422376440,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422375900,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40837459","duration":240,"bikeId":"5983","endDate":1422376620,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1422376380,"startStationId":"606","startStationName":"Addison Road, Holland Park"}, +{"_id":"40837052","duration":1620,"bikeId":"9244","endDate":1422376800,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1422375180,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40837580","duration":360,"bikeId":"11404","endDate":1422377040,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1422376680,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40837520","duration":660,"bikeId":"5602","endDate":1422377220,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1422376560,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"40836649","duration":3240,"bikeId":"6703","endDate":1422377340,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422374100,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40837698","duration":540,"bikeId":"12654","endDate":1422377520,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1422376980,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40837868","duration":300,"bikeId":"7818","endDate":1422377700,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422377400,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40837937","duration":240,"bikeId":"11201","endDate":1422377820,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1422377580,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"40838048","duration":180,"bikeId":"1593","endDate":1422378000,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422377820,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40837916","duration":600,"bikeId":"7179","endDate":1422378120,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1422377520,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40838043","duration":420,"bikeId":"9626","endDate":1422378240,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1422377820,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40837981","duration":720,"bikeId":"3558","endDate":1422378420,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1422377700,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"40838254","duration":300,"bikeId":"10627","endDate":1422378540,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422378240,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"40838017","duration":900,"bikeId":"12946","endDate":1422378660,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1422377760,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"40838222","duration":600,"bikeId":"6995","endDate":1422378780,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422378180,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40838492","duration":420,"bikeId":"9090","endDate":1422378900,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422378480,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"40838172","duration":900,"bikeId":"3641","endDate":1422378960,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1422378060,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"40837368","duration":2940,"bikeId":"732","endDate":1422379080,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1422376140,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40838529","duration":660,"bikeId":"11210","endDate":1422379200,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1422378540,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40838407","duration":840,"bikeId":"12818","endDate":1422379260,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1422378420,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40838028","duration":1560,"bikeId":"12330","endDate":1422379380,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1422377820,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40838512","duration":900,"bikeId":"6975","endDate":1422379440,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1422378540,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40838752","duration":660,"bikeId":"7961","endDate":1422379560,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1422378900,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40838808","duration":720,"bikeId":"5853","endDate":1422379680,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1422378960,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"40839072","duration":360,"bikeId":"2698","endDate":1422379740,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1422379380,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40839192","duration":300,"bikeId":"5464","endDate":1422379860,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1422379560,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40839071","duration":600,"bikeId":"9427","endDate":1422379980,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1422379380,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40838700","duration":1320,"bikeId":"4323","endDate":1422380100,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422378780,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40839304","duration":420,"bikeId":"12843","endDate":1422380220,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422379800,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40838380","duration":1920,"bikeId":"9439","endDate":1422380280,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422378360,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40839075","duration":1020,"bikeId":"9305","endDate":1422380400,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1422379380,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"40838933","duration":1380,"bikeId":"2177","endDate":1422380520,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1422379140,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40839597","duration":420,"bikeId":"10819","endDate":1422380580,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1422380160,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40839656","duration":480,"bikeId":"1027","endDate":1422380700,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1422380220,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40839619","duration":600,"bikeId":"541","endDate":1422380760,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1422380160,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40839892","duration":360,"bikeId":"1794","endDate":1422380820,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1422380460,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40840300","duration":0,"bikeId":"3816","endDate":1422380880,"endStationId":"236","endStationName":"Fashion Street, Whitechapel","startDate":1422380880,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40839961","duration":480,"bikeId":"2862","endDate":1422381000,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422380520,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40840148","duration":360,"bikeId":"9011","endDate":1422381060,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1422380700,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40839881","duration":660,"bikeId":"7715","endDate":1422381120,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1422380460,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"40840278","duration":360,"bikeId":"8058","endDate":1422381180,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422380820,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40839746","duration":900,"bikeId":"6846","endDate":1422381240,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422380340,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40839505","duration":1260,"bikeId":"8676","endDate":1422381300,"endStationId":"164","endStationName":"Cleveland Gardens, Bayswater","startDate":1422380040,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40840517","duration":300,"bikeId":"3239","endDate":1422381360,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1422381060,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40840005","duration":900,"bikeId":"12012","endDate":1422381480,"endStationId":"468","endStationName":"Cantrell Road, Bow","startDate":1422380580,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40840343","duration":660,"bikeId":"1996","endDate":1422381540,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1422380880,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40840444","duration":600,"bikeId":"6871","endDate":1422381600,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422381000,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40840929","duration":120,"bikeId":"9501","endDate":1422381660,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1422381540,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40840814","duration":300,"bikeId":"12226","endDate":1422381720,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422381420,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40840946","duration":300,"bikeId":"4537","endDate":1422381840,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1422381540,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40839980","duration":1380,"bikeId":"2014","endDate":1422381900,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1422380520,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40841040","duration":300,"bikeId":"168","endDate":1422381960,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1422381660,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"40840887","duration":600,"bikeId":"4411","endDate":1422382080,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1422381480,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40841082","duration":420,"bikeId":"6305","endDate":1422382140,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1422381720,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40840883","duration":720,"bikeId":"3730","endDate":1422382200,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1422381480,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40840216","duration":1560,"bikeId":"8210","endDate":1422382320,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1422380760,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40841258","duration":480,"bikeId":"8489","endDate":1422382380,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422381900,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40841094","duration":720,"bikeId":"10829","endDate":1422382440,"endStationId":"410","endStationName":"Edgware Road Station, Paddington","startDate":1422381720,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40840875","duration":1020,"bikeId":"11068","endDate":1422382500,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1422381480,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40841105","duration":840,"bikeId":"12711","endDate":1422382560,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1422381720,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40841260","duration":720,"bikeId":"7103","endDate":1422382620,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1422381900,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40841020","duration":1080,"bikeId":"1924","endDate":1422382740,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1422381660,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40841144","duration":1020,"bikeId":"9351","endDate":1422382800,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1422381780,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"40841485","duration":720,"bikeId":"1403","endDate":1422382800,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1422382080,"startStationId":"675","startStationName":"Usk Road, Battersea"}, +{"_id":"40841901","duration":360,"bikeId":"12319","endDate":1422382920,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422382560,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40840992","duration":1380,"bikeId":"11344","endDate":1422382980,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1422381600,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40842080","duration":300,"bikeId":"11540","endDate":1422383040,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422382740,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40841576","duration":900,"bikeId":"10947","endDate":1422383100,"endStationId":"640","endStationName":"Silverthorne Road, Battersea","startDate":1422382200,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40841871","duration":720,"bikeId":"3576","endDate":1422383220,"endStationId":"768","endStationName":"Clapham Common Northside, Clapham Common","startDate":1422382500,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40841763","duration":900,"bikeId":"11512","endDate":1422383280,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1422382380,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"40841539","duration":1200,"bikeId":"4494","endDate":1422383340,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1422382140,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40842154","duration":600,"bikeId":"9846","endDate":1422383460,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422382860,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"40842092","duration":780,"bikeId":"3701","endDate":1422383520,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1422382740,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40842493","duration":300,"bikeId":"8436","endDate":1422383580,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1422383280,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40842478","duration":360,"bikeId":"2937","endDate":1422383640,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1422383280,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40842486","duration":480,"bikeId":"4035","endDate":1422383760,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422383280,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40841885","duration":1320,"bikeId":"4934","endDate":1422383820,"endStationId":"768","endStationName":"Clapham Common Northside, Clapham Common","startDate":1422382500,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40841644","duration":1680,"bikeId":"6569","endDate":1422383940,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1422382260,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40842907","duration":180,"bikeId":"6197","endDate":1422384000,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1422383820,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40842338","duration":1080,"bikeId":"9329","endDate":1422384120,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1422383040,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40842607","duration":780,"bikeId":"12879","endDate":1422384180,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1422383400,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40843065","duration":240,"bikeId":"10882","endDate":1422384240,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1422384000,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40842002","duration":1740,"bikeId":"10788","endDate":1422384360,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1422382620,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"40842510","duration":1140,"bikeId":"9981","endDate":1422384420,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422383280,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40843206","duration":300,"bikeId":"9879","endDate":1422384540,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1422384240,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40843159","duration":540,"bikeId":"13010","endDate":1422384660,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1422384120,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"40842933","duration":840,"bikeId":"1311","endDate":1422384720,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1422383880,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40842442","duration":1560,"bikeId":"10697","endDate":1422384780,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1422383220,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40843335","duration":480,"bikeId":"9044","endDate":1422384900,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422384420,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"40842765","duration":1320,"bikeId":"12469","endDate":1422384960,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1422383640,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40842922","duration":1260,"bikeId":"10618","endDate":1422385080,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1422383820,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"40842996","duration":1200,"bikeId":"11324","endDate":1422385140,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1422383940,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40843355","duration":840,"bikeId":"10767","endDate":1422385260,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1422384420,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40843503","duration":660,"bikeId":"2312","endDate":1422385320,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1422384660,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"40843769","duration":300,"bikeId":"6601","endDate":1422385440,"endStationId":"149","endStationName":"Kennington Road Post Office, Oval","startDate":1422385140,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40843120","duration":1440,"bikeId":"4714","endDate":1422385560,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1422384120,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40843832","duration":480,"bikeId":"7940","endDate":1422385680,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1422385200,"startStationId":"604","startStationName":"St Martin's Close, Camden Town"}, +{"_id":"40843423","duration":1200,"bikeId":"9747","endDate":1422385740,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1422384540,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40843491","duration":1260,"bikeId":"8479","endDate":1422385860,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1422384600,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40843876","duration":720,"bikeId":"12882","endDate":1422386040,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1422385320,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40844088","duration":420,"bikeId":"9719","endDate":1422386160,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1422385740,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"40844215","duration":300,"bikeId":"2659","endDate":1422386280,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1422385980,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40844198","duration":540,"bikeId":"11828","endDate":1422386460,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1422385920,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40843753","duration":1440,"bikeId":"1063","endDate":1422386520,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1422385080,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"40843745","duration":1560,"bikeId":"6661","endDate":1422386640,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422385080,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40844652","duration":0,"bikeId":"11849","endDate":1422386820,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1422386820,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40844089","duration":1140,"bikeId":"92","endDate":1422386880,"endStationId":"496","endStationName":"Devons Road, Bow","startDate":1422385740,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40843535","duration":2280,"bikeId":"6983","endDate":1422387000,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1422384720,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40844700","duration":240,"bikeId":"4663","endDate":1422387180,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1422386940,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40844471","duration":840,"bikeId":"10649","endDate":1422387300,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422386460,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40844694","duration":480,"bikeId":"8248","endDate":1422387420,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1422386940,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"40844831","duration":300,"bikeId":"8239","endDate":1422387540,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1422387240,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40844119","duration":1920,"bikeId":"11142","endDate":1422387720,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1422385800,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40844812","duration":660,"bikeId":"11399","endDate":1422387840,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1422387180,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"40844881","duration":660,"bikeId":"11997","endDate":1422388020,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1422387360,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40844841","duration":900,"bikeId":"9067","endDate":1422388200,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1422387300,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40844776","duration":1200,"bikeId":"12432","endDate":1422388320,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1422387120,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40844932","duration":1020,"bikeId":"4741","endDate":1422388500,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422387480,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"40845124","duration":660,"bikeId":"10453","endDate":1422388620,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1422387960,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40845296","duration":360,"bikeId":"9718","endDate":1422388800,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1422388440,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"40845434","duration":180,"bikeId":"12352","endDate":1422388980,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1422388800,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40845312","duration":720,"bikeId":"12523","endDate":1422389160,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1422388440,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40845567","duration":180,"bikeId":"12906","endDate":1422389340,"endStationId":"286","endStationName":"St. John's Wood Road, St. John's Wood","startDate":1422389160,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40845545","duration":420,"bikeId":"759","endDate":1422389520,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422389100,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40845510","duration":720,"bikeId":"3781","endDate":1422389700,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1422388980,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40845290","duration":1560,"bikeId":"4198","endDate":1422389940,"endStationId":"471","endStationName":"Hewison Street, Old Ford","startDate":1422388380,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40845504","duration":1140,"bikeId":"11723","endDate":1422390120,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1422388980,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40845775","duration":600,"bikeId":"4879","endDate":1422390300,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1422389700,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40845983","duration":180,"bikeId":"10127","endDate":1422390540,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422390360,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40845632","duration":1440,"bikeId":"6024","endDate":1422390720,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1422389280,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40846137","duration":120,"bikeId":"10749","endDate":1422391020,"endStationId":"310","endStationName":"Black Prince Road, Vauxhall","startDate":1422390900,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40846019","duration":720,"bikeId":"8517","endDate":1422391200,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1422390480,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"40846076","duration":780,"bikeId":"1146","endDate":1422391440,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1422390660,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40846129","duration":780,"bikeId":"12254","endDate":1422391620,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1422390840,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"40846189","duration":840,"bikeId":"8373","endDate":1422391920,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1422391080,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40846345","duration":420,"bikeId":"7817","endDate":1422392160,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1422391740,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"40846490","duration":240,"bikeId":"4291","endDate":1422392460,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422392220,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40846460","duration":600,"bikeId":"3678","endDate":1422392700,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1422392100,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40846408","duration":1020,"bikeId":"9972","endDate":1422392940,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422391920,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"40846639","duration":360,"bikeId":"5740","endDate":1422393360,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1422393000,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40846642","duration":660,"bikeId":"3371","endDate":1422393720,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1422393060,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40846720","duration":600,"bikeId":"12525","endDate":1422393960,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1422393360,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"40846844","duration":240,"bikeId":"1209","endDate":1422394260,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1422394020,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40846890","duration":420,"bikeId":"5751","endDate":1422394680,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422394260,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40846938","duration":480,"bikeId":"9798","endDate":1422394980,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1422394500,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"40847022","duration":360,"bikeId":"5895","endDate":1422395280,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1422394920,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40846889","duration":1380,"bikeId":"10856","endDate":1422395640,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1422394260,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40847164","duration":300,"bikeId":"9908","endDate":1422396120,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1422395820,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40832580","duration":36960,"bikeId":"4929","endDate":1422396480,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1422359520,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40847207","duration":780,"bikeId":"9201","endDate":1422396900,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1422396120,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40846954","duration":2760,"bikeId":"290","endDate":1422397320,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1422394560,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"40846384","duration":6000,"bikeId":"3712","endDate":1422397800,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1422391800,"startStationId":"616","startStationName":"Aintree Street, Fulham"}, +{"_id":"40847432","duration":660,"bikeId":"2907","endDate":1422398160,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1422397500,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40847576","duration":360,"bikeId":"7799","endDate":1422398700,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1422398340,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40847524","duration":1020,"bikeId":"4329","endDate":1422399000,"endStationId":"609","endStationName":"Sugden Road, Battersea","startDate":1422397980,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"40847690","duration":360,"bikeId":"7784","endDate":1422399360,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422399000,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40847741","duration":420,"bikeId":"11139","endDate":1422399780,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1422399360,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"40847801","duration":600,"bikeId":"9150","endDate":1422400320,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1422399720,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40847595","duration":2340,"bikeId":"6980","endDate":1422400740,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422398400,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40847841","duration":1080,"bikeId":"9103","endDate":1422401160,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1422400080,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40848009","duration":240,"bikeId":"7460","endDate":1422401700,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1422401460,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40847936","duration":1380,"bikeId":"1061","endDate":1422402240,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1422400860,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"40848089","duration":900,"bikeId":"7085","endDate":1422403020,"endStationId":"208","endStationName":"Mallory Street, Marylebone","startDate":1422402120,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40848202","duration":60,"bikeId":"6313","endDate":1422403980,"endStationId":"134","endStationName":"Wapping High Street, Wapping","startDate":1422403920,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"40848229","duration":660,"bikeId":"7235","endDate":1422405060,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1422404400,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"40848281","duration":960,"bikeId":"32","endDate":1422406200,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422405240,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40848299","duration":2280,"bikeId":"12479","endDate":1422407940,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1422405660,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40848420","duration":660,"bikeId":"12917","endDate":1422410340,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1422409680,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40848494","duration":1140,"bikeId":"679","endDate":1422415140,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1422414000,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40848573","duration":120,"bikeId":"11490","endDate":1422419280,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1422419160,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"40848633","duration":540,"bikeId":"9808","endDate":1422423600,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1422423060,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"40848641","duration":1860,"bikeId":"5664","endDate":1422425220,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1422423360,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40848713","duration":1440,"bikeId":"1885","endDate":1422426360,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422424920,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"40848873","duration":360,"bikeId":"4291","endDate":1422426960,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422426600,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40848805","duration":1260,"bikeId":"1655","endDate":1422427380,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422426120,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40849022","duration":480,"bikeId":"7810","endDate":1422427740,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1422427260,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"40848943","duration":1080,"bikeId":"11321","endDate":1422428040,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1422426960,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"40849026","duration":1020,"bikeId":"10290","endDate":1422428340,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422427320,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40849279","duration":300,"bikeId":"8693","endDate":1422428580,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422428280,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"40849357","duration":300,"bikeId":"5496","endDate":1422428880,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1422428580,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40849143","duration":1260,"bikeId":"2768","endDate":1422429060,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1422427800,"startStationId":"609","startStationName":"Sugden Road, Battersea"}, +{"_id":"40849248","duration":1140,"bikeId":"7652","endDate":1422429360,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1422428220,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40849571","duration":300,"bikeId":"2891","endDate":1422429540,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422429240,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40849431","duration":960,"bikeId":"12534","endDate":1422429780,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1422428820,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40849362","duration":1440,"bikeId":"10043","endDate":1422430020,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1422428580,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40849429","duration":1380,"bikeId":"9588","endDate":1422430200,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1422428820,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40849634","duration":1020,"bikeId":"12205","endDate":1422430440,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1422429420,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40849985","duration":240,"bikeId":"787","endDate":1422430620,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1422430380,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40849791","duration":900,"bikeId":"8832","endDate":1422430800,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1422429900,"startStationId":"609","startStationName":"Sugden Road, Battersea"}, +{"_id":"40850000","duration":540,"bikeId":"8319","endDate":1422430980,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1422430440,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40850113","duration":480,"bikeId":"3371","endDate":1422431160,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1422430680,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40849900","duration":1080,"bikeId":"11505","endDate":1422431280,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422430200,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40850245","duration":540,"bikeId":"326","endDate":1422431400,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422430860,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40850478","duration":180,"bikeId":"2870","endDate":1422431520,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422431340,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40850236","duration":780,"bikeId":"5152","endDate":1422431640,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1422430860,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40850437","duration":480,"bikeId":"6883","endDate":1422431760,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1422431280,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40849955","duration":1560,"bikeId":"2842","endDate":1422431880,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1422430320,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"40850684","duration":300,"bikeId":"4930","endDate":1422432000,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1422431700,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40850715","duration":360,"bikeId":"9595","endDate":1422432120,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422431760,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40850336","duration":1140,"bikeId":"1212","endDate":1422432240,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422431100,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40850114","duration":1680,"bikeId":"4530","endDate":1422432360,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1422430680,"startStationId":"629","startStationName":"Morie Street, Wandsworth"}, +{"_id":"40850590","duration":840,"bikeId":"7327","endDate":1422432420,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1422431580,"startStationId":"692","startStationName":"Cadogan Close, Victoria Park"}, +{"_id":"40851082","duration":360,"bikeId":"1234","endDate":1422432540,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1422432180,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40850961","duration":540,"bikeId":"9919","endDate":1422432600,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1422432060,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40851228","duration":360,"bikeId":"4637","endDate":1422432720,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1422432360,"startStationId":"616","startStationName":"Aintree Street, Fulham"}, +{"_id":"40851451","duration":180,"bikeId":"1688","endDate":1422432780,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1422432600,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40850604","duration":1320,"bikeId":"5803","endDate":1422432900,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422431580,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40851386","duration":420,"bikeId":"638","endDate":1422432960,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422432540,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40851558","duration":300,"bikeId":"112","endDate":1422433020,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1422432720,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40851151","duration":900,"bikeId":"3420","endDate":1422433140,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1422432240,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40851256","duration":840,"bikeId":"10168","endDate":1422433200,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1422432360,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"40851759","duration":300,"bikeId":"9973","endDate":1422433260,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1422432960,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40851545","duration":660,"bikeId":"12723","endDate":1422433380,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422432720,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40851322","duration":960,"bikeId":"3733","endDate":1422433440,"endStationId":"467","endStationName":"Southern Grove, Bow","startDate":1422432480,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"40852310","duration":0,"bikeId":"3326","endDate":1422433500,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1422433500,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40851229","duration":1260,"bikeId":"12624","endDate":1422433620,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422432360,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40851756","duration":720,"bikeId":"2870","endDate":1422433680,"endStationId":"174","endStationName":"Strand, Strand","startDate":1422432960,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40852134","duration":420,"bikeId":"12382","endDate":1422433740,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1422433320,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40852179","duration":420,"bikeId":"13018","endDate":1422433800,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1422433380,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40851949","duration":780,"bikeId":"4678","endDate":1422433920,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1422433140,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40851599","duration":1200,"bikeId":"9413","endDate":1422433980,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1422432780,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"40851760","duration":1080,"bikeId":"8198","endDate":1422434040,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1422432960,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40852565","duration":420,"bikeId":"11280","endDate":1422434160,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422433740,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40856802","duration":420,"bikeId":"12989","endDate":1422434220,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1422433800,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40851456","duration":1680,"bikeId":"10402","endDate":1422434280,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422432600,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40852223","duration":900,"bikeId":"7116","endDate":1422434340,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1422433440,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40852613","duration":600,"bikeId":"10687","endDate":1422434400,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422433800,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40852926","duration":360,"bikeId":"7825","endDate":1422434460,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422434100,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"40851782","duration":1500,"bikeId":"1627","endDate":1422434520,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1422433020,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40852491","duration":900,"bikeId":"2143","endDate":1422434580,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1422433680,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"40852638","duration":840,"bikeId":"1884","endDate":1422434640,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1422433800,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40853033","duration":540,"bikeId":"11548","endDate":1422434700,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1422434160,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"40853113","duration":540,"bikeId":"10577","endDate":1422434760,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1422434220,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"40852684","duration":960,"bikeId":"3817","endDate":1422434820,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422433860,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40852887","duration":840,"bikeId":"3904","endDate":1422434880,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422434040,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40851959","duration":1800,"bikeId":"8416","endDate":1422434940,"endStationId":"289","endStationName":"South Audley Street, Mayfair","startDate":1422433140,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40853383","duration":540,"bikeId":"1653","endDate":1422435000,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422434460,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"40852485","duration":1380,"bikeId":"4609","endDate":1422435060,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1422433680,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"40853064","duration":900,"bikeId":"6338","endDate":1422435120,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422434220,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"40853826","duration":360,"bikeId":"9910","endDate":1422435180,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1422434820,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40853962","duration":240,"bikeId":"10205","endDate":1422435180,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1422434940,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40853716","duration":540,"bikeId":"3867","endDate":1422435240,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1422434700,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40853661","duration":660,"bikeId":"8168","endDate":1422435300,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1422434640,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"40854472","duration":840,"bikeId":"1563","endDate":1422435360,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1422434520,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"40853405","duration":960,"bikeId":"5398","endDate":1422435420,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422434460,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40853617","duration":780,"bikeId":"2801","endDate":1422435420,"endStationId":"143","endStationName":"Pont Street, Knightsbridge","startDate":1422434640,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"40853645","duration":840,"bikeId":"3989","endDate":1422435480,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1422434640,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40853122","duration":1320,"bikeId":"2378","endDate":1422435540,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422434220,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40853793","duration":840,"bikeId":"9983","endDate":1422435600,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422434760,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40854527","duration":180,"bikeId":"7217","endDate":1422435660,"endStationId":"172","endStationName":"Sumner Place, South Kensington","startDate":1422435480,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40853700","duration":960,"bikeId":"895","endDate":1422435660,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422434700,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40853351","duration":1320,"bikeId":"2390","endDate":1422435720,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1422434400,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40854331","duration":540,"bikeId":"3825","endDate":1422435840,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1422435300,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40854479","duration":420,"bikeId":"12485","endDate":1422435840,"endStationId":"283","endStationName":"Kingsway, Covent Garden","startDate":1422435420,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40854720","duration":300,"bikeId":"7985","endDate":1422435960,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1422435660,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"40854326","duration":720,"bikeId":"7924","endDate":1422436020,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1422435300,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40854616","duration":540,"bikeId":"6338","endDate":1422436080,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1422435540,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40853815","duration":1320,"bikeId":"7947","endDate":1422436140,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1422434820,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40854532","duration":720,"bikeId":"12525","endDate":1422436200,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1422435480,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40854534","duration":780,"bikeId":"3931","endDate":1422436260,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1422435480,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"40854770","duration":660,"bikeId":"9956","endDate":1422436380,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1422435720,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40854576","duration":900,"bikeId":"808","endDate":1422436440,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1422435540,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40855055","duration":420,"bikeId":"1291","endDate":1422436500,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1422436080,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40854315","duration":1320,"bikeId":"11473","endDate":1422436620,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1422435300,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40854600","duration":1140,"bikeId":"11935","endDate":1422436680,"endStationId":"775","endStationName":"Little Brook Green, Brook Green","startDate":1422435540,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40855043","duration":660,"bikeId":"9446","endDate":1422436740,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1422436080,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"40855311","duration":360,"bikeId":"8155","endDate":1422436800,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1422436440,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"40855066","duration":780,"bikeId":"5040","endDate":1422436920,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1422436140,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40855197","duration":780,"bikeId":"7823","endDate":1422437040,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422436260,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40855281","duration":720,"bikeId":"9792","endDate":1422437100,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1422436380,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40855695","duration":180,"bikeId":"5578","endDate":1422437220,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1422437040,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40854858","duration":1440,"bikeId":"7739","endDate":1422437280,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1422435840,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40855684","duration":360,"bikeId":"5467","endDate":1422437400,"endStationId":"276","endStationName":"Lower Thames Street, Monument","startDate":1422437040,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40855678","duration":480,"bikeId":"3208","endDate":1422437520,"endStationId":"551","endStationName":"Montgomery Square, Canary Wharf","startDate":1422437040,"startStationId":"547","startStationName":"East India DLR, Blackwall"}, +{"_id":"40854820","duration":1800,"bikeId":"5458","endDate":1422437580,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1422435780,"startStationId":"606","startStationName":"Addison Road, Holland Park"}, +{"_id":"40855736","duration":540,"bikeId":"6347","endDate":1422437700,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1422437160,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40855953","duration":300,"bikeId":"4725","endDate":1422437880,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1422437580,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40855670","duration":900,"bikeId":"10484","endDate":1422437940,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1422437040,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40855593","duration":1200,"bikeId":"11012","endDate":1422438060,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1422436860,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40855830","duration":960,"bikeId":"452","endDate":1422438240,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422437280,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40856192","duration":240,"bikeId":"1859","endDate":1422438420,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1422438180,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40855500","duration":1860,"bikeId":"8941","endDate":1422438600,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422436740,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40856179","duration":660,"bikeId":"6816","endDate":1422438780,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1422438120,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40856243","duration":600,"bikeId":"9790","endDate":1422438900,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1422438300,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40856145","duration":1080,"bikeId":"2285","endDate":1422439080,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1422438000,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40856441","duration":420,"bikeId":"8651","endDate":1422439260,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422438840,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40856019","duration":1740,"bikeId":"9001","endDate":1422439440,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1422437700,"startStationId":"441","startStationName":"Sail Street, Vauxhall"}, +{"_id":"40856312","duration":1200,"bikeId":"6954","endDate":1422439680,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1422438480,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40856590","duration":480,"bikeId":"548","endDate":1422439980,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422439500,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40856666","duration":420,"bikeId":"11820","endDate":1422440280,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1422439860,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40856466","duration":1620,"bikeId":"10078","endDate":1422440580,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422438960,"startStationId":"477","startStationName":"Spindrift Avenue, Millwall"}, +{"_id":"40856766","duration":600,"bikeId":"7825","endDate":1422440940,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1422440340,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40856849","duration":540,"bikeId":"1529","endDate":1422441240,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1422440700,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"40856900","duration":660,"bikeId":"1889","endDate":1422441660,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1422441000,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40856786","duration":1680,"bikeId":"9887","endDate":1422442140,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1422440460,"startStationId":"164","startStationName":"Cleveland Gardens, Bayswater"}, +{"_id":"40857058","duration":420,"bikeId":"8150","endDate":1422442680,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1422442260,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40857117","duration":360,"bikeId":"5770","endDate":1422443220,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1422442860,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"40857202","duration":420,"bikeId":"7480","endDate":1422443820,"endStationId":"442","endStationName":"Walmer Road, Notting Hill","startDate":1422443400,"startStationId":"647","startStationName":"Richmond Way, Shepherd's Bush"}, +{"_id":"40857313","duration":180,"bikeId":"787","endDate":1422444300,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1422444120,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"40857366","duration":360,"bikeId":"10787","endDate":1422444780,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1422444420,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40857328","duration":1020,"bikeId":"4871","endDate":1422445200,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1422444180,"startStationId":"352","startStationName":"Vauxhall Street, Vauxhall"}, +{"_id":"40857394","duration":1020,"bikeId":"3803","endDate":1422445680,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1422444660,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40857439","duration":1140,"bikeId":"12910","endDate":1422446040,"endStationId":"174","endStationName":"Strand, Strand","startDate":1422444900,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"40857503","duration":1080,"bikeId":"12361","endDate":1422446340,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422445260,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"40857677","duration":480,"bikeId":"11435","endDate":1422446760,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1422446280,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40857778","duration":300,"bikeId":"10708","endDate":1422447000,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1422446700,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40857641","duration":1260,"bikeId":"4789","endDate":1422447420,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1422446160,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40857857","duration":720,"bikeId":"4865","endDate":1422447840,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1422447120,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40857824","duration":1380,"bikeId":"7007","endDate":1422448320,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422446940,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40857977","duration":660,"bikeId":"11352","endDate":1422448740,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1422448080,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"40858115","duration":240,"bikeId":"7998","endDate":1422449160,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1422448920,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"40858098","duration":660,"bikeId":"8812","endDate":1422449460,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1422448800,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"40858245","duration":300,"bikeId":"9692","endDate":1422449760,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1422449460,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"40858139","duration":1080,"bikeId":"3881","endDate":1422450060,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1422448980,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40858329","duration":660,"bikeId":"3752","endDate":1422450480,"endStationId":"496","endStationName":"Devons Road, Bow","startDate":1422449820,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40858071","duration":2100,"bikeId":"2428","endDate":1422450720,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422448620,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40858549","duration":240,"bikeId":"11820","endDate":1422451080,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1422450840,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"40858566","duration":420,"bikeId":"12569","endDate":1422451440,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1422451020,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40858607","duration":540,"bikeId":"5026","endDate":1422451860,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1422451320,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40858642","duration":660,"bikeId":"11473","endDate":1422452280,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1422451620,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40858777","duration":300,"bikeId":"11244","endDate":1422452700,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1422452400,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40858820","duration":480,"bikeId":"7587","endDate":1422453060,"endStationId":"257","endStationName":"Westminster University, Marylebone","startDate":1422452580,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"40858890","duration":480,"bikeId":"10450","endDate":1422453420,"endStationId":"212","endStationName":"Campden Hill Road, Notting Hill","startDate":1422452940,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"40859000","duration":360,"bikeId":"1317","endDate":1422453780,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1422453420,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40859039","duration":540,"bikeId":"5865","endDate":1422454200,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422453660,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40859142","duration":240,"bikeId":"2672","endDate":1422454440,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422454200,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40859200","duration":240,"bikeId":"10306","endDate":1422454800,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1422454560,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40859232","duration":480,"bikeId":"10851","endDate":1422455160,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1422454680,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40859352","duration":240,"bikeId":"13009","endDate":1422455520,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1422455280,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40859416","duration":300,"bikeId":"1791","endDate":1422455940,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1422455640,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40859166","duration":1980,"bikeId":"8125","endDate":1422456300,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1422454320,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40859531","duration":540,"bikeId":"10099","endDate":1422456660,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1422456120,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40859532","duration":840,"bikeId":"1259","endDate":1422456960,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1422456120,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40859596","duration":840,"bikeId":"6444","endDate":1422457260,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1422456420,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40859757","duration":300,"bikeId":"6798","endDate":1422457620,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1422457320,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40859713","duration":900,"bikeId":"7837","endDate":1422457980,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1422457080,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40859856","duration":540,"bikeId":"11542","endDate":1422458280,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1422457740,"startStationId":"771","startStationName":"Rifle Place, Avondale"}, +{"_id":"40859902","duration":720,"bikeId":"5135","endDate":1422458640,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422457920,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"40859995","duration":660,"bikeId":"3652","endDate":1422459000,"endStationId":"384","endStationName":"Marloes Road, Kensington","startDate":1422458340,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40860109","duration":540,"bikeId":"6563","endDate":1422459300,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1422458760,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40860145","duration":660,"bikeId":"2872","endDate":1422459660,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1422459000,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40860316","duration":240,"bikeId":"3764","endDate":1422459900,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422459660,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40860410","duration":120,"bikeId":"8243","endDate":1422460080,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1422459960,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40860480","duration":60,"bikeId":"56","endDate":1422460380,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1422460320,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"40860429","duration":600,"bikeId":"8634","endDate":1422460680,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1422460080,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40860547","duration":420,"bikeId":"4276","endDate":1422460920,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1422460500,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40860509","duration":780,"bikeId":"466","endDate":1422461160,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1422460380,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40860469","duration":1140,"bikeId":"24","endDate":1422461400,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1422460260,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40860690","duration":540,"bikeId":"4327","endDate":1422461580,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422461040,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"40860813","duration":420,"bikeId":"3071","endDate":1422461820,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422461400,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"40860827","duration":600,"bikeId":"13006","endDate":1422462000,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422461400,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"40861007","duration":360,"bikeId":"312","endDate":1422462240,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1422461880,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40861043","duration":420,"bikeId":"1719","endDate":1422462420,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1422462000,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40861064","duration":540,"bikeId":"10531","endDate":1422462600,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422462060,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40861085","duration":660,"bikeId":"12723","endDate":1422462780,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1422462120,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40861071","duration":900,"bikeId":"6561","endDate":1422462960,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1422462060,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"40861370","duration":240,"bikeId":"11239","endDate":1422463200,"endStationId":"189","endStationName":"Claremont Square, Angel","startDate":1422462960,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40861105","duration":1200,"bikeId":"6469","endDate":1422463380,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422462180,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40861297","duration":720,"bikeId":"3205","endDate":1422463560,"endStationId":"76","endStationName":"Longford Street, Regent's Park","startDate":1422462840,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40861372","duration":720,"bikeId":"6045","endDate":1422463680,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1422462960,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"40861685","duration":180,"bikeId":"3036","endDate":1422463860,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1422463680,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40861458","duration":900,"bikeId":"969","endDate":1422464040,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422463140,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40861241","duration":1560,"bikeId":"9838","endDate":1422464220,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1422462660,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40861319","duration":1560,"bikeId":"7851","endDate":1422464400,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1422462840,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40861709","duration":840,"bikeId":"10367","endDate":1422464580,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1422463740,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40861831","duration":660,"bikeId":"3850","endDate":1422464700,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422464040,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40861694","duration":1140,"bikeId":"7784","endDate":1422464820,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1422463680,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40862047","duration":420,"bikeId":"1341","endDate":1422465000,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1422464580,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40861539","duration":1800,"bikeId":"1157","endDate":1422465120,"endStationId":"412","endStationName":"Cleaver Street, Kennington","startDate":1422463320,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40862313","duration":240,"bikeId":"12469","endDate":1422465240,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1422465000,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40862257","duration":480,"bikeId":"4198","endDate":1422465360,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422464880,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40862421","duration":300,"bikeId":"4260","endDate":1422465480,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422465180,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40862433","duration":420,"bikeId":"7646","endDate":1422465600,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1422465180,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40862462","duration":480,"bikeId":"6472","endDate":1422465720,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1422465240,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40862566","duration":480,"bikeId":"12728","endDate":1422465840,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422465360,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40862159","duration":1260,"bikeId":"12449","endDate":1422465960,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422464700,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40862690","duration":480,"bikeId":"986","endDate":1422466080,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1422465600,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"40862691","duration":540,"bikeId":"6404","endDate":1422466140,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1422465600,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"40862904","duration":240,"bikeId":"1695","endDate":1422466260,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1422466020,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40863096","duration":120,"bikeId":"10134","endDate":1422466380,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1422466260,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40862447","duration":1320,"bikeId":"12064","endDate":1422466500,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1422465180,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"40862893","duration":660,"bikeId":"10659","endDate":1422466620,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1422465960,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40861683","duration":3000,"bikeId":"10289","endDate":1422466680,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1422463680,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"40862857","duration":960,"bikeId":"12953","endDate":1422466860,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1422465900,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"40862584","duration":1560,"bikeId":"7460","endDate":1422466980,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1422465420,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"40862945","duration":1020,"bikeId":"12728","endDate":1422467040,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1422466020,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40863356","duration":540,"bikeId":"3425","endDate":1422467160,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1422466620,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"40863083","duration":1020,"bikeId":"2694","endDate":1422467280,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422466260,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"40863373","duration":660,"bikeId":"8225","endDate":1422467340,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1422466680,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40863707","duration":360,"bikeId":"4748","endDate":1422467400,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1422467040,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"40863488","duration":720,"bikeId":"12254","endDate":1422467520,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422466800,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40863919","duration":300,"bikeId":"5060","endDate":1422467580,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1422467280,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40863456","duration":900,"bikeId":"4421","endDate":1422467640,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422466740,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40864141","duration":120,"bikeId":"7892","endDate":1422467700,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1422467580,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40863910","duration":480,"bikeId":"12501","endDate":1422467760,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422467280,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40863653","duration":900,"bikeId":"3253","endDate":1422467880,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1422466980,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"40863750","duration":840,"bikeId":"9611","endDate":1422467940,"endStationId":"700","endStationName":"Battersea Church Road, Battersea","startDate":1422467100,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"40863803","duration":840,"bikeId":"5282","endDate":1422468000,"endStationId":"76","endStationName":"Longford Street, Regent's Park","startDate":1422467160,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40863843","duration":900,"bikeId":"8035","endDate":1422468120,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422467220,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40863257","duration":1680,"bikeId":"2959","endDate":1422468180,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1422466500,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"40863438","duration":1500,"bikeId":"6302","endDate":1422468240,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1422466740,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"40864314","duration":600,"bikeId":"985","endDate":1422468360,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1422467760,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40864537","duration":360,"bikeId":"6765","endDate":1422468420,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422468060,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40864506","duration":480,"bikeId":"1002","endDate":1422468540,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1422468060,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40863842","duration":1380,"bikeId":"12829","endDate":1422468600,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1422467220,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40864687","duration":480,"bikeId":"4935","endDate":1422468720,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422468240,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40864694","duration":480,"bikeId":"4817","endDate":1422468780,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1422468300,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40864663","duration":660,"bikeId":"6901","endDate":1422468900,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1422468240,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40864682","duration":780,"bikeId":"9067","endDate":1422469020,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422468240,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40864333","duration":1260,"bikeId":"10534","endDate":1422469080,"endStationId":"606","endStationName":"Addison Road, Holland Park","startDate":1422467820,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"40864795","duration":720,"bikeId":"8309","endDate":1422469140,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1422468420,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40865018","duration":600,"bikeId":"898","endDate":1422469260,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422468660,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40864487","duration":1320,"bikeId":"9168","endDate":1422469320,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422468000,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40865256","duration":480,"bikeId":"8702","endDate":1422469440,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422468960,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40865000","duration":840,"bikeId":"12232","endDate":1422469500,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422468660,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40865130","duration":780,"bikeId":"13058","endDate":1422469560,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1422468780,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40864883","duration":1200,"bikeId":"3112","endDate":1422469680,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422468480,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40865316","duration":660,"bikeId":"439","endDate":1422469740,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1422469080,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40865207","duration":960,"bikeId":"7691","endDate":1422469860,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1422468900,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40865733","duration":300,"bikeId":"5821","endDate":1422469920,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1422469620,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"40865649","duration":480,"bikeId":"9196","endDate":1422469980,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422469500,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40865485","duration":780,"bikeId":"8332","endDate":1422470040,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422469260,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40865807","duration":480,"bikeId":"9042","endDate":1422470160,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1422469680,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40865656","duration":780,"bikeId":"6082","endDate":1422470280,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1422469500,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40865631","duration":840,"bikeId":"3742","endDate":1422470340,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422469500,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40865945","duration":540,"bikeId":"11955","endDate":1422470460,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422469920,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40866352","duration":0,"bikeId":"3637","endDate":1422470580,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1422470580,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40866321","duration":180,"bikeId":"12962","endDate":1422470700,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1422470520,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40865688","duration":1200,"bikeId":"7899","endDate":1422470760,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1422469560,"startStationId":"624","startStationName":"Courland Grove, Wandsworth Road"}, +{"_id":"40865969","duration":900,"bikeId":"12949","endDate":1422470880,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1422469980,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40861993","duration":6480,"bikeId":"8003","endDate":1422470940,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1422464460,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40866239","duration":660,"bikeId":"5210","endDate":1422471060,"endStationId":"690","endStationName":"Stanley Grove, Battersea","startDate":1422470400,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40865922","duration":1260,"bikeId":"3351","endDate":1422471120,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422469860,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40865901","duration":1380,"bikeId":"10678","endDate":1422471240,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422469860,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40866565","duration":420,"bikeId":"8461","endDate":1422471360,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1422470940,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"40866042","duration":1320,"bikeId":"1345","endDate":1422471420,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1422470100,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40866201","duration":1200,"bikeId":"12215","endDate":1422471540,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422470340,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40865998","duration":1680,"bikeId":"12428","endDate":1422471660,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422469980,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40866197","duration":1380,"bikeId":"2678","endDate":1422471720,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1422470340,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"40866688","duration":720,"bikeId":"11131","endDate":1422471840,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1422471120,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40866834","duration":540,"bikeId":"6384","endDate":1422471960,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1422471420,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40866746","duration":840,"bikeId":"8340","endDate":1422472080,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1422471240,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40866621","duration":1200,"bikeId":"12022","endDate":1422472200,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1422471000,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40864435","duration":4440,"bikeId":"4307","endDate":1422472380,"endStationId":"734","endStationName":"Plough Terrace, Clapham Junction","startDate":1422467940,"startStationId":"734","startStationName":"Plough Terrace, Clapham Junction"}, +{"_id":"40867067","duration":600,"bikeId":"4546","endDate":1422472500,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1422471900,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40866980","duration":1020,"bikeId":"3628","endDate":1422472680,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1422471660,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40866831","duration":1380,"bikeId":"844","endDate":1422472800,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1422471420,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40866835","duration":1560,"bikeId":"9653","endDate":1422472980,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1422471420,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40867476","duration":300,"bikeId":"616","endDate":1422473100,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1422472800,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40867448","duration":540,"bikeId":"11218","endDate":1422473220,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1422472680,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40867481","duration":600,"bikeId":"12855","endDate":1422473400,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422472800,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40867627","duration":360,"bikeId":"8924","endDate":1422473520,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1422473160,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40866707","duration":2460,"bikeId":"11073","endDate":1422473640,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1422471180,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40867754","duration":420,"bikeId":"7712","endDate":1422473820,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1422473400,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40867844","duration":420,"bikeId":"2803","endDate":1422474000,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1422473580,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40867011","duration":2400,"bikeId":"12710","endDate":1422474120,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1422471720,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40867831","duration":720,"bikeId":"4366","endDate":1422474300,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1422473580,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"40867861","duration":780,"bikeId":"1697","endDate":1422474420,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1422473640,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40868134","duration":240,"bikeId":"3229","endDate":1422474600,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1422474360,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40868156","duration":300,"bikeId":"6234","endDate":1422474720,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1422474420,"startStationId":"8","startStationName":"Lodge Road, St. John's Wood"}, +{"_id":"40867940","duration":1080,"bikeId":"7559","endDate":1422474900,"endStationId":"763","endStationName":"Mile End Park Leisure Centre, Mile End","startDate":1422473820,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40868132","duration":780,"bikeId":"5281","endDate":1422475080,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1422474300,"startStationId":"161","startStationName":"Guildhouse Street, Victoria"}, +{"_id":"40868369","duration":240,"bikeId":"212","endDate":1422475320,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1422475080,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40868345","duration":480,"bikeId":"5803","endDate":1422475500,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422475020,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40868364","duration":720,"bikeId":"3351","endDate":1422475800,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1422475080,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40868443","duration":660,"bikeId":"3503","endDate":1422475980,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1422475320,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40868556","duration":480,"bikeId":"12412","endDate":1422476220,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422475740,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"40868579","duration":600,"bikeId":"8329","endDate":1422476400,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1422475800,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40868657","duration":480,"bikeId":"10805","endDate":1422476640,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1422476160,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"40868742","duration":480,"bikeId":"10254","endDate":1422476880,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422476400,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40868695","duration":780,"bikeId":"3352","endDate":1422477060,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1422476280,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40868905","duration":300,"bikeId":"11020","endDate":1422477360,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422477060,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40868992","duration":180,"bikeId":"7769","endDate":1422477600,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1422477420,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40868981","duration":480,"bikeId":"10093","endDate":1422477840,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1422477360,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"40868994","duration":720,"bikeId":"7182","endDate":1422478140,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422477420,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40868929","duration":1260,"bikeId":"4049","endDate":1422478440,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422477180,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40868966","duration":1440,"bikeId":"8751","endDate":1422478740,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1422477300,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40869326","duration":120,"bikeId":"10900","endDate":1422479100,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422478980,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40869183","duration":1140,"bikeId":"11096","endDate":1422479400,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1422478260,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40869422","duration":360,"bikeId":"8062","endDate":1422479700,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422479340,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40869355","duration":960,"bikeId":"11512","endDate":1422480000,"endStationId":"775","endStationName":"Little Brook Green, Brook Green","startDate":1422479040,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40869379","duration":1200,"bikeId":"10089","endDate":1422480360,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1422479160,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"40869479","duration":1080,"bikeId":"5381","endDate":1422480660,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1422479580,"startStationId":"612","startStationName":"Wandsworth Rd, Isley Court, Wandsworth Road"}, +{"_id":"40869541","duration":1080,"bikeId":"4985","endDate":1422480960,"endStationId":"365","endStationName":"City Road, Angel","startDate":1422479880,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"40869738","duration":480,"bikeId":"6997","endDate":1422481380,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1422480900,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"40869698","duration":960,"bikeId":"61","endDate":1422481680,"endStationId":"164","endStationName":"Cleveland Gardens, Bayswater","startDate":1422480720,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40869867","duration":420,"bikeId":"4347","endDate":1422482100,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1422481680,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"40869755","duration":1500,"bikeId":"11937","endDate":1422482520,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1422481020,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40869852","duration":1380,"bikeId":"7744","endDate":1422483000,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1422481620,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40870069","duration":480,"bikeId":"6609","endDate":1422483360,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1422482880,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40869981","duration":1260,"bikeId":"8671","endDate":1422483660,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1422482400,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40870102","duration":1140,"bikeId":"9743","endDate":1422484200,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1422483060,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"40870054","duration":1800,"bikeId":"3092","endDate":1422484620,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1422482820,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40870332","duration":420,"bikeId":"1","endDate":1422485160,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1422484740,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40870279","duration":1320,"bikeId":"3577","endDate":1422485700,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1422484380,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40870480","duration":240,"bikeId":"911","endDate":1422486420,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1422486180,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40870373","duration":1920,"bikeId":"5396","endDate":1422487080,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1422485160,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40870580","duration":720,"bikeId":"2329","endDate":1422487800,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1422487080,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40870627","duration":780,"bikeId":"12017","endDate":1422488400,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1422487620,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"40870621","duration":1800,"bikeId":"10514","endDate":1422489360,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1422487560,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40870755","duration":960,"bikeId":"8300","endDate":1422490560,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1422489600,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40870852","duration":540,"bikeId":"3696","endDate":1422492780,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422492240,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40870880","duration":1800,"bikeId":"12503","endDate":1422494880,"endStationId":"716","endStationName":"Stainsby Road , Poplar","startDate":1422493080,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40870964","duration":1680,"bikeId":"3107","endDate":1422497280,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1422495600,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40871046","duration":1260,"bikeId":"9433","endDate":1422502320,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1422501060,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40871122","duration":540,"bikeId":"1700","endDate":1422508920,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1422508380,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"40871194","duration":420,"bikeId":"10052","endDate":1422511620,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1422511200,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40871274","duration":540,"bikeId":"12323","endDate":1422512700,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422512160,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40871360","duration":360,"bikeId":"2824","endDate":1422513180,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1422512820,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40871418","duration":420,"bikeId":"10909","endDate":1422513780,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422513360,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"40871431","duration":660,"bikeId":"8795","endDate":1422514080,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422513420,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40871589","duration":360,"bikeId":"5552","endDate":1422514440,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1422514080,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40871550","duration":900,"bikeId":"10349","endDate":1422514740,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1422513840,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40871731","duration":300,"bikeId":"7695","endDate":1422515040,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1422514740,"startStationId":"675","startStationName":"Usk Road, Battersea"}, +{"_id":"40871549","duration":1500,"bikeId":"7427","endDate":1422515340,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1422513840,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40871575","duration":1740,"bikeId":"8590","endDate":1422515700,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1422513960,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40871944","duration":360,"bikeId":"5523","endDate":1422515880,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1422515520,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40872043","duration":300,"bikeId":"1576","endDate":1422516120,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1422515820,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"40872142","duration":240,"bikeId":"11693","endDate":1422516360,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1422516120,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40871982","duration":900,"bikeId":"6409","endDate":1422516540,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1422515640,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40872251","duration":420,"bikeId":"1678","endDate":1422516720,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1422516300,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40872301","duration":480,"bikeId":"5225","endDate":1422516900,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1422516420,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40872292","duration":660,"bikeId":"10289","endDate":1422517080,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1422516420,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40872431","duration":480,"bikeId":"5456","endDate":1422517200,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422516720,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40872541","duration":480,"bikeId":"12332","endDate":1422517380,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1422516900,"startStationId":"402","startStationName":"Penfold Street, Marylebone"}, +{"_id":"40872321","duration":1020,"bikeId":"12310","endDate":1422517500,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1422516480,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40872527","duration":720,"bikeId":"283","endDate":1422517620,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1422516900,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40872627","duration":600,"bikeId":"1228","endDate":1422517680,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1422517080,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40872313","duration":1320,"bikeId":"7707","endDate":1422517800,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1422516480,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40872911","duration":420,"bikeId":"9183","endDate":1422517920,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1422517500,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40872724","duration":840,"bikeId":"2612","endDate":1422518040,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1422517200,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40872329","duration":1620,"bikeId":"11046","endDate":1422518100,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1422516480,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"40872295","duration":1800,"bikeId":"8036","endDate":1422518220,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1422516420,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40873125","duration":480,"bikeId":"7442","endDate":1422518280,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1422517800,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40872662","duration":1320,"bikeId":"3272","endDate":1422518400,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422517080,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40873286","duration":480,"bikeId":"13018","endDate":1422518460,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1422517980,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40872822","duration":1200,"bikeId":"10992","endDate":1422518580,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1422517380,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"40873483","duration":420,"bikeId":"235","endDate":1422518700,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1422518280,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40872925","duration":1260,"bikeId":"11783","endDate":1422518760,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1422517500,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40873476","duration":600,"bikeId":"7143","endDate":1422518880,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1422518280,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40873504","duration":660,"bikeId":"11051","endDate":1422518940,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1422518280,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"40873712","duration":480,"bikeId":"6125","endDate":1422519060,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1422518580,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40873670","duration":600,"bikeId":"10181","endDate":1422519120,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1422518520,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"40873418","duration":1080,"bikeId":"7822","endDate":1422519240,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1422518160,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40873834","duration":600,"bikeId":"9807","endDate":1422519300,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422518700,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40873973","duration":600,"bikeId":"112","endDate":1422519420,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1422518820,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"40873091","duration":1740,"bikeId":"2492","endDate":1422519480,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1422517740,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40873705","duration":960,"bikeId":"2967","endDate":1422519540,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1422518580,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40873430","duration":1440,"bikeId":"4381","endDate":1422519660,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1422518220,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40874412","duration":360,"bikeId":"1386","endDate":1422519720,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1422519360,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40874039","duration":840,"bikeId":"10189","endDate":1422519780,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1422518940,"startStationId":"600","startStationName":"South Lambeth Road, Vauxhall"}, +{"_id":"40874554","duration":360,"bikeId":"6812","endDate":1422519840,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422519480,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40873992","duration":1020,"bikeId":"8285","endDate":1422519900,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1422518880,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40873761","duration":1380,"bikeId":"5302","endDate":1422520020,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1422518640,"startStationId":"209","startStationName":"Denyer Street, Knightsbridge"}, +{"_id":"40874853","duration":360,"bikeId":"11227","endDate":1422520080,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1422519720,"startStationId":"297","startStationName":"Geraldine Street, Elephant & Castle"}, +{"_id":"40875101","duration":180,"bikeId":"10556","endDate":1422520140,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1422519960,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40874823","duration":480,"bikeId":"5631","endDate":1422520200,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1422519720,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40874570","duration":780,"bikeId":"8221","endDate":1422520260,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1422519480,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40874323","duration":1080,"bikeId":"4049","endDate":1422520320,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1422519240,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40874232","duration":1320,"bikeId":"4055","endDate":1422520440,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1422519120,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40874437","duration":1140,"bikeId":"6843","endDate":1422520500,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1422519360,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40875052","duration":600,"bikeId":"12907","endDate":1422520560,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1422519960,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"40875023","duration":720,"bikeId":"7406","endDate":1422520620,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422519900,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40874837","duration":960,"bikeId":"12408","endDate":1422520680,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1422519720,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"40874620","duration":1200,"bikeId":"12863","endDate":1422520740,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1422519540,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40875566","duration":420,"bikeId":"2908","endDate":1422520800,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422520380,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40874771","duration":1200,"bikeId":"2526","endDate":1422520860,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422519660,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"40874891","duration":1140,"bikeId":"10926","endDate":1422520920,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1422519780,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"40876023","duration":240,"bikeId":"1851","endDate":1422520980,"endStationId":"149","endStationName":"Kennington Road Post Office, Oval","startDate":1422520740,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"40874741","duration":1380,"bikeId":"4913","endDate":1422521040,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1422519660,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40875270","duration":960,"bikeId":"8051","endDate":1422521100,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1422520140,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40875532","duration":780,"bikeId":"12806","endDate":1422521160,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1422520380,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40875590","duration":840,"bikeId":"9037","endDate":1422521220,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1422520380,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40876439","duration":240,"bikeId":"9360","endDate":1422521280,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1422521040,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40874867","duration":1560,"bikeId":"7394","endDate":1422521340,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1422519780,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40875307","duration":1200,"bikeId":"6271","endDate":1422521400,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1422520200,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40875462","duration":1080,"bikeId":"1675","endDate":1422521400,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1422520320,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40876251","duration":600,"bikeId":"10338","endDate":1422521460,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1422520860,"startStationId":"375","startStationName":"Kensington Town Hall, Kensington"}, +{"_id":"40875922","duration":840,"bikeId":"3678","endDate":1422521520,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1422520680,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40875974","duration":900,"bikeId":"5888","endDate":1422521580,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1422520680,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40876570","duration":420,"bikeId":"6472","endDate":1422521580,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422521160,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40876619","duration":480,"bikeId":"2581","endDate":1422521640,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1422521160,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"40875966","duration":1020,"bikeId":"23","endDate":1422521700,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1422520680,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40876631","duration":600,"bikeId":"6339","endDate":1422521760,"endStationId":"236","endStationName":"Fashion Street, Whitechapel","startDate":1422521160,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40877040","duration":300,"bikeId":"4857","endDate":1422521820,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1422521520,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40876385","duration":840,"bikeId":"11379","endDate":1422521820,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1422520980,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40876769","duration":600,"bikeId":"5451","endDate":1422521880,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1422521280,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40875757","duration":1440,"bikeId":"8704","endDate":1422521940,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1422520500,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40877209","duration":300,"bikeId":"12209","endDate":1422522000,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1422521700,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40876576","duration":840,"bikeId":"7782","endDate":1422522000,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422521160,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40876258","duration":1140,"bikeId":"4762","endDate":1422522060,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1422520920,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"40876367","duration":1140,"bikeId":"7368","endDate":1422522120,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422520980,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"40876820","duration":840,"bikeId":"8248","endDate":1422522180,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1422521340,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40877038","duration":720,"bikeId":"12462","endDate":1422522240,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1422521520,"startStationId":"696","startStationName":"Charing Cross Hospital, Hammersmith"}, +{"_id":"40875147","duration":2280,"bikeId":"2902","endDate":1422522300,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422520020,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40877314","duration":600,"bikeId":"9631","endDate":1422522360,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1422521760,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40877376","duration":660,"bikeId":"6578","endDate":1422522480,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1422521820,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40877621","duration":480,"bikeId":"3628","endDate":1422522540,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1422522060,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40876698","duration":1380,"bikeId":"5385","endDate":1422522600,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1422521220,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"40877389","duration":840,"bikeId":"4812","endDate":1422522660,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1422521820,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"40876656","duration":1500,"bikeId":"12392","endDate":1422522720,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1422521220,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"40878053","duration":300,"bikeId":"10304","endDate":1422522840,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422522540,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40877720","duration":720,"bikeId":"2226","endDate":1422522900,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1422522180,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40877639","duration":900,"bikeId":"3058","endDate":1422522960,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422522060,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40878246","duration":240,"bikeId":"1334","endDate":1422523080,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1422522840,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40878177","duration":360,"bikeId":"8329","endDate":1422523140,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1422522780,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40877833","duration":900,"bikeId":"9895","endDate":1422523200,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1422522300,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40877915","duration":900,"bikeId":"11183","endDate":1422523260,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1422522360,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40878018","duration":840,"bikeId":"11307","endDate":1422523380,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1422522540,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40878063","duration":840,"bikeId":"7562","endDate":1422523440,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422522600,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"40878160","duration":780,"bikeId":"7924","endDate":1422523500,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1422522720,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40878599","duration":180,"bikeId":"11975","endDate":1422523620,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422523440,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40878244","duration":840,"bikeId":"10568","endDate":1422523680,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1422522840,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"40878654","duration":300,"bikeId":"11444","endDate":1422523800,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1422523500,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"40878056","duration":1320,"bikeId":"12884","endDate":1422523920,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1422522600,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40878729","duration":360,"bikeId":"6615","endDate":1422524040,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422523680,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40878738","duration":480,"bikeId":"333","endDate":1422524160,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1422523680,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40878797","duration":480,"bikeId":"9718","endDate":1422524280,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422523800,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40878997","duration":240,"bikeId":"9254","endDate":1422524400,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1422524160,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40878716","duration":900,"bikeId":"9227","endDate":1422524520,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1422523620,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40879103","duration":240,"bikeId":"9081","endDate":1422524640,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1422524400,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40878979","duration":600,"bikeId":"6592","endDate":1422524760,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1422524160,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40879053","duration":660,"bikeId":"4226","endDate":1422524940,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1422524280,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40878530","duration":1800,"bikeId":"681","endDate":1422525060,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1422523260,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40878593","duration":1800,"bikeId":"12925","endDate":1422525180,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1422523380,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40878680","duration":1740,"bikeId":"23","endDate":1422525300,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1422523560,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40879333","duration":480,"bikeId":"10954","endDate":1422525420,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1422524940,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40879443","duration":420,"bikeId":"4937","endDate":1422525600,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422525180,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40879303","duration":900,"bikeId":"5840","endDate":1422525780,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1422524880,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"40879352","duration":1020,"bikeId":"10953","endDate":1422525960,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1422524940,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40879444","duration":1020,"bikeId":"11908","endDate":1422526200,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1422525180,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"40879617","duration":600,"bikeId":"7458","endDate":1422526440,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422525840,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40879525","duration":1200,"bikeId":"12116","endDate":1422526680,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422525480,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40879611","duration":1200,"bikeId":"4205","endDate":1422526980,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1422525780,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40879499","duration":1920,"bikeId":"6902","endDate":1422527280,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1422525360,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"40879747","duration":1260,"bikeId":"2071","endDate":1422527580,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422526320,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40879967","duration":660,"bikeId":"8788","endDate":1422528000,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1422527340,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40879897","duration":1200,"bikeId":"2368","endDate":1422528300,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1422527100,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40880173","duration":480,"bikeId":"8400","endDate":1422528600,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1422528120,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40880165","duration":720,"bikeId":"172","endDate":1422528840,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1422528120,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40880218","duration":780,"bikeId":"7835","endDate":1422529080,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1422528300,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40880343","duration":540,"bikeId":"2660","endDate":1422529320,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1422528780,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40880349","duration":780,"bikeId":"4281","endDate":1422529620,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422528840,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40880519","duration":360,"bikeId":"9283","endDate":1422529980,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1422529620,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40880456","duration":900,"bikeId":"3981","endDate":1422530280,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1422529380,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40880612","duration":480,"bikeId":"2148","endDate":1422530640,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1422530160,"startStationId":"563","startStationName":"Preston's Road, Cubitt Town"}, +{"_id":"40880510","duration":1380,"bikeId":"12105","endDate":1422530940,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1422529560,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40880780","duration":360,"bikeId":"7118","endDate":1422531360,"endStationId":"366","endStationName":"Millennium Hotel, Mayfair","startDate":1422531000,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40880745","duration":900,"bikeId":"12771","endDate":1422531780,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1422530880,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"40880583","duration":2100,"bikeId":"7144","endDate":1422532080,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1422529980,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40880734","duration":1620,"bikeId":"2048","endDate":1422532440,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1422530820,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"40881065","duration":300,"bikeId":"363","endDate":1422532680,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1422532380,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40881140","duration":420,"bikeId":"12501","endDate":1422533100,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422532680,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40881040","duration":1020,"bikeId":"9630","endDate":1422533340,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1422532320,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40881311","duration":180,"bikeId":"8964","endDate":1422533580,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1422533400,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40881366","duration":240,"bikeId":"9109","endDate":1422533880,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1422533640,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40881252","duration":1020,"bikeId":"12106","endDate":1422534120,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422533100,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40881440","duration":480,"bikeId":"92","endDate":1422534360,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422533880,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40881319","duration":1200,"bikeId":"6093","endDate":1422534600,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1422533400,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40881647","duration":180,"bikeId":"8604","endDate":1422534900,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1422534720,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40881673","duration":360,"bikeId":"6808","endDate":1422535200,"endStationId":"412","endStationName":"Cleaver Street, Kennington","startDate":1422534840,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40881658","duration":600,"bikeId":"6312","endDate":1422535440,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1422534840,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"40881780","duration":420,"bikeId":"12688","endDate":1422535680,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422535260,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40881778","duration":780,"bikeId":"5586","endDate":1422535980,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1422535200,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"40882021","duration":120,"bikeId":"7909","endDate":1422536160,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1422536040,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"40881873","duration":720,"bikeId":"11210","endDate":1422536340,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1422535620,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40881944","duration":780,"bikeId":"11343","endDate":1422536580,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1422535800,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40882160","duration":180,"bikeId":"3756","endDate":1422536820,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1422536640,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40882067","duration":840,"bikeId":"12530","endDate":1422537120,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422536280,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40882224","duration":480,"bikeId":"13067","endDate":1422537360,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422536880,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40882340","duration":300,"bikeId":"6029","endDate":1422537600,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1422537300,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40882313","duration":600,"bikeId":"11814","endDate":1422537840,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1422537240,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40882315","duration":840,"bikeId":"561","endDate":1422538080,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1422537240,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40882460","duration":600,"bikeId":"3559","endDate":1422538260,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1422537660,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"40882566","duration":480,"bikeId":"10115","endDate":1422538620,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1422538140,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40882682","duration":300,"bikeId":"9793","endDate":1422538860,"endStationId":"471","endStationName":"Hewison Street, Old Ford","startDate":1422538560,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"40882670","duration":660,"bikeId":"6736","endDate":1422539160,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1422538500,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40882559","duration":1320,"bikeId":"3383","endDate":1422539400,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1422538080,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40882614","duration":1320,"bikeId":"6578","endDate":1422539640,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422538320,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40882657","duration":1440,"bikeId":"10808","endDate":1422539940,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422538500,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40882721","duration":1440,"bikeId":"6034","endDate":1422540180,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1422538740,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"40882994","duration":600,"bikeId":"11351","endDate":1422540480,"endStationId":"171","endStationName":"Collingham Gardens, Earl's Court","startDate":1422539880,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40882961","duration":960,"bikeId":"3185","endDate":1422540720,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422539760,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40882992","duration":1140,"bikeId":"4935","endDate":1422541020,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1422539880,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"40883263","duration":360,"bikeId":"12373","endDate":1422541380,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422541020,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40883380","duration":120,"bikeId":"3577","endDate":1422541620,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1422541500,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40883313","duration":600,"bikeId":"12381","endDate":1422541860,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422541260,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40883411","duration":480,"bikeId":"11733","endDate":1422542160,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1422541680,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40883309","duration":1380,"bikeId":"12232","endDate":1422542580,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1422541200,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40883438","duration":1080,"bikeId":"241","endDate":1422542880,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1422541800,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40883591","duration":660,"bikeId":"1643","endDate":1422543180,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1422542520,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40883667","duration":540,"bikeId":"6618","endDate":1422543420,"endStationId":"550","endStationName":"Harford Street, Mile End","startDate":1422542880,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40883568","duration":1260,"bikeId":"5690","endDate":1422543660,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1422542400,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40883801","duration":420,"bikeId":"5017","endDate":1422543960,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422543540,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"40883846","duration":480,"bikeId":"13048","endDate":1422544440,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1422543960,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"40883057","duration":4860,"bikeId":"12969","endDate":1422544980,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1422540120,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"40883937","duration":780,"bikeId":"8160","endDate":1422545460,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1422544680,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40884004","duration":780,"bikeId":"10246","endDate":1422546000,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1422545220,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"40884196","duration":180,"bikeId":"2908","endDate":1422546360,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1422546180,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40884027","duration":1260,"bikeId":"9489","endDate":1422546660,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1422545400,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40884261","duration":480,"bikeId":"6487","endDate":1422546960,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422546480,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40884347","duration":360,"bikeId":"8444","endDate":1422547260,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422546900,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40884370","duration":540,"bikeId":"8307","endDate":1422547560,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1422547020,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40884352","duration":960,"bikeId":"2247","endDate":1422547860,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1422546900,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40884562","duration":360,"bikeId":"4459","endDate":1422548100,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1422547740,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40884651","duration":420,"bikeId":"11720","endDate":1422548400,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1422547980,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40884494","duration":1140,"bikeId":"3859","endDate":1422548640,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422547500,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40884692","duration":780,"bikeId":"8826","endDate":1422548880,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422548100,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40884694","duration":1020,"bikeId":"7007","endDate":1422549120,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1422548100,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40884642","duration":1380,"bikeId":"3844","endDate":1422549360,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1422547980,"startStationId":"724","startStationName":"Alma Road, Wandsworth"}, +{"_id":"40883332","duration":8280,"bikeId":"10678","endDate":1422549540,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1422541260,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40885056","duration":300,"bikeId":"12665","endDate":1422549780,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1422549480,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40885089","duration":480,"bikeId":"4011","endDate":1422550140,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422549660,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40884902","duration":1500,"bikeId":"10161","endDate":1422550380,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1422548880,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40885225","duration":540,"bikeId":"5928","endDate":1422550680,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422550140,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40885072","duration":1380,"bikeId":"5126","endDate":1422550920,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1422549540,"startStationId":"566","startStationName":"Westfield Ariel Way, White City"}, +{"_id":"40885199","duration":1080,"bikeId":"97","endDate":1422551160,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1422550080,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40883768","duration":7920,"bikeId":"8700","endDate":1422551340,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1422543420,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40885327","duration":960,"bikeId":"371","endDate":1422551520,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422550560,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40885549","duration":540,"bikeId":"3392","endDate":1422551700,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422551160,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"40884785","duration":3360,"bikeId":"6726","endDate":1422551820,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1422548460,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40885224","duration":1860,"bikeId":"7260","endDate":1422552000,"endStationId":"629","endStationName":"Morie Street, Wandsworth","startDate":1422550140,"startStationId":"146","startStationName":"Vauxhall Bridge , Pimlico"}, +{"_id":"40885797","duration":480,"bikeId":"12309","endDate":1422552120,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1422551640,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40885860","duration":480,"bikeId":"10649","endDate":1422552240,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422551760,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40885647","duration":1080,"bikeId":"1581","endDate":1422552420,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1422551340,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40885873","duration":780,"bikeId":"2573","endDate":1422552540,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1422551760,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40885919","duration":840,"bikeId":"6122","endDate":1422552720,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422551880,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40885805","duration":1200,"bikeId":"11460","endDate":1422552840,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1422551640,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"40886040","duration":840,"bikeId":"4956","endDate":1422552960,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422552120,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40886286","duration":420,"bikeId":"10744","endDate":1422553080,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1422552660,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40886593","duration":180,"bikeId":"1344","endDate":1422553260,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1422553080,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40886284","duration":720,"bikeId":"8755","endDate":1422553380,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1422552660,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40886471","duration":480,"bikeId":"6404","endDate":1422553440,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1422552960,"startStationId":"283","startStationName":"Kingsway, Covent Garden"}, +{"_id":"40886546","duration":480,"bikeId":"5901","endDate":1422553560,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1422553080,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40886772","duration":300,"bikeId":"11197","endDate":1422553680,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1422553380,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40886446","duration":900,"bikeId":"11057","endDate":1422553800,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1422552900,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40886899","duration":300,"bikeId":"10430","endDate":1422553860,"endStationId":"708","endStationName":"Disraeli Road, Putney","startDate":1422553560,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"40886207","duration":1500,"bikeId":"6590","endDate":1422553980,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1422552480,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40886760","duration":720,"bikeId":"11974","endDate":1422554100,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422553380,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40887042","duration":420,"bikeId":"9931","endDate":1422554220,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1422553800,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40886299","duration":1620,"bikeId":"11772","endDate":1422554280,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1422552660,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40886746","duration":1020,"bikeId":"4928","endDate":1422554400,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1422553380,"startStationId":"556","startStationName":"Heron Quays DLR, Canary Wharf"}, +{"_id":"40887341","duration":300,"bikeId":"6425","endDate":1422554520,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1422554220,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40886443","duration":1680,"bikeId":"10008","endDate":1422554580,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1422552900,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40887195","duration":720,"bikeId":"11301","endDate":1422554700,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1422553980,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40887109","duration":960,"bikeId":"9136","endDate":1422554820,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1422553860,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40887174","duration":960,"bikeId":"11463","endDate":1422554880,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1422553920,"startStationId":"325","startStationName":"St. Martin's Street, West End"}, +{"_id":"40887627","duration":360,"bikeId":"8080","endDate":1422555000,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1422554640,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40887534","duration":600,"bikeId":"6910","endDate":1422555120,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422554520,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40887527","duration":720,"bikeId":"9993","endDate":1422555240,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1422554520,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40886930","duration":1680,"bikeId":"1896","endDate":1422555300,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1422553620,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"40887191","duration":1440,"bikeId":"3562","endDate":1422555420,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422553980,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40887399","duration":1140,"bikeId":"9589","endDate":1422555480,"endStationId":"517","endStationName":"Ford Road, Old Ford","startDate":1422554340,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40888148","duration":240,"bikeId":"6426","endDate":1422555600,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1422555360,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40888250","duration":180,"bikeId":"1383","endDate":1422555720,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1422555540,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40888027","duration":600,"bikeId":"1561","endDate":1422555780,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1422555180,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40888231","duration":420,"bikeId":"7530","endDate":1422555900,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1422555480,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"40887831","duration":1080,"bikeId":"7851","endDate":1422556020,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1422554940,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40887884","duration":1080,"bikeId":"7647","endDate":1422556080,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1422555000,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40888293","duration":540,"bikeId":"12587","endDate":1422556140,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1422555600,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40887899","duration":1260,"bikeId":"12219","endDate":1422556260,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1422555000,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40888365","duration":600,"bikeId":"6618","endDate":1422556320,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1422555720,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40888309","duration":780,"bikeId":"8003","endDate":1422556440,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422555660,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40888535","duration":540,"bikeId":"6434","endDate":1422556560,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1422556020,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40888782","duration":240,"bikeId":"10311","endDate":1422556680,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1422556440,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"40888846","duration":300,"bikeId":"7851","endDate":1422556800,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1422556500,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40888608","duration":840,"bikeId":"12598","endDate":1422556920,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1422556080,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40889084","duration":0,"bikeId":"8994","endDate":1422556980,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1422556980,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40888756","duration":720,"bikeId":"6593","endDate":1422557100,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422556380,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40888808","duration":780,"bikeId":"6915","endDate":1422557220,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1422556440,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40888761","duration":960,"bikeId":"12810","endDate":1422557340,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1422556380,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40888944","duration":780,"bikeId":"1875","endDate":1422557460,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422556680,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40888660","duration":1380,"bikeId":"12616","endDate":1422557580,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422556200,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"40888656","duration":1500,"bikeId":"10331","endDate":1422557700,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1422556200,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40889431","duration":240,"bikeId":"10135","endDate":1422557820,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1422557580,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40889367","duration":420,"bikeId":"11711","endDate":1422557940,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1422557520,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40889408","duration":480,"bikeId":"8570","endDate":1422558060,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422557580,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40889204","duration":1020,"bikeId":"10886","endDate":1422558180,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1422557160,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40889497","duration":540,"bikeId":"12099","endDate":1422558300,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422557760,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40889264","duration":1140,"bikeId":"8314","endDate":1422558420,"endStationId":"352","endStationName":"Vauxhall Street, Vauxhall","startDate":1422557280,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40889681","duration":420,"bikeId":"12478","endDate":1422558540,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1422558120,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"40889590","duration":780,"bikeId":"8239","endDate":1422558720,"endStationId":"402","endStationName":"Penfold Street, Marylebone","startDate":1422557940,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40889875","duration":240,"bikeId":"2228","endDate":1422558840,"endStationId":"297","endStationName":"Geraldine Street, Elephant & Castle","startDate":1422558600,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40889600","duration":1020,"bikeId":"1911","endDate":1422559020,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1422558000,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40889766","duration":840,"bikeId":"9312","endDate":1422559200,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422558360,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40889321","duration":1980,"bikeId":"10777","endDate":1422559380,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1422557400,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"40889693","duration":1320,"bikeId":"7882","endDate":1422559500,"endStationId":"86","endStationName":"Sancroft Street, Vauxhall","startDate":1422558180,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40889487","duration":1920,"bikeId":"299","endDate":1422559620,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1422557700,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40889396","duration":2220,"bikeId":"10805","endDate":1422559800,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422557580,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40890195","duration":540,"bikeId":"4755","endDate":1422559980,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1422559440,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40890059","duration":1080,"bikeId":"6169","endDate":1422560160,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1422559080,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40890275","duration":660,"bikeId":"12935","endDate":1422560340,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1422559680,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40890139","duration":1260,"bikeId":"2420","endDate":1422560520,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422559260,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40890259","duration":1140,"bikeId":"11507","endDate":1422560760,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1422559620,"startStationId":"527","startStationName":"Hansard Mews, Shepherds Bush"}, +{"_id":"40890369","duration":1080,"bikeId":"4914","endDate":1422561000,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422559920,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40890577","duration":600,"bikeId":"2957","endDate":1422561180,"endStationId":"549","endStationName":"Gaywood Street, Elephant & Castle","startDate":1422560580,"startStationId":"549","startStationName":"Gaywood Street, Elephant & Castle"}, +{"_id":"40890491","duration":1140,"bikeId":"12412","endDate":1422561420,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1422560280,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40890804","duration":300,"bikeId":"3056","endDate":1422561540,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1422561240,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40890748","duration":660,"bikeId":"9626","endDate":1422561780,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1422561120,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"40890974","duration":180,"bikeId":"1748","endDate":1422561960,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1422561780,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"40890938","duration":540,"bikeId":"6439","endDate":1422562200,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1422561660,"startStationId":"600","startStationName":"South Lambeth Road, Vauxhall"}, +{"_id":"40890824","duration":1080,"bikeId":"7768","endDate":1422562380,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1422561300,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40891022","duration":660,"bikeId":"2079","endDate":1422562620,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1422561960,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40891149","duration":480,"bikeId":"11454","endDate":1422562920,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422562440,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"40891250","duration":240,"bikeId":"5142","endDate":1422563160,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1422562920,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40891172","duration":900,"bikeId":"12366","endDate":1422563460,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1422562560,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40891381","duration":240,"bikeId":"11914","endDate":1422563760,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1422563520,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40891368","duration":600,"bikeId":"7363","endDate":1422564060,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1422563460,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40890474","duration":4140,"bikeId":"6854","endDate":1422564360,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422560220,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40891378","duration":1140,"bikeId":"12827","endDate":1422564660,"endStationId":"363","endStationName":"Lord's, St. John's Wood","startDate":1422563520,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40891587","duration":480,"bikeId":"3394","endDate":1422565020,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1422564540,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40890068","duration":6240,"bikeId":"5994","endDate":1422565320,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1422559080,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40891767","duration":240,"bikeId":"12588","endDate":1422565740,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1422565500,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40891759","duration":660,"bikeId":"758","endDate":1422566100,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422565440,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"40891881","duration":360,"bikeId":"2331","endDate":1422566400,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422566040,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40891836","duration":960,"bikeId":"13039","endDate":1422566760,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1422565800,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"40892018","duration":240,"bikeId":"6357","endDate":1422567240,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1422567000,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40892094","duration":180,"bikeId":"10926","endDate":1422567660,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1422567480,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"40892146","duration":300,"bikeId":"2746","endDate":1422568140,"endStationId":"712","endStationName":"Mile End Stadium, Mile End","startDate":1422567840,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40892197","duration":420,"bikeId":"5758","endDate":1422568620,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1422568200,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40892214","duration":660,"bikeId":"5342","endDate":1422569100,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422568440,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"40892355","duration":240,"bikeId":"5993","endDate":1422569760,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1422569520,"startStationId":"577","startStationName":"Globe Town Market, Bethnal Green"}, +{"_id":"40892327","duration":1020,"bikeId":"6141","endDate":1422570300,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1422569280,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40892357","duration":1200,"bikeId":"7201","endDate":1422570720,"endStationId":"699","endStationName":"Belford House, Haggerston","startDate":1422569520,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40892529","duration":420,"bikeId":"8629","endDate":1422571260,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422570840,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40892518","duration":1020,"bikeId":"3195","endDate":1422571800,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1422570780,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"40892694","duration":60,"bikeId":"5234","endDate":1422572280,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1422572220,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40892654","duration":1080,"bikeId":"7230","endDate":1422572880,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1422571800,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40892803","duration":420,"bikeId":"8341","endDate":1422573540,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1422573120,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40892874","duration":360,"bikeId":"10971","endDate":1422574200,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1422573840,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40892942","duration":240,"bikeId":"3105","endDate":1422574860,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1422574620,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40893001","duration":420,"bikeId":"1992","endDate":1422575700,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1422575280,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"40893038","duration":600,"bikeId":"9143","endDate":1422576360,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1422575760,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40893087","duration":1140,"bikeId":"8968","endDate":1422577380,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1422576240,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40893203","duration":300,"bikeId":"2448","endDate":1422578820,"endStationId":"754","endStationName":"Grenfell Road, Avondale","startDate":1422578520,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40893233","duration":1200,"bikeId":"9109","endDate":1422580320,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1422579120,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40893312","duration":1440,"bikeId":"490","endDate":1422583140,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1422581700,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"40893369","duration":1560,"bikeId":"40","endDate":1422585600,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1422584040,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40893445","duration":1500,"bikeId":"4397","endDate":1422589680,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1422588180,"startStationId":"325","startStationName":"St. Martin's Street, West End"}, +{"_id":"40893519","duration":1200,"bikeId":"2413","endDate":1422593100,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1422591900,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40893604","duration":540,"bikeId":"5063","endDate":1422597480,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422596940,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40893642","duration":900,"bikeId":"5866","endDate":1422599040,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422598140,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40893790","duration":180,"bikeId":"1739","endDate":1422599940,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1422599760,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40893810","duration":540,"bikeId":"2355","endDate":1422600480,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1422599940,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40893916","duration":360,"bikeId":"11307","endDate":1422600840,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422600480,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"40893973","duration":480,"bikeId":"9110","endDate":1422601260,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1422600780,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"40893980","duration":720,"bikeId":"10164","endDate":1422601560,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422600840,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"40893972","duration":1080,"bikeId":"11116","endDate":1422601860,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1422600780,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"40894141","duration":600,"bikeId":"11384","endDate":1422602160,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1422601560,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40894071","duration":1320,"bikeId":"11020","endDate":1422602520,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1422601200,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40894316","duration":480,"bikeId":"6416","endDate":1422602760,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1422602280,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"40894396","duration":540,"bikeId":"4115","endDate":1422603060,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422602520,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40894540","duration":300,"bikeId":"7768","endDate":1422603300,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422603000,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40894448","duration":840,"bikeId":"4580","endDate":1422603540,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1422602700,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40894349","duration":1260,"bikeId":"8862","endDate":1422603660,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422602400,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40894453","duration":1140,"bikeId":"6412","endDate":1422603840,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1422602700,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40894671","duration":720,"bikeId":"5309","endDate":1422604020,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1422603300,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40894633","duration":1020,"bikeId":"7435","endDate":1422604200,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1422603180,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40894709","duration":960,"bikeId":"11514","endDate":1422604320,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1422603360,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40894900","duration":660,"bikeId":"12611","endDate":1422604500,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1422603840,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40895063","duration":540,"bikeId":"12138","endDate":1422604620,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422604080,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40894718","duration":1320,"bikeId":"10233","endDate":1422604740,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1422603420,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40895299","duration":420,"bikeId":"9517","endDate":1422604860,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1422604440,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40895165","duration":720,"bikeId":"6621","endDate":1422604920,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1422604200,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40895058","duration":960,"bikeId":"901","endDate":1422605040,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1422604080,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40895674","duration":120,"bikeId":"9145","endDate":1422605160,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1422605040,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40895357","duration":720,"bikeId":"10894","endDate":1422605220,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1422604500,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"40895226","duration":1020,"bikeId":"12684","endDate":1422605340,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1422604320,"startStationId":"328","startStationName":"New North Road 2, Hoxton"}, +{"_id":"40895632","duration":480,"bikeId":"3549","endDate":1422605460,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1422604980,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40895573","duration":720,"bikeId":"9551","endDate":1422605580,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1422604860,"startStationId":"353","startStationName":"Greycoat Street , Westminster"}, +{"_id":"40895976","duration":240,"bikeId":"4119","endDate":1422605700,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1422605460,"startStationId":"455","startStationName":"East Ferry Road, Cubitt Town"}, +{"_id":"40895483","duration":1080,"bikeId":"6808","endDate":1422605820,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1422604740,"startStationId":"412","startStationName":"Cleaver Street, Kennington"}, +{"_id":"40895709","duration":780,"bikeId":"4867","endDate":1422605880,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1422605100,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40895615","duration":1080,"bikeId":"12441","endDate":1422606000,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1422604920,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40895656","duration":1020,"bikeId":"10996","endDate":1422606060,"endStationId":"721","endStationName":"Wendon Street, Old Ford","startDate":1422605040,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"40896335","duration":300,"bikeId":"11807","endDate":1422606180,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422605880,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40896299","duration":420,"bikeId":"12312","endDate":1422606300,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1422605880,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40896142","duration":660,"bikeId":"10373","endDate":1422606360,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1422605700,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40896248","duration":600,"bikeId":"7396","endDate":1422606420,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1422605820,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40896301","duration":660,"bikeId":"11274","endDate":1422606540,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1422605880,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40896115","duration":960,"bikeId":"619","endDate":1422606600,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422605640,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40896539","duration":540,"bikeId":"7598","endDate":1422606720,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422606180,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40895820","duration":1560,"bikeId":"3040","endDate":1422606780,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1422605220,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"40895870","duration":1500,"bikeId":"2949","endDate":1422606840,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422605340,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40896651","duration":660,"bikeId":"11476","endDate":1422606960,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1422606300,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40896652","duration":720,"bikeId":"9993","endDate":1422607020,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1422606300,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40897228","duration":240,"bikeId":"321","endDate":1422607140,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422606900,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40896755","duration":780,"bikeId":"11435","endDate":1422607200,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1422606420,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"40897048","duration":540,"bikeId":"7620","endDate":1422607260,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1422606720,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40896322","duration":1440,"bikeId":"12859","endDate":1422607320,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1422605880,"startStationId":"600","startStationName":"South Lambeth Road, Vauxhall"}, +{"_id":"40896932","duration":780,"bikeId":"7773","endDate":1422607380,"endStationId":"289","endStationName":"South Audley Street, Mayfair","startDate":1422606600,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40897350","duration":480,"bikeId":"4895","endDate":1422607500,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1422607020,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40897640","duration":300,"bikeId":"5979","endDate":1422607560,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422607260,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40896962","duration":960,"bikeId":"8552","endDate":1422607620,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1422606660,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40897268","duration":780,"bikeId":"9389","endDate":1422607680,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1422606900,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"40897122","duration":960,"bikeId":"11161","endDate":1422607740,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1422606780,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"40896994","duration":1140,"bikeId":"6122","endDate":1422607800,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422606660,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40897510","duration":720,"bikeId":"55","endDate":1422607860,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1422607140,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40896835","duration":1440,"bikeId":"659","endDate":1422607920,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1422606480,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"40898396","duration":0,"bikeId":"654","endDate":1422607980,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1422607980,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40898191","duration":300,"bikeId":"8958","endDate":1422608040,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1422607740,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40898016","duration":540,"bikeId":"12549","endDate":1422608100,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422607560,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40897375","duration":1140,"bikeId":"4691","endDate":1422608160,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422607020,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40897948","duration":720,"bikeId":"2437","endDate":1422608220,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1422607500,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40898420","duration":300,"bikeId":"8541","endDate":1422608280,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422607980,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40898052","duration":720,"bikeId":"10814","endDate":1422608340,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1422607620,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40898589","duration":240,"bikeId":"12147","endDate":1422608400,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1422608160,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40897932","duration":960,"bikeId":"435","endDate":1422608460,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1422607500,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"40898578","duration":360,"bikeId":"5057","endDate":1422608520,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1422608160,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40898476","duration":540,"bikeId":"3260","endDate":1422608580,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422608040,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40897630","duration":1380,"bikeId":"2732","endDate":1422608640,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1422607260,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40898353","duration":780,"bikeId":"6831","endDate":1422608700,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1422607920,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40897843","duration":1320,"bikeId":"1808","endDate":1422608760,"endStationId":"174","endStationName":"Strand, Strand","startDate":1422607440,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40898307","duration":960,"bikeId":"13014","endDate":1422608820,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422607860,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40898791","duration":480,"bikeId":"7891","endDate":1422608880,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1422608400,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40898185","duration":1260,"bikeId":"305","endDate":1422609000,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1422607740,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40898529","duration":960,"bikeId":"1641","endDate":1422609060,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422608100,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40898210","duration":1440,"bikeId":"10130","endDate":1422609180,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1422607740,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"40899027","duration":540,"bikeId":"2345","endDate":1422609240,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1422608700,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40899036","duration":660,"bikeId":"11722","endDate":1422609360,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1422608700,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"40899335","duration":240,"bikeId":"8786","endDate":1422609420,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422609180,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40899250","duration":540,"bikeId":"10183","endDate":1422609540,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1422609000,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40899115","duration":840,"bikeId":"2135","endDate":1422609660,"endStationId":"634","endStationName":"Brook Green South, Brook Green","startDate":1422608820,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40899093","duration":960,"bikeId":"8215","endDate":1422609720,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1422608760,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"40899018","duration":1140,"bikeId":"5046","endDate":1422609840,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1422608700,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40899450","duration":600,"bikeId":"11193","endDate":1422609960,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1422609360,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40899548","duration":540,"bikeId":"12552","endDate":1422610020,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1422609480,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"40899605","duration":540,"bikeId":"2199","endDate":1422610140,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422609600,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40899565","duration":720,"bikeId":"12301","endDate":1422610260,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1422609540,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"40899535","duration":900,"bikeId":"10058","endDate":1422610380,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1422609480,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40899808","duration":540,"bikeId":"10916","endDate":1422610560,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1422610020,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"40899858","duration":540,"bikeId":"356","endDate":1422610680,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1422610140,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40899933","duration":480,"bikeId":"7565","endDate":1422610800,"endStationId":"222","endStationName":"Knightsbridge, Hyde Park","startDate":1422610320,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40900060","duration":360,"bikeId":"1742","endDate":1422610980,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1422610620,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40899764","duration":1140,"bikeId":"2933","endDate":1422611100,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1422609960,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40900022","duration":780,"bikeId":"4010","endDate":1422611280,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1422610500,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40900084","duration":720,"bikeId":"13034","endDate":1422611400,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1422610680,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40900257","duration":540,"bikeId":"11875","endDate":1422611580,"endStationId":"21","endStationName":"Hampstead Road (Cartmel), Euston","startDate":1422611040,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40900204","duration":840,"bikeId":"6024","endDate":1422611760,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1422610920,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40900018","duration":1500,"bikeId":"9770","endDate":1422612000,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1422610500,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40900151","duration":1380,"bikeId":"4938","endDate":1422612180,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1422610800,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"40900312","duration":1140,"bikeId":"9588","endDate":1422612360,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1422611220,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"40900523","duration":660,"bikeId":"10250","endDate":1422612540,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422611880,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40900725","duration":240,"bikeId":"8936","endDate":1422612780,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1422612540,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"40900742","duration":360,"bikeId":"1884","endDate":1422613020,"endStationId":"117","endStationName":"Lollard Street, Vauxhall","startDate":1422612660,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40900859","duration":180,"bikeId":"7774","endDate":1422613320,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1422613140,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40900893","duration":240,"bikeId":"7578","endDate":1422613560,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422613320,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40900820","duration":840,"bikeId":"1497","endDate":1422613860,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1422613020,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40900914","duration":720,"bikeId":"1351","endDate":1422614160,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1422613440,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40901096","duration":300,"bikeId":"516","endDate":1422614580,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422614280,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40901127","duration":540,"bikeId":"1280","endDate":1422614940,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1422614400,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40901083","duration":960,"bikeId":"6771","endDate":1422615180,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1422614220,"startStationId":"775","startStationName":"Little Brook Green, Brook Green"}, +{"_id":"40900972","duration":1800,"bikeId":"8284","endDate":1422615480,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1422613680,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"40901382","duration":180,"bikeId":"6038","endDate":1422615720,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1422615540,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40901356","duration":660,"bikeId":"11721","endDate":1422616080,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1422615420,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40901282","duration":1380,"bikeId":"3220","endDate":1422616500,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422615120,"startStationId":"171","startStationName":"Collingham Gardens, Earl's Court"}, +{"_id":"40901558","duration":300,"bikeId":"4061","endDate":1422616860,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422616560,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40901440","duration":1260,"bikeId":"12443","endDate":1422617220,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1422615960,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"40901625","duration":660,"bikeId":"12662","endDate":1422617520,"endStationId":"550","endStationName":"Harford Street, Mile End","startDate":1422616860,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40901804","duration":180,"bikeId":"8805","endDate":1422617880,"endStationId":"207","endStationName":"Grosvenor Crescent, Belgravia","startDate":1422617700,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40901758","duration":660,"bikeId":"2019","endDate":1422618180,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422617520,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40901896","duration":360,"bikeId":"11790","endDate":1422618420,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422618060,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40901799","duration":1080,"bikeId":"11935","endDate":1422618720,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1422617640,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40901898","duration":900,"bikeId":"6025","endDate":1422618960,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1422618060,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40901911","duration":1080,"bikeId":"9363","endDate":1422619200,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1422618120,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40902141","duration":480,"bikeId":"7523","endDate":1422619500,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1422619020,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40902061","duration":1080,"bikeId":"716","endDate":1422619800,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1422618720,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40902347","duration":300,"bikeId":"822","endDate":1422620100,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1422619800,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40902407","duration":360,"bikeId":"5669","endDate":1422620400,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1422620040,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40902372","duration":720,"bikeId":"5012","endDate":1422620640,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422619920,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"40901850","duration":2940,"bikeId":"8624","endDate":1422620820,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1422617880,"startStationId":"484","startStationName":"Bromley High Street, Bromley"}, +{"_id":"40902455","duration":780,"bikeId":"8467","endDate":1422621060,"endStationId":"713","endStationName":"Hawley Crescent, Camden Town","startDate":1422620280,"startStationId":"315","startStationName":"The Tennis Courts, Regent's Park"}, +{"_id":"40902450","duration":1020,"bikeId":"12143","endDate":1422621300,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1422620280,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40902658","duration":600,"bikeId":"10965","endDate":1422621540,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1422620940,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40902584","duration":1020,"bikeId":"2958","endDate":1422621720,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1422620700,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40902828","duration":480,"bikeId":"11153","endDate":1422621960,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1422621480,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40902866","duration":600,"bikeId":"3718","endDate":1422622200,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1422621600,"startStationId":"164","startStationName":"Cleveland Gardens, Bayswater"}, +{"_id":"40902814","duration":960,"bikeId":"3037","endDate":1422622440,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1422621480,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40902205","duration":3360,"bikeId":"4482","endDate":1422622620,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422619260,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40903133","duration":360,"bikeId":"2793","endDate":1422622860,"endStationId":"538","endStationName":"Naval Row, Blackwall","startDate":1422622500,"startStationId":"551","startStationName":"Montgomery Square, Canary Wharf"}, +{"_id":"40903121","duration":600,"bikeId":"8145","endDate":1422623040,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1422622440,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40903025","duration":1140,"bikeId":"251","endDate":1422623280,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1422622140,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40903276","duration":600,"bikeId":"3220","endDate":1422623520,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1422622920,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40903321","duration":660,"bikeId":"7859","endDate":1422623760,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422623100,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40903245","duration":1140,"bikeId":"6037","endDate":1422624000,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1422622860,"startStationId":"660","startStationName":"West Kensington Station, West Kensington"}, +{"_id":"40903496","duration":600,"bikeId":"8765","endDate":1422624240,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422623640,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40902768","duration":3000,"bikeId":"3092","endDate":1422624420,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422621420,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40903062","duration":2400,"bikeId":"8926","endDate":1422624660,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1422622260,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40903761","duration":360,"bikeId":"3928","endDate":1422624900,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1422624540,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40903789","duration":480,"bikeId":"9491","endDate":1422625140,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422624660,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40903748","duration":900,"bikeId":"4711","endDate":1422625380,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1422624480,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40903883","duration":600,"bikeId":"2778","endDate":1422625560,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1422624960,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40904052","duration":120,"bikeId":"7726","endDate":1422625860,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1422625740,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40903952","duration":840,"bikeId":"326","endDate":1422626100,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1422625260,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40904095","duration":480,"bikeId":"8353","endDate":1422626340,"endStationId":"174","endStationName":"Strand, Strand","startDate":1422625860,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40904241","duration":120,"bikeId":"11275","endDate":1422626700,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1422626580,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40904232","duration":480,"bikeId":"7400","endDate":1422627000,"endStationId":"164","endStationName":"Cleveland Gardens, Bayswater","startDate":1422626520,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"40904400","duration":60,"bikeId":"5600","endDate":1422627240,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1422627180,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40904246","duration":900,"bikeId":"8159","endDate":1422627480,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1422626580,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40904390","duration":720,"bikeId":"11072","endDate":1422627840,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1422627120,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40904514","duration":480,"bikeId":"11518","endDate":1422628140,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1422627660,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"40904609","duration":420,"bikeId":"11079","endDate":1422628440,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1422628020,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"40904546","duration":960,"bikeId":"6504","endDate":1422628740,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1422627780,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40904680","duration":720,"bikeId":"1199","endDate":1422629040,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1422628320,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40904565","duration":1440,"bikeId":"6653","endDate":1422629280,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1422627840,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"40904656","duration":1380,"bikeId":"1785","endDate":1422629580,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1422628200,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"40904968","duration":420,"bikeId":"11493","endDate":1422629820,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1422629400,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40905052","duration":240,"bikeId":"9052","endDate":1422630000,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1422629760,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40904849","duration":1320,"bikeId":"2189","endDate":1422630300,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422628980,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"40904889","duration":1500,"bikeId":"4675","endDate":1422630660,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1422629160,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"40905208","duration":600,"bikeId":"1197","endDate":1422630960,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1422630360,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"40905305","duration":420,"bikeId":"8364","endDate":1422631200,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1422630780,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40904903","duration":2280,"bikeId":"10110","endDate":1422631440,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1422629160,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40905222","duration":1320,"bikeId":"12274","endDate":1422631740,"endStationId":"559","endStationName":"Abbotsbury Road, Holland Park","startDate":1422630420,"startStationId":"543","startStationName":"Lansdowne Walk, Notting Hill"}, +{"_id":"40905188","duration":1800,"bikeId":"12394","endDate":1422632100,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1422630300,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"40905459","duration":960,"bikeId":"8681","endDate":1422632340,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1422631380,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40905604","duration":600,"bikeId":"8633","endDate":1422632580,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1422631980,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40905709","duration":480,"bikeId":"7403","endDate":1422632880,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422632400,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"40905787","duration":480,"bikeId":"3725","endDate":1422633180,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1422632700,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40905900","duration":300,"bikeId":"295","endDate":1422633360,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1422633060,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40905857","duration":660,"bikeId":"11220","endDate":1422633600,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1422632940,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40905813","duration":960,"bikeId":"1672","endDate":1422633780,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1422632820,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40905778","duration":1320,"bikeId":"12554","endDate":1422634020,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1422632700,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40906196","duration":300,"bikeId":"3203","endDate":1422634260,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1422633960,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40906128","duration":660,"bikeId":"1322","endDate":1422634500,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1422633840,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40906176","duration":720,"bikeId":"10245","endDate":1422634620,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422633900,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40906435","duration":300,"bikeId":"3203","endDate":1422634860,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1422634560,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"40906403","duration":540,"bikeId":"10854","endDate":1422635040,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1422634500,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40906427","duration":600,"bikeId":"6405","endDate":1422635160,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1422634560,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40906320","duration":1020,"bikeId":"11244","endDate":1422635280,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1422634260,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40906583","duration":540,"bikeId":"6337","endDate":1422635460,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1422634920,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40904125","duration":9600,"bikeId":"380","endDate":1422635640,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1422626040,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40906760","duration":480,"bikeId":"470","endDate":1422635880,"endStationId":"297","endStationName":"Geraldine Street, Elephant & Castle","startDate":1422635400,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40906874","duration":360,"bikeId":"7720","endDate":1422636000,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422635640,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40906884","duration":540,"bikeId":"10841","endDate":1422636180,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1422635640,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40907009","duration":420,"bikeId":"12327","endDate":1422636300,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1422635880,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40907166","duration":120,"bikeId":"1840","endDate":1422636420,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1422636300,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"40905994","duration":3240,"bikeId":"7098","endDate":1422636600,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422633360,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40906690","duration":1560,"bikeId":"12946","endDate":1422636780,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1422635220,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40907269","duration":420,"bikeId":"807","endDate":1422636960,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1422636540,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40907215","duration":660,"bikeId":"8362","endDate":1422637080,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422636420,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"40907335","duration":540,"bikeId":"9450","endDate":1422637200,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422636660,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"40907589","duration":180,"bikeId":"10949","endDate":1422637380,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1422637200,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40907302","duration":900,"bikeId":"3573","endDate":1422637500,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1422636600,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40907433","duration":720,"bikeId":"12493","endDate":1422637620,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1422636900,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40907183","duration":1380,"bikeId":"6986","endDate":1422637740,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422636360,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40907404","duration":1080,"bikeId":"6777","endDate":1422637920,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1422636840,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40907523","duration":960,"bikeId":"12435","endDate":1422638040,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422637080,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40907922","duration":420,"bikeId":"8592","endDate":1422638160,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1422637740,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40908065","duration":240,"bikeId":"728","endDate":1422638280,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1422638040,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40908096","duration":360,"bikeId":"4630","endDate":1422638400,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422638040,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40907978","duration":660,"bikeId":"1766","endDate":1422638520,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1422637860,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40907991","duration":780,"bikeId":"1670","endDate":1422638640,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1422637860,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40908369","duration":300,"bikeId":"10381","endDate":1422638700,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422638400,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"40907890","duration":1140,"bikeId":"4209","endDate":1422638820,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1422637680,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40908099","duration":840,"bikeId":"680","endDate":1422638880,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1422638040,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40908017","duration":1080,"bikeId":"8231","endDate":1422639000,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422637920,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40908292","duration":780,"bikeId":"4080","endDate":1422639120,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422638340,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40908318","duration":900,"bikeId":"2168","endDate":1422639240,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1422638340,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40908632","duration":540,"bikeId":"8624","endDate":1422639360,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422638820,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40908253","duration":1200,"bikeId":"1904","endDate":1422639420,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1422638220,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40908441","duration":1020,"bikeId":"8425","endDate":1422639540,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1422638520,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40908794","duration":480,"bikeId":"13045","endDate":1422639600,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422639120,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40908908","duration":480,"bikeId":"5270","endDate":1422639720,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1422639240,"startStationId":"274","startStationName":"Warwick Road, Olympia"}, +{"_id":"40909202","duration":180,"bikeId":"9812","endDate":1422639780,"endStationId":"515","endStationName":"Russell Gardens, Holland Park","startDate":1422639600,"startStationId":"527","startStationName":"Hansard Mews, Shepherds Bush"}, +{"_id":"40909148","duration":360,"bikeId":"12565","endDate":1422639900,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422639540,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40908774","duration":900,"bikeId":"8903","endDate":1422639960,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1422639060,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40908937","duration":780,"bikeId":"7584","endDate":1422640080,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422639300,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"40909193","duration":540,"bikeId":"5077","endDate":1422640140,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1422639600,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"40909423","duration":420,"bikeId":"6029","endDate":1422640260,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1422639840,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40908730","duration":1320,"bikeId":"10168","endDate":1422640320,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1422639000,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40909401","duration":600,"bikeId":"13046","endDate":1422640440,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1422639840,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40909666","duration":300,"bikeId":"2635","endDate":1422640500,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1422640200,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40909764","duration":300,"bikeId":"6890","endDate":1422640620,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1422640320,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40909849","duration":240,"bikeId":"7139","endDate":1422640680,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1422640440,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40908947","duration":1500,"bikeId":"5716","endDate":1422640800,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422639300,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40908860","duration":1680,"bikeId":"7351","endDate":1422640860,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422639180,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40909662","duration":780,"bikeId":"13009","endDate":1422640980,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1422640200,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40909892","duration":540,"bikeId":"3815","endDate":1422641040,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422640500,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40909593","duration":1080,"bikeId":"3275","endDate":1422641160,"endStationId":"365","endStationName":"City Road, Angel","startDate":1422640080,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40910032","duration":540,"bikeId":"1726","endDate":1422641280,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1422640740,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"40909780","duration":960,"bikeId":"10568","endDate":1422641340,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1422640380,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"40909977","duration":780,"bikeId":"13058","endDate":1422641400,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422640620,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"40909916","duration":960,"bikeId":"7760","endDate":1422641520,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1422640560,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40909793","duration":1260,"bikeId":"680","endDate":1422641640,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422640380,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40910048","duration":1020,"bikeId":"2212","endDate":1422641760,"endStationId":"249","endStationName":"Harper Road, Borough","startDate":1422640740,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40910263","duration":720,"bikeId":"10077","endDate":1422641820,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1422641100,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40910556","duration":420,"bikeId":"3491","endDate":1422641940,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1422641520,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40909954","duration":1500,"bikeId":"7367","endDate":1422642060,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1422640560,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40910445","duration":780,"bikeId":"3084","endDate":1422642120,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1422641340,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40910926","duration":120,"bikeId":"10657","endDate":1422642240,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1422642120,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40910697","duration":660,"bikeId":"826","endDate":1422642360,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422641700,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40910765","duration":540,"bikeId":"6353","endDate":1422642420,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1422641880,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"40909755","duration":2220,"bikeId":"2834","endDate":1422642540,"endStationId":"724","endStationName":"Alma Road, Wandsworth","startDate":1422640320,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40910986","duration":420,"bikeId":"326","endDate":1422642660,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422642240,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40910983","duration":540,"bikeId":"11087","endDate":1422642780,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1422642240,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40910646","duration":1260,"bikeId":"4162","endDate":1422642900,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1422641640,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40911263","duration":360,"bikeId":"2764","endDate":1422643020,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1422642660,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"40910951","duration":960,"bikeId":"10179","endDate":1422643140,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1422642180,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40910321","duration":2040,"bikeId":"11272","endDate":1422643200,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422641160,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40911451","duration":300,"bikeId":"5792","endDate":1422643320,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1422643020,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40912434","duration":360,"bikeId":"530","endDate":1422643440,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1422643080,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40911123","duration":1140,"bikeId":"10938","endDate":1422643560,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1422642420,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40911395","duration":840,"bikeId":"12651","endDate":1422643740,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1422642900,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"40911385","duration":960,"bikeId":"4203","endDate":1422643860,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1422642900,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40911528","duration":780,"bikeId":"11308","endDate":1422643980,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1422643200,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40911823","duration":300,"bikeId":"3269","endDate":1422644100,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1422643800,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40911605","duration":900,"bikeId":"4916","endDate":1422644220,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1422643320,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40911996","duration":240,"bikeId":"1090","endDate":1422644400,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1422644160,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40911662","duration":1020,"bikeId":"7282","endDate":1422644520,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1422643500,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40912041","duration":420,"bikeId":"11369","endDate":1422644640,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1422644220,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40912095","duration":360,"bikeId":"1157","endDate":1422644760,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1422644400,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"40912113","duration":420,"bikeId":"12511","endDate":1422644880,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422644460,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40912143","duration":540,"bikeId":"564","endDate":1422645060,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1422644520,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40912130","duration":660,"bikeId":"267","endDate":1422645180,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1422644520,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40912317","duration":480,"bikeId":"2052","endDate":1422645360,"endStationId":"728","endStationName":"Putney Bridge Road, East Putney","startDate":1422644880,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"40912460","duration":240,"bikeId":"12665","endDate":1422645540,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1422645300,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"40912392","duration":600,"bikeId":"4493","endDate":1422645720,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1422645120,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40912542","duration":420,"bikeId":"2513","endDate":1422645900,"endStationId":"693","endStationName":"Felsham Road, Putney","startDate":1422645480,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"40912257","duration":1320,"bikeId":"7860","endDate":1422646080,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1422644760,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40912505","duration":840,"bikeId":"8112","endDate":1422646260,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1422645420,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40912677","duration":480,"bikeId":"9862","endDate":1422646440,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422645960,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40912809","duration":300,"bikeId":"9157","endDate":1422646680,"endStationId":"740","endStationName":"Sirdar Road, Avondale","startDate":1422646380,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"40912904","duration":300,"bikeId":"4725","endDate":1422646860,"endStationId":"675","endStationName":"Usk Road, Battersea","startDate":1422646560,"startStationId":"637","startStationName":"Spencer Park, Wandsworth Common"}, +{"_id":"40912823","duration":660,"bikeId":"4604","endDate":1422647100,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1422646440,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"40913052","duration":120,"bikeId":"7516","endDate":1422647340,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1422647220,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"40912711","duration":1560,"bikeId":"7767","endDate":1422647580,"endStationId":"726","endStationName":"Alfreda Street, Battersea Park","startDate":1422646020,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"40912598","duration":2040,"bikeId":"12920","endDate":1422647760,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1422645720,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"40912915","duration":1320,"bikeId":"13058","endDate":1422648060,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1422646740,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40913289","duration":180,"bikeId":"6507","endDate":1422648240,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1422648060,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40912936","duration":1680,"bikeId":"9555","endDate":1422648480,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1422646800,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40913295","duration":720,"bikeId":"2954","endDate":1422648780,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422648060,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40913456","duration":360,"bikeId":"12238","endDate":1422649020,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1422648660,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"40913454","duration":600,"bikeId":"597","endDate":1422649260,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1422648660,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40913345","duration":1320,"bikeId":"5869","endDate":1422649560,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1422648240,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40913488","duration":960,"bikeId":"10669","endDate":1422649800,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1422648840,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40913649","duration":540,"bikeId":"11133","endDate":1422650100,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1422649560,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"40913660","duration":840,"bikeId":"10146","endDate":1422650400,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1422649560,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40913721","duration":900,"bikeId":"12959","endDate":1422650700,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1422649800,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40913730","duration":1140,"bikeId":"4332","endDate":1422651000,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1422649860,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40913946","duration":360,"bikeId":"9103","endDate":1422651360,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422651000,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40913880","duration":1080,"bikeId":"7766","endDate":1422651780,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1422650700,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40914031","duration":780,"bikeId":"191","endDate":1422652140,"endStationId":"165","endStationName":"Orsett Terrace, Bayswater","startDate":1422651360,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"40914067","duration":840,"bikeId":"10385","endDate":1422652440,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1422651600,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40914104","duration":1020,"bikeId":"11230","endDate":1422652800,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1422651780,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40914166","duration":1140,"bikeId":"353","endDate":1422653220,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1422652080,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"40914284","duration":840,"bikeId":"1895","endDate":1422653640,"endStationId":"100","endStationName":"Albert Embankment, Vauxhall","startDate":1422652800,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40914370","duration":720,"bikeId":"11969","endDate":1422654120,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1422653400,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40914438","duration":720,"bikeId":"4418","endDate":1422654540,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1422653820,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"40914416","duration":1320,"bikeId":"8765","endDate":1422655020,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1422653700,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40914343","duration":2280,"bikeId":"12098","endDate":1422655500,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1422653220,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40914573","duration":1140,"bikeId":"9780","endDate":1422656160,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1422655020,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"40914610","duration":1260,"bikeId":"1642","endDate":1422656580,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1422655320,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"40914758","duration":660,"bikeId":"8703","endDate":1422657060,"endStationId":"463","endStationName":"Thurtle Road, Haggerston","startDate":1422656400,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40914794","duration":900,"bikeId":"10136","endDate":1422657780,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1422656880,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"40914946","duration":300,"bikeId":"4574","endDate":1422658440,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1422658140,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40915019","duration":180,"bikeId":"4591","endDate":1422659100,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1422658920,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40915026","duration":660,"bikeId":"5874","endDate":1422659700,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1422659040,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"40915162","duration":120,"bikeId":"12970","endDate":1422660360,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1422660240,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"40915079","duration":1500,"bikeId":"8857","endDate":1422660960,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1422659460,"startStationId":"763","startStationName":"Mile End Park Leisure Centre, Mile End"}, +{"_id":"40915195","duration":1260,"bikeId":"940","endDate":1422661680,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1422660420,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40915347","duration":420,"bikeId":"3842","endDate":1422662160,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422661740,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40915272","duration":1560,"bikeId":"11129","endDate":1422662760,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1422661200,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"40915339","duration":1620,"bikeId":"9052","endDate":1422663300,"endStationId":"352","endStationName":"Vauxhall Street, Vauxhall","startDate":1422661680,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40915542","duration":600,"bikeId":"5399","endDate":1422663960,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1422663360,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40915658","duration":120,"bikeId":"1092","endDate":1422664380,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422664260,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40915695","duration":480,"bikeId":"11466","endDate":1422665100,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1422664620,"startStationId":"222","startStationName":"Knightsbridge, Hyde Park"}, +{"_id":"40915747","duration":720,"bikeId":"7769","endDate":1422665880,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1422665160,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40915751","duration":1440,"bikeId":"1875","endDate":1422666600,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1422665160,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40915731","duration":2280,"bikeId":"5080","endDate":1422667200,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1422664920,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40915922","duration":1020,"bikeId":"6628","endDate":1422667800,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422666780,"startStationId":"337","startStationName":"Pembridge Villas, Notting Hill"}, +{"_id":"40915926","duration":1860,"bikeId":"4162","endDate":1422668640,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422666780,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40916084","duration":780,"bikeId":"11540","endDate":1422669420,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1422668640,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"40916163","duration":540,"bikeId":"10961","endDate":1422670380,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1422669840,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40916124","duration":1980,"bikeId":"11188","endDate":1422671280,"endStationId":"683","endStationName":"Dorothy Road, Clapham Junction","startDate":1422669300,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40916305","duration":720,"bikeId":"11454","endDate":1422672120,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1422671400,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"40916304","duration":1680,"bikeId":"9785","endDate":1422673080,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1422671400,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40916337","duration":2340,"bikeId":"10313","endDate":1422674160,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1422671820,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40916184","duration":5640,"bikeId":"11185","endDate":1422675600,"endStationId":"634","endStationName":"Brook Green South, Brook Green","startDate":1422669960,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"40916557","duration":660,"bikeId":"4210","endDate":1422676740,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1422676080,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40916579","duration":2040,"bikeId":"2966","endDate":1422678600,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422676560,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40916699","duration":600,"bikeId":"1600","endDate":1422681000,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1422680400,"startStationId":"466","startStationName":"Whiston Road, Haggerston"}, +{"_id":"40916768","duration":60,"bikeId":"1615","endDate":1422683280,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1422683220,"startStationId":"618","startStationName":"Eel Brook Common, Walham Green"}, +{"_id":"40916333","duration":15240,"bikeId":"5664","endDate":1422687000,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1422671760,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40916880","duration":900,"bikeId":"13082","endDate":1422689280,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1422688380,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40916954","duration":540,"bikeId":"5113","endDate":1422690960,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1422690420,"startStationId":"247","startStationName":"St. John's Wood Church, Regent's Park"}, +{"_id":"40917006","duration":1260,"bikeId":"286","endDate":1422693060,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1422691800,"startStationId":"389","startStationName":"Upper Grosvenor Street, Mayfair"}, +{"_id":"40917115","duration":360,"bikeId":"7766","endDate":1422694320,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1422693960,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40917175","duration":420,"bikeId":"8814","endDate":1422695100,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1422694680,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40917195","duration":1080,"bikeId":"12878","endDate":1422696000,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1422694920,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40917279","duration":840,"bikeId":"6685","endDate":1422696720,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1422695880,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40917344","duration":840,"bikeId":"2736","endDate":1422697320,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1422696480,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40917480","duration":480,"bikeId":"11066","endDate":1422697740,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1422697260,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40917403","duration":1320,"bikeId":"6319","endDate":1422698100,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422696780,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40917568","duration":720,"bikeId":"9889","endDate":1422698400,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422697680,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40917542","duration":1260,"bikeId":"2634","endDate":1422698820,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1422697560,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40917759","duration":540,"bikeId":"9498","endDate":1422699180,"endStationId":"688","endStationName":"Northfields, Wandsworth","startDate":1422698640,"startStationId":"776","startStationName":"Abyssinia Close, Clapham Junction"}, +{"_id":"40917704","duration":1080,"bikeId":"1824","endDate":1422699540,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1422698460,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40917992","duration":180,"bikeId":"539","endDate":1422700080,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1422699900,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40917977","duration":540,"bikeId":"4712","endDate":1422700380,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1422699840,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40918107","duration":180,"bikeId":"9263","endDate":1422700740,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1422700560,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40917883","duration":1680,"bikeId":"1805","endDate":1422701100,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422699420,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40918025","duration":1380,"bikeId":"1000","endDate":1422701460,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1422700080,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40918104","duration":1200,"bikeId":"4041","endDate":1422701760,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1422700560,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40918083","duration":1680,"bikeId":"1154","endDate":1422702060,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1422700380,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"40918215","duration":1260,"bikeId":"3294","endDate":1422702300,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1422701040,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"40918252","duration":1500,"bikeId":"9541","endDate":1422702720,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1422701220,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"40918479","duration":840,"bikeId":"9946","endDate":1422703020,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422702180,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"40918720","duration":180,"bikeId":"11551","endDate":1422703260,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1422703080,"startStationId":"623","startStationName":"Nantes Close, Wandsworth"}, +{"_id":"40918535","duration":1080,"bikeId":"11471","endDate":1422703500,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1422702420,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40918714","duration":660,"bikeId":"10749","endDate":1422703740,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1422703080,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40918474","duration":1800,"bikeId":"3151","endDate":1422703980,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1422702180,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40918893","duration":600,"bikeId":"10905","endDate":1422704280,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1422703680,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40918894","duration":840,"bikeId":"253","endDate":1422704520,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1422703680,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"40919099","duration":420,"bikeId":"9813","endDate":1422704820,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1422704400,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40918867","duration":1500,"bikeId":"6115","endDate":1422705060,"endStationId":"523","endStationName":"Langdon Park, Poplar","startDate":1422703560,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"40919158","duration":720,"bikeId":"639","endDate":1422705300,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1422704580,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40919317","duration":420,"bikeId":"4370","endDate":1422705540,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1422705120,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40919106","duration":1380,"bikeId":"12447","endDate":1422705780,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1422704400,"startStationId":"673","startStationName":"Hibbert Street, Battersea"}, +{"_id":"40919435","duration":420,"bikeId":"3509","endDate":1422706020,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1422705600,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"40919546","duration":360,"bikeId":"12133","endDate":1422706260,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1422705900,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40919512","duration":720,"bikeId":"10978","endDate":1422706500,"endStationId":"599","endStationName":"Manbre Road, Hammersmith","startDate":1422705780,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40919046","duration":2580,"bikeId":"5304","endDate":1422706740,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1422704160,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"40919706","duration":600,"bikeId":"10979","endDate":1422707040,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1422706440,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40919754","duration":600,"bikeId":"3021","endDate":1422707280,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422706680,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"40919524","duration":1620,"bikeId":"9516","endDate":1422707460,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1422705840,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"40919907","duration":360,"bikeId":"3073","endDate":1422707640,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422707280,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40919919","duration":600,"bikeId":"11518","endDate":1422707880,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1422707280,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40919954","duration":780,"bikeId":"10952","endDate":1422708180,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1422707400,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40919895","duration":1200,"bikeId":"12071","endDate":1422708420,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422707220,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40919982","duration":1200,"bikeId":"3353","endDate":1422708720,"endStationId":"271","endStationName":"London Zoo, Regents Park","startDate":1422707520,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40920220","duration":360,"bikeId":"1812","endDate":1422709080,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422708720,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40920251","duration":420,"bikeId":"11546","endDate":1422709260,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1422708840,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40920321","duration":360,"bikeId":"10722","endDate":1422709620,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1422709260,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40920389","duration":240,"bikeId":"6616","endDate":1422709980,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1422709740,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40920477","duration":120,"bikeId":"10278","endDate":1422710520,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1422710400,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40920400","duration":1200,"bikeId":"11722","endDate":1422711000,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422709800,"startStationId":"774","startStationName":"Hurlingham Park, Parsons Green"}, +{"_id":"40920582","duration":240,"bikeId":"5800","endDate":1422711660,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1422711420,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"40920557","duration":1080,"bikeId":"3830","endDate":1422712260,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1422711180,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"40920718","duration":240,"bikeId":"3992","endDate":1422712860,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1422712620,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40920575","duration":2100,"bikeId":"4145","endDate":1422713460,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1422711360,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"40920776","duration":900,"bikeId":"6871","endDate":1422713940,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1422713040,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40920951","duration":240,"bikeId":"12099","endDate":1422714480,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1422714240,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"40920997","duration":360,"bikeId":"3518","endDate":1422714960,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1422714600,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40920962","duration":1080,"bikeId":"12788","endDate":1422715380,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1422714300,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40921074","duration":660,"bikeId":"182","endDate":1422715860,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1422715200,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40921185","duration":480,"bikeId":"10018","endDate":1422716280,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1422715800,"startStationId":"684","startStationName":"Neville Gill Close, Wandsworth"}, +{"_id":"40921278","duration":420,"bikeId":"7640","endDate":1422716700,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422716280,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"40921342","duration":540,"bikeId":"9669","endDate":1422717180,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1422716640,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"40921281","duration":1260,"bikeId":"9546","endDate":1422717540,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1422716280,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40921509","duration":300,"bikeId":"10","endDate":1422718020,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1422717720,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"40921517","duration":780,"bikeId":"5050","endDate":1422718500,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422717720,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40921515","duration":1140,"bikeId":"10030","endDate":1422718860,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1422717720,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40921696","duration":420,"bikeId":"9840","endDate":1422719160,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1422718740,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"40921735","duration":540,"bikeId":"5080","endDate":1422719460,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1422718920,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40921803","duration":660,"bikeId":"1162","endDate":1422719820,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1422719160,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40921815","duration":840,"bikeId":"9402","endDate":1422720120,"endStationId":"617","endStationName":"Elysium Place, Fulham","startDate":1422719280,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40921740","duration":1560,"bikeId":"1621","endDate":1422720480,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422718920,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40922071","duration":420,"bikeId":"12401","endDate":1422720780,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1422720360,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"40921975","duration":1080,"bikeId":"8354","endDate":1422721080,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1422720000,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"40922247","duration":180,"bikeId":"2059","endDate":1422721440,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1422721260,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40922272","duration":360,"bikeId":"2876","endDate":1422721740,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1422721380,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40922399","duration":240,"bikeId":"6722","endDate":1422722040,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1422721800,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40922251","duration":1020,"bikeId":"2060","endDate":1422722340,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1422721320,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40922378","duration":900,"bikeId":"10538","endDate":1422722640,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422721740,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40922497","duration":540,"bikeId":"7704","endDate":1422722880,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1422722340,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40922282","duration":1860,"bikeId":"4778","endDate":1422723240,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1422721380,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40922741","duration":300,"bikeId":"6817","endDate":1422723540,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1422723240,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40922789","duration":240,"bikeId":"11701","endDate":1422723720,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422723480,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40922818","duration":360,"bikeId":"9185","endDate":1422723960,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1422723600,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40921936","duration":4440,"bikeId":"1933","endDate":1422724200,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1422719760,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40922777","duration":1080,"bikeId":"11214","endDate":1422724500,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1422723420,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40922954","duration":660,"bikeId":"3527","endDate":1422724800,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1422724140,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40923124","duration":360,"bikeId":"3345","endDate":1422725100,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1422724740,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40922874","duration":1440,"bikeId":"3096","endDate":1422725280,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1422723840,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40922998","duration":1200,"bikeId":"1296","endDate":1422725520,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1422724320,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40923317","duration":240,"bikeId":"7716","endDate":1422725820,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422725580,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40923383","duration":240,"bikeId":"7180","endDate":1422726060,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1422725820,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40923415","duration":420,"bikeId":"11003","endDate":1422726360,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1422725940,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"40923401","duration":780,"bikeId":"7045","endDate":1422726660,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1422725880,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"40923445","duration":840,"bikeId":"12427","endDate":1422726840,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1422726000,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"40923268","duration":1740,"bikeId":"4985","endDate":1422727140,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422725400,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40923674","duration":420,"bikeId":"9382","endDate":1422727500,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1422727080,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40923796","duration":180,"bikeId":"6526","endDate":1422727800,"endStationId":"165","endStationName":"Orsett Terrace, Bayswater","startDate":1422727620,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40923628","duration":1260,"bikeId":"3303","endDate":1422728100,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1422726840,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40923775","duration":840,"bikeId":"8248","endDate":1422728400,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1422727560,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40923928","duration":360,"bikeId":"6117","endDate":1422728760,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1422728400,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40923982","duration":540,"bikeId":"2866","endDate":1422729180,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1422728640,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"40924115","duration":180,"bikeId":"4006","endDate":1422729480,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1422729300,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"40924164","duration":240,"bikeId":"11000","endDate":1422729840,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1422729600,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40924188","duration":480,"bikeId":"7947","endDate":1422730200,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422729720,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40924268","duration":300,"bikeId":"7910","endDate":1422730560,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1422730260,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"40924377","duration":240,"bikeId":"9549","endDate":1422731040,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1422730800,"startStationId":"176","startStationName":"Gloucester Terrace, Bayswater"}, +{"_id":"40924361","duration":600,"bikeId":"9669","endDate":1422731340,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1422730740,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40924490","duration":180,"bikeId":"586","endDate":1422731700,"endStationId":"674","endStationName":"Carnegie Street, King's Cross","startDate":1422731520,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"40924563","duration":180,"bikeId":"2678","endDate":1422732180,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1422732000,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40924599","duration":360,"bikeId":"12097","endDate":1422732600,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1422732240,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40924526","duration":1200,"bikeId":"9512","endDate":1422732960,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1422731760,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40924775","duration":180,"bikeId":"8109","endDate":1422733320,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1422733140,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"40924728","duration":840,"bikeId":"3029","endDate":1422733680,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1422732840,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40924555","duration":2100,"bikeId":"190","endDate":1422734100,"endStationId":"527","endStationName":"Hansard Mews, Shepherds Bush","startDate":1422732000,"startStationId":"693","startStationName":"Felsham Road, Putney"}, +{"_id":"40924837","duration":1080,"bikeId":"3996","endDate":1422734520,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1422733440,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40924894","duration":1200,"bikeId":"7940","endDate":1422735000,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1422733800,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40924900","duration":1500,"bikeId":"2403","endDate":1422735360,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1422733860,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"40923527","duration":9420,"bikeId":"6592","endDate":1422735840,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1422726420,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"40925207","duration":360,"bikeId":"9443","endDate":1422736320,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1422735960,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40925166","duration":1080,"bikeId":"4694","endDate":1422736740,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1422735660,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40925287","duration":660,"bikeId":"12447","endDate":1422737280,"endStationId":"675","endStationName":"Usk Road, Battersea","startDate":1422736620,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"40925272","duration":1320,"bikeId":"130","endDate":1422737820,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1422736500,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40925380","duration":960,"bikeId":"1647","endDate":1422738480,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422737520,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40925508","duration":600,"bikeId":"1620","endDate":1422739260,"endStationId":"517","endStationName":"Ford Road, Old Ford","startDate":1422738660,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40925550","duration":900,"bikeId":"4026","endDate":1422739860,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1422738960,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40925667","duration":300,"bikeId":"11852","endDate":1422740820,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422740520,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40925656","duration":1020,"bikeId":"2318","endDate":1422741420,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1422740400,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40925748","duration":720,"bikeId":"10526","endDate":1422742200,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1422741480,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"40925842","duration":600,"bikeId":"12814","endDate":1422743040,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1422742440,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40925827","duration":1680,"bikeId":"6597","endDate":1422743940,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1422742260,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"40926008","duration":300,"bikeId":"9815","endDate":1422744900,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1422744600,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40926059","duration":420,"bikeId":"3676","endDate":1422745620,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1422745200,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"40926154","duration":180,"bikeId":"6597","endDate":1422746460,"endStationId":"412","endStationName":"Cleaver Street, Kennington","startDate":1422746280,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40926218","duration":240,"bikeId":"13014","endDate":1422747180,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1422746940,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40926250","duration":720,"bikeId":"10464","endDate":1422747900,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1422747180,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40926266","duration":1200,"bikeId":"12584","endDate":1422748680,"endStationId":"410","endStationName":"Edgware Road Station, Paddington","startDate":1422747480,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40926270","duration":3480,"bikeId":"133","endDate":1422751080,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1422747600,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"40919353","duration":410820,"bikeId":"829","endDate":1423116120,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1422705300,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40926424","duration":660,"bikeId":"10225","endDate":1422750120,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1422749460,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40926494","duration":1200,"bikeId":"11802","endDate":1422751320,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1422750120,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40926558","duration":1320,"bikeId":"10361","endDate":1422752520,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1422751200,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"40926632","duration":720,"bikeId":"10303","endDate":1422752820,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1422752100,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"40926696","duration":360,"bikeId":"6527","endDate":1422753180,"endStationId":"517","endStationName":"Ford Road, Old Ford","startDate":1422752820,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40926772","duration":420,"bikeId":"8886","endDate":1422754080,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1422753660,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40926842","duration":2160,"bikeId":"9529","endDate":1422756840,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1422754680,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"40926915","duration":780,"bikeId":"8665","endDate":1422756600,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1422755820,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40926981","duration":2760,"bikeId":"5531","endDate":1422759600,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1422756840,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40927051","duration":840,"bikeId":"7743","endDate":1422759180,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1422758340,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40927118","duration":480,"bikeId":"8374","endDate":1422760800,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1422760320,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"40927189","duration":240,"bikeId":"12074","endDate":1422763920,"endStationId":"654","endStationName":"Ashmole Estate, Oval","startDate":1422763680,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"40927260","duration":600,"bikeId":"4199","endDate":1422768660,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1422768060,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40927330","duration":1260,"bikeId":"180","endDate":1422773760,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1422772500,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40927399","duration":480,"bikeId":"6786","endDate":1422776760,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1422776280,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"40927465","duration":1020,"bikeId":"11150","endDate":1422779220,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1422778200,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40927531","duration":1140,"bikeId":"5499","endDate":1422780720,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1422779580,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40927601","duration":120,"bikeId":"10099","endDate":1422780660,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1422780540,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40927663","duration":1560,"bikeId":"6632","endDate":1422782820,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1422781260,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40927733","duration":360,"bikeId":"12751","endDate":1422782520,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422782160,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40927813","duration":1080,"bikeId":"12506","endDate":1422783840,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1422782760,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"40927888","duration":1920,"bikeId":"11906","endDate":1422785280,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422783360,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"40927963","duration":180,"bikeId":"6786","endDate":1422784080,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1422783900,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40928030","duration":300,"bikeId":"2890","endDate":1422784620,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1422784320,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"40928101","duration":360,"bikeId":"53","endDate":1422785040,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1422784680,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"40928166","duration":360,"bikeId":"9778","endDate":1422785460,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1422785100,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40928249","duration":480,"bikeId":"11021","endDate":1422785940,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1422785460,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"40928301","duration":780,"bikeId":"10385","endDate":1422786540,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1422785760,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40928355","duration":1800,"bikeId":"8135","endDate":1422787860,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1422786060,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40928434","duration":420,"bikeId":"6526","endDate":1422786900,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1422786480,"startStationId":"165","startStationName":"Orsett Terrace, Bayswater"}, +{"_id":"40928504","duration":600,"bikeId":"3491","endDate":1422787440,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1422786840,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"40928581","duration":1740,"bikeId":"1300","endDate":1422788940,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1422787200,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40928634","duration":1800,"bikeId":"7647","endDate":1422789360,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1422787560,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40928715","duration":300,"bikeId":"4188","endDate":1422788220,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422787920,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40928772","duration":1260,"bikeId":"9310","endDate":1422789420,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422788160,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40928840","duration":840,"bikeId":"2588","endDate":1422789300,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1422788460,"startStationId":"564","startStationName":"Somerset House, Strand"}, +{"_id":"40928913","duration":480,"bikeId":"2330","endDate":1422789300,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1422788820,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40928978","duration":600,"bikeId":"3076","endDate":1422789660,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1422789060,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"40929048","duration":420,"bikeId":"1496","endDate":1422789720,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422789300,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40929113","duration":120,"bikeId":"12070","endDate":1422789720,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1422789600,"startStationId":"690","startStationName":"Stanley Grove, Battersea"}, +{"_id":"40929170","duration":11100,"bikeId":"12640","endDate":1422800940,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1422789840,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"40929236","duration":1620,"bikeId":"6542","endDate":1422791700,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1422790080,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40929307","duration":1020,"bikeId":"939","endDate":1422791400,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1422790380,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40929396","duration":180,"bikeId":"12070","endDate":1422790860,"endStationId":"690","endStationName":"Stanley Grove, Battersea","startDate":1422790680,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"40929451","duration":720,"bikeId":"2190","endDate":1422791640,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422790920,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40929514","duration":780,"bikeId":"971","endDate":1422791940,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422791160,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40929576","duration":1020,"bikeId":"12744","endDate":1422792420,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422791400,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40929658","duration":780,"bikeId":"7859","endDate":1422792420,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1422791640,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40929734","duration":120,"bikeId":"4214","endDate":1422792000,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1422791880,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"40929796","duration":720,"bikeId":"10689","endDate":1422792840,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422792120,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40929864","duration":300,"bikeId":"12452","endDate":1422792720,"endStationId":"447","endStationName":"Jubilee Crescent, Cubitt Town","startDate":1422792420,"startStationId":"473","startStationName":"Millharbour, Millwall"}, +{"_id":"40929927","duration":2460,"bikeId":"12583","endDate":1422795120,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422792660,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40930010","duration":360,"bikeId":"13","endDate":1422793260,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1422792900,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"40930097","duration":240,"bikeId":"2708","endDate":1422793380,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1422793140,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40930155","duration":420,"bikeId":"12642","endDate":1422793800,"endStationId":"117","endStationName":"Lollard Street, Vauxhall","startDate":1422793380,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"40930211","duration":660,"bikeId":"5126","endDate":1422794220,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1422793560,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"40930276","duration":1440,"bikeId":"412","endDate":1422795180,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422793740,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40930363","duration":480,"bikeId":"4991","endDate":1422794460,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1422793980,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"40930398","duration":2520,"bikeId":"7803","endDate":1422796620,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1422794100,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40930486","duration":1380,"bikeId":"6063","endDate":1422795720,"endStationId":"642","endStationName":"Fawcett Close, Battersea","startDate":1422794340,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"40930555","duration":720,"bikeId":"2175","endDate":1422795240,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1422794520,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40930635","duration":900,"bikeId":"11906","endDate":1422795600,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1422794700,"startStationId":"598","startStationName":"Southerton Road, Hammersmith"}, +{"_id":"40930696","duration":2760,"bikeId":"2619","endDate":1422797640,"endStationId":"280","endStationName":"Royal Avenue 2, Chelsea","startDate":1422794880,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40930767","duration":360,"bikeId":"440","endDate":1422795480,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1422795120,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40930809","duration":3900,"bikeId":"11483","endDate":1422799140,"endStationId":"497","endStationName":"Coborn Street, Mile End","startDate":1422795240,"startStationId":"484","startStationName":"Bromley High Street, Bromley"}, +{"_id":"40930893","duration":960,"bikeId":"310","endDate":1422796380,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1422795420,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"40930965","duration":780,"bikeId":"240","endDate":1422796380,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1422795600,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40931034","duration":660,"bikeId":"963","endDate":1422796500,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1422795840,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"40931095","duration":1020,"bikeId":"6346","endDate":1422797040,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1422796020,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"40931150","duration":1500,"bikeId":"5781","endDate":1422797700,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1422796200,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40931228","duration":1440,"bikeId":"10320","endDate":1422797820,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1422796380,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40931307","duration":600,"bikeId":"5665","endDate":1422797280,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1422796680,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40931397","duration":300,"bikeId":"8320","endDate":1422797220,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1422796920,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"40931445","duration":480,"bikeId":"11789","endDate":1422797580,"endStationId":"507","endStationName":"Clarkson Street, Bethnal Green","startDate":1422797100,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"40931513","duration":480,"bikeId":"6934","endDate":1422797760,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1422797280,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40931581","duration":1020,"bikeId":"4136","endDate":1422798540,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422797520,"startStationId":"549","startStationName":"Gaywood Street, Elephant & Castle"}, +{"_id":"40931643","duration":7140,"bikeId":"5789","endDate":1422804840,"endStationId":"697","endStationName":"Charlotte Terrace, Angel","startDate":1422797700,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40931716","duration":1020,"bikeId":"8880","endDate":1422798960,"endStationId":"257","endStationName":"Westminster University, Marylebone","startDate":1422797940,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40931791","duration":540,"bikeId":"4886","endDate":1422798720,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1422798180,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"40931849","duration":3660,"bikeId":"10098","endDate":1422802020,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1422798360,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40931931","duration":240,"bikeId":"11198","endDate":1422798840,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1422798600,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40931995","duration":1740,"bikeId":"4415","endDate":1422800520,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1422798780,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40932076","duration":240,"bikeId":"6970","endDate":1422799260,"endStationId":"370","endStationName":"Paddington Green, Paddington","startDate":1422799020,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40932137","duration":20040,"bikeId":"10171","endDate":1422819240,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1422799200,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"40932210","duration":840,"bikeId":"54","endDate":1422800280,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1422799440,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40932293","duration":420,"bikeId":"5216","endDate":1422800040,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1422799620,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40932335","duration":3180,"bikeId":"9735","endDate":1422802980,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1422799800,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40932432","duration":540,"bikeId":"3574","endDate":1422800580,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422800040,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40932480","duration":1500,"bikeId":"5140","endDate":1422801720,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422800220,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"40932546","duration":1260,"bikeId":"12676","endDate":1422801720,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422800460,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40932616","duration":1020,"bikeId":"530","endDate":1422801660,"endStationId":"286","endStationName":"St. John's Wood Road, St. John's Wood","startDate":1422800640,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40932698","duration":120,"bikeId":"10739","endDate":1422801000,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1422800880,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"40932770","duration":420,"bikeId":"8527","endDate":1422801480,"endStationId":"151","endStationName":"Chepstow Villas, Notting Hill","startDate":1422801060,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"40932833","duration":1200,"bikeId":"7563","endDate":1422802440,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1422801240,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40932889","duration":840,"bikeId":"8752","endDate":1422802260,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1422801420,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40932969","duration":240,"bikeId":"12828","endDate":1422801900,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1422801660,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40933036","duration":600,"bikeId":"6197","endDate":1422802500,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1422801900,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40933080","duration":1080,"bikeId":"283","endDate":1422803220,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422802140,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40933174","duration":360,"bikeId":"7609","endDate":1422802800,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1422802440,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"40933229","duration":720,"bikeId":"4721","endDate":1422803340,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422802620,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40933297","duration":1320,"bikeId":"1620","endDate":1422804180,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422802860,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40933363","duration":480,"bikeId":"3262","endDate":1422803580,"endStationId":"365","endStationName":"City Road, Angel","startDate":1422803100,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40933431","duration":1500,"bikeId":"7101","endDate":1422804780,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1422803280,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40933486","duration":7500,"bikeId":"3667","endDate":1422811020,"endStationId":"705","endStationName":"Upper Richmond Road, East Putney","startDate":1422803520,"startStationId":"705","startStationName":"Upper Richmond Road, East Putney"}, +{"_id":"40933574","duration":480,"bikeId":"8928","endDate":1422804300,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1422803820,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"40933620","duration":2100,"bikeId":"2898","endDate":1422806100,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422804000,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40933709","duration":780,"bikeId":"7935","endDate":1422805020,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1422804240,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40933788","duration":120,"bikeId":"4309","endDate":1422804600,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1422804480,"startStationId":"327","startStationName":"New North Road 1, Hoxton"}, +{"_id":"40933837","duration":1620,"bikeId":"8876","endDate":1422806280,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422804660,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"40933895","duration":1500,"bikeId":"11452","endDate":1422806400,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422804900,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40933980","duration":240,"bikeId":"11187","endDate":1422805440,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422805200,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"40934052","duration":1020,"bikeId":"10320","endDate":1422806400,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1422805380,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"40934104","duration":660,"bikeId":"11287","endDate":1422806280,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422805620,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"40934181","duration":2160,"bikeId":"9241","endDate":1422807960,"endStationId":"93","endStationName":"Cloudesley Road, Angel","startDate":1422805800,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"40934246","duration":1260,"bikeId":"5258","endDate":1422807300,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1422806040,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"40934317","duration":600,"bikeId":"952","endDate":1422806880,"endStationId":"442","endStationName":"Walmer Road, Notting Hill","startDate":1422806280,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"40934369","duration":960,"bikeId":"10592","endDate":1422807420,"endStationId":"708","endStationName":"Disraeli Road, Putney","startDate":1422806460,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"40934457","duration":840,"bikeId":"8932","endDate":1422807540,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1422806700,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"40934515","duration":1320,"bikeId":"7068","endDate":1422808320,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1422807000,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40934588","duration":300,"bikeId":"11198","endDate":1422807540,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1422807240,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"40934640","duration":9600,"bikeId":"1641","endDate":1422817020,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1422807420,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"40934716","duration":900,"bikeId":"10421","endDate":1422808620,"endStationId":"538","endStationName":"Naval Row, Blackwall","startDate":1422807720,"startStationId":"484","startStationName":"Bromley High Street, Bromley"}, +{"_id":"40934807","duration":540,"bikeId":"7357","endDate":1422808500,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1422807960,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40934872","duration":180,"bikeId":"7139","endDate":1422808380,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1422808200,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40934915","duration":1980,"bikeId":"1482","endDate":1422810360,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1422808380,"startStationId":"609","startStationName":"Sugden Road, Battersea"}, +{"_id":"40934979","duration":1440,"bikeId":"12575","endDate":1422810000,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1422808560,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40935068","duration":540,"bikeId":"2857","endDate":1422809400,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1422808860,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40935135","duration":840,"bikeId":"11870","endDate":1422809940,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1422809100,"startStationId":"736","startStationName":"Queensdale Road, Shepherd's Bush"}, +{"_id":"40935195","duration":480,"bikeId":"535","endDate":1422809880,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422809400,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"40935258","duration":1440,"bikeId":"4421","endDate":1422811020,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1422809580,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40935333","duration":840,"bikeId":"6649","endDate":1422810660,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1422809820,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"40935409","duration":120,"bikeId":"100","endDate":1422810240,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1422810120,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"40935489","duration":300,"bikeId":"11971","endDate":1422810660,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422810360,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40935545","duration":480,"bikeId":"10052","endDate":1422811080,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1422810600,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"40935607","duration":480,"bikeId":"6031","endDate":1422811440,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1422810960,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40935668","duration":1260,"bikeId":"10125","endDate":1422812520,"endStationId":"571","endStationName":"Westfield Southern Terrace ,Shepherd's Bush","startDate":1422811260,"startStationId":"171","startStationName":"Collingham Gardens, Earl's Court"}, +{"_id":"40935745","duration":780,"bikeId":"1755","endDate":1422812280,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1422811500,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40935806","duration":1440,"bikeId":"8737","endDate":1422813240,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422811800,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40935879","duration":240,"bikeId":"3113","endDate":1422812400,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422812160,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40935945","duration":480,"bikeId":"5847","endDate":1422813060,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422812580,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"40936027","duration":240,"bikeId":"3611","endDate":1422813180,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1422812940,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40936078","duration":780,"bikeId":"8168","endDate":1422814020,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1422813240,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"40936146","duration":600,"bikeId":"6197","endDate":1422814200,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1422813600,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40936205","duration":1080,"bikeId":"423","endDate":1422815040,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1422813960,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40936272","duration":1080,"bikeId":"10973","endDate":1422815340,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1422814260,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40936351","duration":600,"bikeId":"6761","endDate":1422815220,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1422814620,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40936409","duration":420,"bikeId":"4895","endDate":1422815340,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1422814920,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"40936484","duration":540,"bikeId":"6887","endDate":1422815820,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1422815280,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40936555","duration":240,"bikeId":"902","endDate":1422816000,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422815760,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40936626","duration":120,"bikeId":"4929","endDate":1422816300,"endStationId":"663","endStationName":"Clarendon Road, Avondale","startDate":1422816180,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"40936676","duration":1680,"bikeId":"1365","endDate":1422818100,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422816420,"startStationId":"713","startStationName":"Hawley Crescent, Camden Town"}, +{"_id":"40936750","duration":900,"bikeId":"8669","endDate":1422817740,"endStationId":"310","endStationName":"Black Prince Road, Vauxhall","startDate":1422816840,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"40936823","duration":1080,"bikeId":"2191","endDate":1422818400,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1422817320,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40936894","duration":360,"bikeId":"5467","endDate":1422818160,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1422817800,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"40936955","duration":780,"bikeId":"5285","endDate":1422819060,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1422818280,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40937022","duration":660,"bikeId":"9730","endDate":1422819360,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1422818700,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40937086","duration":5100,"bikeId":"5685","endDate":1422824160,"endStationId":"517","endStationName":"Ford Road, Old Ford","startDate":1422819060,"startStationId":"523","startStationName":"Langdon Park, Poplar"}, +{"_id":"40937167","duration":780,"bikeId":"4928","endDate":1422820320,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1422819540,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"40937223","duration":1140,"bikeId":"6702","endDate":1422821220,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1422820080,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40937299","duration":900,"bikeId":"5261","endDate":1422821460,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1422820560,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"40937364","duration":300,"bikeId":"12678","endDate":1422821340,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422821040,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"40937430","duration":1380,"bikeId":"7537","endDate":1422822840,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422821460,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40937501","duration":180,"bikeId":"7435","endDate":1422822540,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1422822360,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"40937565","duration":840,"bikeId":"7919","endDate":1422823740,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1422822900,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"40937633","duration":360,"bikeId":"6576","endDate":1422823860,"endStationId":"652","endStationName":"Evesham Street, Avondale","startDate":1422823500,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"40937693","duration":540,"bikeId":"12605","endDate":1422824580,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1422824040,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40937765","duration":120,"bikeId":"3531","endDate":1422824940,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1422824820,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40937827","duration":4980,"bikeId":"12324","endDate":1422830520,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1422825540,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40937894","duration":240,"bikeId":"5750","endDate":1422826920,"endStationId":"310","endStationName":"Black Prince Road, Vauxhall","startDate":1422826680,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40937963","duration":420,"bikeId":"3198","endDate":1422827880,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1422827460,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40938034","duration":540,"bikeId":"5173","endDate":1422829020,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1422828480,"startStationId":"743","startStationName":"Oxford Road, Putney"}, +{"_id":"40938099","duration":540,"bikeId":"6965","endDate":1422829860,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1422829320,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40938168","duration":1020,"bikeId":"4716","endDate":1422831300,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1422830280,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40938239","duration":660,"bikeId":"11909","endDate":1422831960,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1422831300,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40938303","duration":600,"bikeId":"4424","endDate":1422833040,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1422832440,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"40938371","duration":1140,"bikeId":"10698","endDate":1422835320,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1422834180,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"40938433","duration":1620,"bikeId":"545","endDate":1422837120,"endStationId":"475","endStationName":"Lightermans Road, Millwall","startDate":1422835500,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"40938504","duration":540,"bikeId":"3697","endDate":1422837840,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1422837300,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40938577","duration":600,"bikeId":"6329","endDate":1422840480,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1422839880,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40938645","duration":780,"bikeId":"2219","endDate":1422844740,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1422843960,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40938712","duration":480,"bikeId":"364","endDate":1422848340,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1422847860,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40938796","duration":2160,"bikeId":"1984","endDate":1422855000,"endStationId":"611","endStationName":"Princedale Road , Holland Park","startDate":1422852840,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"40938862","duration":1020,"bikeId":"4056","endDate":1422857580,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1422856560,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"40938927","duration":480,"bikeId":"6210","endDate":1422858240,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1422857760,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40938995","duration":660,"bikeId":"11541","endDate":1422859200,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1422858540,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40939061","duration":300,"bikeId":"1667","endDate":1422859440,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1422859140,"startStationId":"668","startStationName":"Ravenscourt Park Station, Hammersmith"}, +{"_id":"40939128","duration":600,"bikeId":"1362","endDate":1422860100,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1422859500,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"40939195","duration":300,"bikeId":"8935","endDate":1422860220,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1422859920,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40939248","duration":1560,"bikeId":"8441","endDate":1422861780,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1422860220,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"40939312","duration":420,"bikeId":"3068","endDate":1422860940,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1422860520,"startStationId":"146","startStationName":"Vauxhall Bridge , Pimlico"}, +{"_id":"40939384","duration":780,"bikeId":"3345","endDate":1422861600,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1422860820,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40939458","duration":540,"bikeId":"8614","endDate":1422861660,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1422861120,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40939526","duration":420,"bikeId":"1816","endDate":1422861780,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1422861360,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"40939583","duration":180,"bikeId":"12903","endDate":1422861720,"endStationId":"683","endStationName":"Dorothy Road, Clapham Junction","startDate":1422861540,"startStationId":"627","startStationName":"Holden Street, Battersea"}, +{"_id":"40939633","duration":1740,"bikeId":"5690","endDate":1422863460,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1422861720,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40939700","duration":1080,"bikeId":"1364","endDate":1422862980,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1422861900,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40939779","duration":180,"bikeId":"7030","endDate":1422862320,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1422862140,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40939839","duration":240,"bikeId":"2290","endDate":1422862500,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1422862260,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"40939916","duration":780,"bikeId":"4702","endDate":1422863160,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1422862380,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"40939972","duration":900,"bikeId":"216","endDate":1422863400,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1422862500,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40940050","duration":720,"bikeId":"2025","endDate":1422863340,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1422862620,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40940103","duration":1260,"bikeId":"12678","endDate":1422864000,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1422862740,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40940200","duration":180,"bikeId":"11807","endDate":1422863100,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422862920,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"40940242","duration":300,"bikeId":"7111","endDate":1422863340,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422863040,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40940298","duration":540,"bikeId":"9905","endDate":1422863700,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1422863160,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40940394","duration":180,"bikeId":"5830","endDate":1422863460,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1422863280,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40940407","duration":1440,"bikeId":"10073","endDate":1422864780,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1422863340,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40940485","duration":600,"bikeId":"12609","endDate":1422864060,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1422863460,"startStationId":"469","startStationName":"Lindfield Street, Poplar"}, +{"_id":"40940573","duration":300,"bikeId":"12034","endDate":1422863880,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1422863580,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40940612","duration":1680,"bikeId":"5004","endDate":1422865320,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1422863640,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"40940711","duration":420,"bikeId":"9973","endDate":1422864180,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1422863760,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"40940772","duration":840,"bikeId":"5255","endDate":1422864660,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1422863820,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40940836","duration":360,"bikeId":"886","endDate":1422864300,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1422863940,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"40940882","duration":780,"bikeId":"6330","endDate":1422864780,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1422864000,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40940944","duration":1140,"bikeId":"8165","endDate":1422865200,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422864060,"startStationId":"469","startStationName":"Lindfield Street, Poplar"}, +{"_id":"40941041","duration":420,"bikeId":"8896","endDate":1422864600,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1422864180,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40941075","duration":840,"bikeId":"7227","endDate":1422865080,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422864240,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"40941171","duration":300,"bikeId":"12221","endDate":1422864660,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1422864360,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"40941227","duration":660,"bikeId":"1274","endDate":1422865080,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1422864420,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40941313","duration":960,"bikeId":"11870","endDate":1422865440,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1422864480,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40941336","duration":1680,"bikeId":"12309","endDate":1422866220,"endStationId":"289","endStationName":"South Audley Street, Mayfair","startDate":1422864540,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40941478","duration":480,"bikeId":"7537","endDate":1422865140,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1422864660,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40941529","duration":780,"bikeId":"9878","endDate":1422865500,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422864720,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40941588","duration":1680,"bikeId":"687","endDate":1422866460,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1422864780,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40941677","duration":300,"bikeId":"8711","endDate":1422865200,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422864900,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"40941715","duration":480,"bikeId":"3754","endDate":1422865440,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1422864960,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"40941799","duration":540,"bikeId":"7884","endDate":1422865560,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1422865020,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40941856","duration":780,"bikeId":"8120","endDate":1422865860,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1422865080,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40941896","duration":1560,"bikeId":"9543","endDate":1422866700,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1422865140,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"40941936","duration":1500,"bikeId":"11921","endDate":1422866700,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1422865200,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"40942042","duration":360,"bikeId":"11901","endDate":1422865680,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1422865320,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40942133","duration":420,"bikeId":"6706","endDate":1422865800,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422865380,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40942163","duration":600,"bikeId":"12948","endDate":1422866040,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422865440,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40942256","duration":660,"bikeId":"6713","endDate":1422866160,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1422865500,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"40942280","duration":780,"bikeId":"4804","endDate":1422866340,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422865560,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40942377","duration":720,"bikeId":"333","endDate":1422866340,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1422865620,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40942435","duration":900,"bikeId":"11491","endDate":1422866580,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422865680,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"40942475","duration":1140,"bikeId":"11519","endDate":1422866880,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422865740,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40942568","duration":1500,"bikeId":"1001","endDate":1422867300,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422865800,"startStationId":"518","startStationName":"Antill Road, Mile End"}, +{"_id":"40942618","duration":1080,"bikeId":"6870","endDate":1422866940,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1422865860,"startStationId":"355","startStationName":"Oval Way, Lambeth"}, +{"_id":"40942816","duration":1140,"bikeId":"8118","endDate":1422867060,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1422865920,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"40942737","duration":840,"bikeId":"203","endDate":1422866820,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1422865980,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40942835","duration":900,"bikeId":"8602","endDate":1422866940,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1422866040,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40942927","duration":900,"bikeId":"11469","endDate":1422867000,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422866100,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"40943007","duration":660,"bikeId":"11399","endDate":1422866820,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422866160,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40943141","duration":600,"bikeId":"6357","endDate":1422866820,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1422866220,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"40943182","duration":480,"bikeId":"9998","endDate":1422866760,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422866280,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40943227","duration":240,"bikeId":"10177","endDate":1422866580,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1422866340,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40943358","duration":120,"bikeId":"10592","endDate":1422866520,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1422866400,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40943333","duration":1020,"bikeId":"1214","endDate":1422867420,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1422866400,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40943440","duration":960,"bikeId":"7946","endDate":1422867420,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422866460,"startStationId":"624","startStationName":"Courland Grove, Wandsworth Road"}, +{"_id":"40943481","duration":780,"bikeId":"1985","endDate":1422867300,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1422866520,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"40943576","duration":660,"bikeId":"11123","endDate":1422867240,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1422866580,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"40943585","duration":540,"bikeId":"6982","endDate":1422867180,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1422866640,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"40943669","duration":420,"bikeId":"12129","endDate":1422867120,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1422866700,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40943802","duration":360,"bikeId":"7608","endDate":1422867120,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1422866760,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"40943809","duration":1500,"bikeId":"1046","endDate":1422868260,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1422866760,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"40943869","duration":1080,"bikeId":"5152","endDate":1422867900,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1422866820,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40943914","duration":1200,"bikeId":"10542","endDate":1422868080,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422866880,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"40944020","duration":240,"bikeId":"5202","endDate":1422867240,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422867000,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40944045","duration":1740,"bikeId":"229","endDate":1422868740,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1422867000,"startStationId":"598","startStationName":"Southerton Road, Hammersmith"}, +{"_id":"40944085","duration":1260,"bikeId":"9489","endDate":1422868320,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422867060,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"40944188","duration":960,"bikeId":"9820","endDate":1422868080,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1422867120,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"40944235","duration":1260,"bikeId":"665","endDate":1422868440,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1422867180,"startStationId":"576","startStationName":"Alpha Grove, Millwall"}, +{"_id":"40944291","duration":1680,"bikeId":"9043","endDate":1422868920,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1422867240,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40944372","duration":1260,"bikeId":"12349","endDate":1422868560,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1422867300,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40944508","duration":300,"bikeId":"9516","endDate":1422867720,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1422867420,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"40944536","duration":840,"bikeId":"4284","endDate":1422868320,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1422867480,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40944591","duration":1020,"bikeId":"2659","endDate":1422868560,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1422867540,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"40944707","duration":240,"bikeId":"1985","endDate":1422867900,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1422867660,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40944784","duration":420,"bikeId":"10533","endDate":1422868140,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1422867720,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40944804","duration":600,"bikeId":"11851","endDate":1422868380,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1422867780,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"40944868","duration":780,"bikeId":"11291","endDate":1422868620,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1422867840,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40944987","duration":300,"bikeId":"735","endDate":1422868260,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1422867960,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40945014","duration":1140,"bikeId":"7336","endDate":1422869160,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1422868020,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40945067","duration":840,"bikeId":"11718","endDate":1422868980,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1422868140,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40945155","duration":480,"bikeId":"12496","endDate":1422868740,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1422868260,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40945243","duration":360,"bikeId":"10861","endDate":1422868740,"endStationId":"76","endStationName":"Longford Street, Regent's Park","startDate":1422868380,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"40945304","duration":360,"bikeId":"8413","endDate":1422868860,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1422868500,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40945377","duration":300,"bikeId":"6149","endDate":1422868920,"endStationId":"551","endStationName":"Montgomery Square, Canary Wharf","startDate":1422868620,"startStationId":"473","startStationName":"Millharbour, Millwall"}, +{"_id":"40945424","duration":540,"bikeId":"12071","endDate":1422869280,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422868740,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"40945493","duration":540,"bikeId":"3296","endDate":1422869400,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422868860,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40945582","duration":540,"bikeId":"3270","endDate":1422869520,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422868980,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"40945658","duration":600,"bikeId":"3631","endDate":1422869700,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1422869100,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"40945704","duration":720,"bikeId":"4848","endDate":1422869940,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422869220,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"40945786","duration":300,"bikeId":"12787","endDate":1422869700,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1422869400,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"40945842","duration":1080,"bikeId":"12572","endDate":1422870600,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1422869520,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"40945904","duration":420,"bikeId":"10138","endDate":1422870120,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1422869700,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"40945976","duration":540,"bikeId":"13032","endDate":1422870420,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1422869880,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40946046","duration":360,"bikeId":"10628","endDate":1422870420,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422870060,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"40946108","duration":900,"bikeId":"10726","endDate":1422871080,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422870180,"startStationId":"291","startStationName":"Claverton Street, Pimlico"}, +{"_id":"40946167","duration":960,"bikeId":"386","endDate":1422871320,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1422870360,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40946238","duration":1500,"bikeId":"6010","endDate":1422872040,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1422870540,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"40946310","duration":660,"bikeId":"9789","endDate":1422871440,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1422870780,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40946378","duration":600,"bikeId":"8239","endDate":1422871560,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1422870960,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40946434","duration":1140,"bikeId":"8800","endDate":1422872340,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1422871200,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40946515","duration":420,"bikeId":"10392","endDate":1422871860,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1422871440,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"40946578","duration":1380,"bikeId":"3011","endDate":1422873060,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422871680,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"40946647","duration":1020,"bikeId":"9762","endDate":1422873000,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1422871980,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40946712","duration":420,"bikeId":"3149","endDate":1422872700,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1422872280,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"40946797","duration":600,"bikeId":"3506","endDate":1422873240,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1422872640,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40946856","duration":1320,"bikeId":"6495","endDate":1422874320,"endStationId":"656","endStationName":"Broomhouse Lane, Parsons Green","startDate":1422873000,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"40946919","duration":1140,"bikeId":"5316","endDate":1422874440,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1422873300,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40946995","duration":1200,"bikeId":"38","endDate":1422874800,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422873600,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40947054","duration":1500,"bikeId":"11432","endDate":1422875400,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1422873900,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40947137","duration":600,"bikeId":"10759","endDate":1422874860,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1422874260,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40947201","duration":1440,"bikeId":"11882","endDate":1422876060,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1422874620,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"40947275","duration":240,"bikeId":"6060","endDate":1422875280,"endStationId":"463","endStationName":"Thurtle Road, Haggerston","startDate":1422875040,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40947334","duration":960,"bikeId":"10201","endDate":1422876300,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1422875340,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"40947406","duration":540,"bikeId":"8623","endDate":1422876240,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1422875700,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"40947482","duration":600,"bikeId":"11125","endDate":1422876720,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1422876120,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"40947556","duration":120,"bikeId":"12448","endDate":1422876660,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1422876540,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40947612","duration":1260,"bikeId":"5368","endDate":1422878100,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1422876840,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"40947680","duration":1080,"bikeId":"10528","endDate":1422878160,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1422877080,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40947763","duration":480,"bikeId":"830","endDate":1422877920,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1422877440,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40947822","duration":960,"bikeId":"5381","endDate":1422878700,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422877740,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40947892","duration":1140,"bikeId":"4918","endDate":1422879180,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422878040,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"40947975","duration":1560,"bikeId":"11549","endDate":1422879900,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1422878340,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40948026","duration":1380,"bikeId":"3011","endDate":1422880020,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1422878640,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40948109","duration":1080,"bikeId":"6759","endDate":1422880020,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1422878940,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40948175","duration":900,"bikeId":"12464","endDate":1422880200,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1422879300,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40948245","duration":300,"bikeId":"8564","endDate":1422879900,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1422879600,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"40948311","duration":1560,"bikeId":"12416","endDate":1422881400,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1422879840,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40948388","duration":660,"bikeId":"12527","endDate":1422880800,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422880140,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40948456","duration":480,"bikeId":"7639","endDate":1422880980,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422880500,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"40948531","duration":420,"bikeId":"10208","endDate":1422881220,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1422880800,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"40948594","duration":480,"bikeId":"2402","endDate":1422881580,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1422881100,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"40948651","duration":480,"bikeId":"10296","endDate":1422881820,"endStationId":"766","endStationName":"Ram Street, Wandsworth","startDate":1422881340,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"40948729","duration":240,"bikeId":"6073","endDate":1422881880,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1422881640,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"40948789","duration":1500,"bikeId":"10114","endDate":1422883440,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1422881940,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40948852","duration":660,"bikeId":"8029","endDate":1422882840,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422882180,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"40948931","duration":360,"bikeId":"1040","endDate":1422882840,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1422882480,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40949000","duration":1200,"bikeId":"11255","endDate":1422883980,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1422882780,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"40949063","duration":840,"bikeId":"6563","endDate":1422883920,"endStationId":"76","endStationName":"Longford Street, Regent's Park","startDate":1422883080,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"40949129","duration":420,"bikeId":"636","endDate":1422883860,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1422883440,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40949207","duration":1140,"bikeId":"4005","endDate":1422884820,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1422883680,"startStationId":"353","startStationName":"Greycoat Street , Westminster"}, +{"_id":"40949269","duration":360,"bikeId":"10271","endDate":1422884400,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1422884040,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"40949350","duration":240,"bikeId":"12067","endDate":1422884520,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1422884280,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40949404","duration":420,"bikeId":"10016","endDate":1422885000,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1422884580,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"40949466","duration":3900,"bikeId":"3582","endDate":1422888660,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422884760,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"40949545","duration":360,"bikeId":"4313","endDate":1422885480,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1422885120,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40949600","duration":900,"bikeId":"1123","endDate":1422886260,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422885360,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40949668","duration":5700,"bikeId":"1967","endDate":1422891300,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1422885600,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"40949748","duration":120,"bikeId":"12674","endDate":1422886080,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1422885960,"startStationId":"49","startStationName":"Curzon Street, Mayfair"}, +{"_id":"40949813","duration":480,"bikeId":"6388","endDate":1422886680,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1422886200,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40949875","duration":1260,"bikeId":"11316","endDate":1422887700,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1422886440,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40949961","duration":240,"bikeId":"7495","endDate":1422887040,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1422886800,"startStationId":"468","startStationName":"Cantrell Road, Bow"}, +{"_id":"40950020","duration":600,"bikeId":"733","endDate":1422887700,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422887100,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40950080","duration":1500,"bikeId":"2417","endDate":1422888840,"endStationId":"471","endStationName":"Hewison Street, Old Ford","startDate":1422887340,"startStationId":"577","startStationName":"Globe Town Market, Bethnal Green"}, +{"_id":"40950148","duration":180,"bikeId":"10107","endDate":1422887880,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1422887700,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"40950216","duration":660,"bikeId":"11007","endDate":1422888660,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422888000,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"40950279","duration":1080,"bikeId":"12998","endDate":1422889380,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1422888300,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40950356","duration":1080,"bikeId":"11433","endDate":1422889680,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1422888600,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"40950420","duration":360,"bikeId":"10422","endDate":1422889320,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1422888960,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40950489","duration":960,"bikeId":"10954","endDate":1422890220,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1422889260,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40950548","duration":1800,"bikeId":"9726","endDate":1422891360,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422889560,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"40950613","duration":840,"bikeId":"9794","endDate":1422890820,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1422889980,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40950689","duration":540,"bikeId":"11825","endDate":1422890820,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1422890280,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"40950756","duration":480,"bikeId":"4549","endDate":1422891120,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1422890640,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40950827","duration":300,"bikeId":"6904","endDate":1422891240,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1422890940,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40950892","duration":360,"bikeId":"10556","endDate":1422891600,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1422891240,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40950939","duration":1620,"bikeId":"3744","endDate":1422893100,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1422891480,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40951029","duration":360,"bikeId":"7588","endDate":1422892140,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1422891780,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40951075","duration":1260,"bikeId":"1680","endDate":1422893280,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1422892020,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"40951145","duration":1440,"bikeId":"9535","endDate":1422893760,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422892320,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40951204","duration":3720,"bikeId":"9925","endDate":1422896280,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1422892560,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40951295","duration":240,"bikeId":"3545","endDate":1422893100,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1422892860,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40951352","duration":120,"bikeId":"1838","endDate":1422893160,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1422893040,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"40951411","duration":240,"bikeId":"2668","endDate":1422893520,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1422893280,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40951471","duration":900,"bikeId":"5224","endDate":1422894360,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422893460,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"40951548","duration":420,"bikeId":"1682","endDate":1422894120,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1422893700,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40951599","duration":1020,"bikeId":"6931","endDate":1422894900,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1422893880,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40951695","duration":300,"bikeId":"8714","endDate":1422894480,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1422894180,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40951740","duration":780,"bikeId":"11039","endDate":1422895140,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422894360,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"40951817","duration":420,"bikeId":"6837","endDate":1422895020,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1422894600,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"40951881","duration":1200,"bikeId":"6869","endDate":1422895980,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1422894780,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40951947","duration":600,"bikeId":"3759","endDate":1422895620,"endStationId":"684","endStationName":"Neville Gill Close, Wandsworth","startDate":1422895020,"startStationId":"623","startStationName":"Nantes Close, Wandsworth"}, +{"_id":"40952019","duration":780,"bikeId":"8353","endDate":1422895920,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1422895140,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40952080","duration":600,"bikeId":"809","endDate":1422895920,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422895320,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40952144","duration":960,"bikeId":"7116","endDate":1422896460,"endStationId":"678","endStationName":"Esmond Street, Putney","startDate":1422895500,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40952219","duration":480,"bikeId":"9586","endDate":1422896160,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422895680,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40952284","duration":960,"bikeId":"12989","endDate":1422896820,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422895860,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40952354","duration":720,"bikeId":"3306","endDate":1422896760,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1422896040,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"40952393","duration":1320,"bikeId":"3086","endDate":1422897480,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1422896160,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40952486","duration":900,"bikeId":"12345","endDate":1422897240,"endStationId":"205","endStationName":"New Road 2, Whitechapel","startDate":1422896340,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40952526","duration":840,"bikeId":"944","endDate":1422897300,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1422896460,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40952606","duration":0,"bikeId":"6122","endDate":1422896640,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1422896640,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"40952678","duration":420,"bikeId":"8970","endDate":1422897120,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1422896700,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40952708","duration":1200,"bikeId":"6008","endDate":1422897960,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1422896760,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40952829","duration":540,"bikeId":"756","endDate":1422897420,"endStationId":"554","endStationName":"Aberfeldy Street, Poplar","startDate":1422896880,"startStationId":"551","startStationName":"Montgomery Square, Canary Wharf"}, +{"_id":"40952906","duration":420,"bikeId":"2750","endDate":1422897420,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1422897000,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40952925","duration":900,"bikeId":"12129","endDate":1422897960,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1422897060,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"40953021","duration":720,"bikeId":"5471","endDate":1422897900,"endStationId":"606","endStationName":"Addison Road, Holland Park","startDate":1422897180,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40953087","duration":900,"bikeId":"1893","endDate":1422898200,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1422897300,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40953136","duration":840,"bikeId":"7556","endDate":1422898260,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1422897420,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40953241","duration":480,"bikeId":"9436","endDate":1422898020,"endStationId":"667","endStationName":"Shepherd's Bush Road North, Shepherd's Bush","startDate":1422897540,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"40953300","duration":720,"bikeId":"5388","endDate":1422898380,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422897660,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40953358","duration":660,"bikeId":"3335","endDate":1422898440,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422897780,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40953420","duration":540,"bikeId":"6996","endDate":1422898440,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1422897900,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40953484","duration":360,"bikeId":"7435","endDate":1422898380,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1422898020,"startStationId":"729","startStationName":"St. Peter's Terrace, Fulham"}, +{"_id":"40953583","duration":240,"bikeId":"5217","endDate":1422898380,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1422898140,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40953627","duration":900,"bikeId":"10777","endDate":1422899100,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1422898200,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"40953725","duration":480,"bikeId":"12843","endDate":1422898800,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422898320,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"40953736","duration":780,"bikeId":"9977","endDate":1422899160,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1422898380,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"40953840","duration":240,"bikeId":"6156","endDate":1422898740,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1422898500,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40953885","duration":540,"bikeId":"11479","endDate":1422899100,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1422898560,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40953975","duration":600,"bikeId":"6607","endDate":1422899220,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1422898620,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40954039","duration":780,"bikeId":"1586","endDate":1422899460,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422898680,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40954056","duration":900,"bikeId":"5151","endDate":1422899640,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1422898740,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"40954111","duration":1260,"bikeId":"11743","endDate":1422900060,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1422898800,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"40954231","duration":360,"bikeId":"11222","endDate":1422899280,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1422898920,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"40954285","duration":420,"bikeId":"12105","endDate":1422899400,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422898980,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40954358","duration":600,"bikeId":"1061","endDate":1422899640,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422899040,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"40954397","duration":1020,"bikeId":"2970","endDate":1422900120,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1422899100,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40954483","duration":120,"bikeId":"7840","endDate":1422899340,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1422899220,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40954564","duration":360,"bikeId":"9667","endDate":1422899640,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1422899280,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40954634","duration":780,"bikeId":"12814","endDate":1422900120,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422899340,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40954708","duration":240,"bikeId":"8937","endDate":1422899700,"endStationId":"754","endStationName":"Grenfell Road, Avondale","startDate":1422899460,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"40954766","duration":600,"bikeId":"964","endDate":1422900120,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1422899520,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40954816","duration":1380,"bikeId":"3422","endDate":1422900960,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422899580,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40954897","duration":360,"bikeId":"10646","endDate":1422900060,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1422899700,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"40954974","duration":360,"bikeId":"10775","endDate":1422900120,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1422899760,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"40955033","duration":660,"bikeId":"5026","endDate":1422900480,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1422899820,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40955051","duration":1620,"bikeId":"4385","endDate":1422901500,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1422899880,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40955155","duration":540,"bikeId":"9010","endDate":1422900540,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422900000,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"40955186","duration":840,"bikeId":"4313","endDate":1422900900,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422900060,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40955277","duration":960,"bikeId":"7953","endDate":1422901080,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1422900120,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40955317","duration":2160,"bikeId":"1253","endDate":1422902340,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1422900180,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40955466","duration":420,"bikeId":"2226","endDate":1422900720,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1422900300,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40955469","duration":420,"bikeId":"7391","endDate":1422900780,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422900360,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"40955529","duration":840,"bikeId":"3958","endDate":1422901260,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1422900420,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40955641","duration":120,"bikeId":"9801","endDate":1422900660,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1422900540,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"40955685","duration":540,"bikeId":"12805","endDate":1422901140,"endStationId":"435","endStationName":"Kennington Station, Kennington","startDate":1422900600,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40955723","duration":780,"bikeId":"8973","endDate":1422901440,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1422900660,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40955781","duration":900,"bikeId":"11007","endDate":1422901620,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1422900720,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40955831","duration":1260,"bikeId":"1226","endDate":1422902040,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422900780,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"40955949","duration":240,"bikeId":"8909","endDate":1422901140,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1422900900,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"40956018","duration":900,"bikeId":"4387","endDate":1422901860,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1422900960,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40956076","duration":300,"bikeId":"182","endDate":1422901380,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1422901080,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40956140","duration":600,"bikeId":"12724","endDate":1422901740,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1422901140,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40956195","duration":1260,"bikeId":"10903","endDate":1422902460,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1422901200,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40956265","duration":1860,"bikeId":"6176","endDate":1422903180,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1422901320,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40956344","duration":780,"bikeId":"9844","endDate":1422902220,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422901440,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40956412","duration":420,"bikeId":"4208","endDate":1422901980,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422901560,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40956485","duration":420,"bikeId":"12457","endDate":1422902100,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1422901680,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40956521","duration":1140,"bikeId":"12487","endDate":1422902880,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1422901740,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40956608","duration":300,"bikeId":"11920","endDate":1422902160,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1422901860,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40956638","duration":2340,"bikeId":"11284","endDate":1422904260,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1422901920,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40956726","duration":1260,"bikeId":"12578","endDate":1422903300,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1422902040,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40956801","duration":720,"bikeId":"3795","endDate":1422902880,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1422902160,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40956869","duration":1860,"bikeId":"11051","endDate":1422904080,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1422902220,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40956961","duration":540,"bikeId":"4131","endDate":1422902880,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1422902340,"startStationId":"44","startStationName":"Bruton Street, Mayfair"}, +{"_id":"40957020","duration":960,"bikeId":"469","endDate":1422903360,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1422902400,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"40957106","duration":480,"bikeId":"12233","endDate":1422903000,"endStationId":"249","endStationName":"Harper Road, Borough","startDate":1422902520,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40957122","duration":1200,"bikeId":"10218","endDate":1422903780,"endStationId":"291","endStationName":"Claverton Street, Pimlico","startDate":1422902580,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"40957210","duration":1320,"bikeId":"7965","endDate":1422904020,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1422902700,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40957267","duration":960,"bikeId":"678","endDate":1422903780,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1422902820,"startStationId":"49","startStationName":"Curzon Street, Mayfair"}, +{"_id":"40957333","duration":600,"bikeId":"4270","endDate":1422903540,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1422902940,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40957398","duration":720,"bikeId":"2234","endDate":1422903780,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1422903060,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40957473","duration":420,"bikeId":"10946","endDate":1422903600,"endStationId":"744","endStationName":"Ingrave Street, Battersea","startDate":1422903180,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"40957511","duration":1620,"bikeId":"9366","endDate":1422904860,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422903240,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40957643","duration":120,"bikeId":"11469","endDate":1422903540,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1422903420,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"40957711","duration":360,"bikeId":"11785","endDate":1422903900,"endStationId":"708","endStationName":"Disraeli Road, Putney","startDate":1422903540,"startStationId":"704","startStationName":"Mexfield Road, East Putney"}, +{"_id":"40957746","duration":1500,"bikeId":"3320","endDate":1422905100,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1422903600,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40957800","duration":1680,"bikeId":"9090","endDate":1422905400,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1422903720,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"40957870","duration":780,"bikeId":"12443","endDate":1422904620,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1422903840,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"40957972","duration":540,"bikeId":"11241","endDate":1422904500,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1422903960,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"40958018","duration":2100,"bikeId":"11488","endDate":1422906180,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1422904080,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"40958107","duration":720,"bikeId":"1612","endDate":1422904980,"endStationId":"697","endStationName":"Charlotte Terrace, Angel","startDate":1422904260,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40958146","duration":900,"bikeId":"12244","endDate":1422905280,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1422904380,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40958247","duration":120,"bikeId":"5123","endDate":1422904680,"endStationId":"205","endStationName":"New Road 2, Whitechapel","startDate":1422904560,"startStationId":"565","startStationName":"Selby Street, Whitechapel"}, +{"_id":"40958300","duration":960,"bikeId":"6893","endDate":1422905640,"endStationId":"249","endStationName":"Harper Road, Borough","startDate":1422904680,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"40958384","duration":240,"bikeId":"10506","endDate":1422905100,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422904860,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"40958469","duration":240,"bikeId":"3774","endDate":1422905280,"endStationId":"611","endStationName":"Princedale Road , Holland Park","startDate":1422905040,"startStationId":"771","startStationName":"Rifle Place, Avondale"}, +{"_id":"40958509","duration":780,"bikeId":"6290","endDate":1422905940,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1422905160,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"40958598","duration":600,"bikeId":"8752","endDate":1422905940,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1422905340,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40958655","duration":360,"bikeId":"12446","endDate":1422905880,"endStationId":"60","endStationName":"Lisson Grove, St. John's Wood","startDate":1422905520,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"40958726","duration":480,"bikeId":"8051","endDate":1422906180,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1422905700,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"40958799","duration":480,"bikeId":"12762","endDate":1422906360,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422905880,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"40958853","duration":2040,"bikeId":"2460","endDate":1422908040,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422906000,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40958920","duration":1620,"bikeId":"10276","endDate":1422907800,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1422906180,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40958996","duration":420,"bikeId":"4443","endDate":1422906840,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1422906420,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40959072","duration":240,"bikeId":"9703","endDate":1422906900,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1422906660,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40959151","duration":480,"bikeId":"8371","endDate":1422907320,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1422906840,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40959215","duration":240,"bikeId":"2823","endDate":1422907380,"endStationId":"477","endStationName":"Spindrift Avenue, Millwall","startDate":1422907140,"startStationId":"455","startStationName":"East Ferry Road, Cubitt Town"}, +{"_id":"40959285","duration":240,"bikeId":"8800","endDate":1422907620,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1422907380,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"40959324","duration":1620,"bikeId":"12500","endDate":1422909120,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1422907500,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"40959409","duration":540,"bikeId":"4593","endDate":1422908280,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1422907740,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"40959464","duration":780,"bikeId":"4136","endDate":1422908760,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1422907980,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40959539","duration":180,"bikeId":"8649","endDate":1422908460,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422908280,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40959597","duration":420,"bikeId":"5194","endDate":1422908940,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1422908520,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"40959667","duration":900,"bikeId":"8507","endDate":1422909660,"endStationId":"365","endStationName":"City Road, Angel","startDate":1422908760,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40959740","duration":780,"bikeId":"7197","endDate":1422909900,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1422909120,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40959820","duration":360,"bikeId":"1723","endDate":1422909780,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1422909420,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"40959871","duration":780,"bikeId":"1185","endDate":1422910440,"endStationId":"247","endStationName":"St. John's Wood Church, Regent's Park","startDate":1422909660,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40959947","duration":900,"bikeId":"3150","endDate":1422910860,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1422909960,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40960025","duration":300,"bikeId":"10807","endDate":1422910620,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1422910320,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"40960079","duration":540,"bikeId":"2716","endDate":1422911160,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1422910620,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"40960153","duration":420,"bikeId":"623","endDate":1422911460,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1422911040,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40960213","duration":1860,"bikeId":"5777","endDate":1422913200,"endStationId":"21","endStationName":"Hampstead Road (Cartmel), Euston","startDate":1422911340,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"40960283","duration":1260,"bikeId":"10383","endDate":1422912960,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1422911700,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"40960362","duration":300,"bikeId":"11054","endDate":1422912480,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1422912180,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40960413","duration":840,"bikeId":"349","endDate":1422913500,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1422912660,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"40960494","duration":540,"bikeId":"10966","endDate":1422913860,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1422913320,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40960564","duration":240,"bikeId":"10083","endDate":1422914040,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1422913800,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40960629","duration":360,"bikeId":"10823","endDate":1422914640,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1422914280,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"40960696","duration":240,"bikeId":"3730","endDate":1422915060,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1422914820,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40960754","duration":3060,"bikeId":"506","endDate":1422918240,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1422915180,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"40960823","duration":240,"bikeId":"12374","endDate":1422916080,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1422915840,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40960890","duration":540,"bikeId":"9705","endDate":1422916980,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1422916440,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40960952","duration":840,"bikeId":"8742","endDate":1422918240,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1422917400,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40961013","duration":720,"bikeId":"11106","endDate":1422919020,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1422918300,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40961089","duration":480,"bikeId":"11525","endDate":1422919680,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1422919200,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40961155","duration":780,"bikeId":"7445","endDate":1422920940,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1422920160,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40961219","duration":6360,"bikeId":"1533","endDate":1422928140,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1422921780,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"40961287","duration":960,"bikeId":"12796","endDate":1422925080,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1422924120,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"40961353","duration":180,"bikeId":"7447","endDate":1422927780,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1422927600,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"40961420","duration":1020,"bikeId":"12974","endDate":1422936540,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1422935520,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40961488","duration":300,"bikeId":"4553","endDate":1422942600,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422942300,"startStationId":"156","startStationName":"New Kent Road, Borough"}, +{"_id":"40961554","duration":960,"bikeId":"10823","endDate":1422945060,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422944100,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40961625","duration":720,"bikeId":"11701","endDate":1422945720,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422945000,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"40961692","duration":540,"bikeId":"11899","endDate":1422946260,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1422945720,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"40961749","duration":540,"bikeId":"403","endDate":1422946620,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1422946080,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"40961813","duration":1200,"bikeId":"4748","endDate":1422947640,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1422946440,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"40961885","duration":600,"bikeId":"11409","endDate":1422947400,"endStationId":"551","endStationName":"Montgomery Square, Canary Wharf","startDate":1422946800,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"40961958","duration":240,"bikeId":"6758","endDate":1422947400,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422947160,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40962023","duration":1200,"bikeId":"5638","endDate":1422948540,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1422947340,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40962090","duration":540,"bikeId":"5577","endDate":1422948180,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1422947640,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40962138","duration":900,"bikeId":"133","endDate":1422948780,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1422947880,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40962210","duration":540,"bikeId":"10202","endDate":1422948660,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1422948120,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"40962283","duration":1680,"bikeId":"9225","endDate":1422949980,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1422948300,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40962356","duration":360,"bikeId":"10741","endDate":1422948900,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1422948540,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"40962433","duration":240,"bikeId":"1632","endDate":1422948960,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1422948720,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"40962486","duration":840,"bikeId":"12115","endDate":1422949680,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1422948840,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"40962545","duration":540,"bikeId":"4877","endDate":1422949560,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1422949020,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40962604","duration":840,"bikeId":"3794","endDate":1422949980,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1422949140,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40962677","duration":960,"bikeId":"5751","endDate":1422950220,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1422949260,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40962726","duration":1020,"bikeId":"9775","endDate":1422950400,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422949380,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40962817","duration":1080,"bikeId":"178","endDate":1422950580,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422949500,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"40962867","duration":1200,"bikeId":"8936","endDate":1422950820,"endStationId":"100","endStationName":"Albert Embankment, Vauxhall","startDate":1422949620,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40962948","duration":1260,"bikeId":"5788","endDate":1422951000,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1422949740,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40963016","duration":300,"bikeId":"7704","endDate":1422950220,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1422949920,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"40963060","duration":1680,"bikeId":"9198","endDate":1422951660,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1422949980,"startStationId":"729","startStationName":"St. Peter's Terrace, Fulham"}, +{"_id":"40963138","duration":1020,"bikeId":"1516","endDate":1422951120,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1422950100,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40963225","duration":720,"bikeId":"8468","endDate":1422950940,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1422950220,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40963270","duration":720,"bikeId":"12041","endDate":1422951060,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1422950340,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"40963349","duration":540,"bikeId":"11329","endDate":1422951000,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1422950460,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"40963394","duration":1860,"bikeId":"8674","endDate":1422952380,"endStationId":"543","endStationName":"Lansdowne Walk, Notting Hill","startDate":1422950520,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"40963494","duration":1020,"bikeId":"2443","endDate":1422951660,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422950640,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"40963565","duration":360,"bikeId":"9386","endDate":1422951120,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1422950760,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"40963607","duration":1080,"bikeId":"8902","endDate":1422951900,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1422950820,"startStationId":"591","startStationName":"Westfield Library Corner, Shepherd's Bush"}, +{"_id":"40963724","duration":240,"bikeId":"6008","endDate":1422951240,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1422951000,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40963793","duration":720,"bikeId":"6908","endDate":1422951780,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1422951060,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40963840","duration":1020,"bikeId":"12689","endDate":1422952140,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1422951120,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"40963886","duration":540,"bikeId":"7398","endDate":1422951780,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1422951240,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"40963940","duration":2160,"bikeId":"12686","endDate":1422953460,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1422951300,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40964012","duration":1080,"bikeId":"7627","endDate":1422952500,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1422951420,"startStationId":"518","startStationName":"Antill Road, Mile End"}, +{"_id":"40964146","duration":420,"bikeId":"12254","endDate":1422951960,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1422951540,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"40964205","duration":360,"bikeId":"6456","endDate":1422951960,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1422951600,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40964209","duration":900,"bikeId":"12770","endDate":1422952560,"endStationId":"90","endStationName":"Harrington Square, Camden Town","startDate":1422951660,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40964283","duration":1440,"bikeId":"8561","endDate":1422953160,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422951720,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40964423","duration":300,"bikeId":"5498","endDate":1422952140,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1422951840,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"40964469","duration":480,"bikeId":"10538","endDate":1422952380,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422951900,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40964524","duration":720,"bikeId":"2219","endDate":1422952680,"endStationId":"765","endStationName":"Ranelagh Gardens, Fulham","startDate":1422951960,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"40964547","duration":1260,"bikeId":"7352","endDate":1422953280,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1422952020,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"40964608","duration":1500,"bikeId":"11904","endDate":1422953580,"endStationId":"759","endStationName":"Broadley Terrace, Marylebone","startDate":1422952080,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"40964704","duration":780,"bikeId":"9798","endDate":1422952980,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1422952200,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40964759","duration":720,"bikeId":"10245","endDate":1422952980,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1422952260,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"40964838","duration":1020,"bikeId":"12873","endDate":1422953340,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422952320,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"40964913","duration":1620,"bikeId":"7874","endDate":1422954000,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1422952380,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"40965012","duration":360,"bikeId":"12105","endDate":1422952860,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1422952500,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"40965062","duration":600,"bikeId":"11118","endDate":1422953160,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1422952560,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40965104","duration":840,"bikeId":"12306","endDate":1422953460,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1422952620,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"40965198","duration":1140,"bikeId":"249","endDate":1422953820,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422952680,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40965245","duration":1260,"bikeId":"6560","endDate":1422954000,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1422952740,"startStationId":"600","startStationName":"South Lambeth Road, Vauxhall"}, +{"_id":"40965317","duration":1200,"bikeId":"8676","endDate":1422954000,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1422952800,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40965354","duration":1080,"bikeId":"2056","endDate":1422953940,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1422952860,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"40965476","duration":180,"bikeId":"5677","endDate":1422953160,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1422952980,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40965524","duration":360,"bikeId":"10441","endDate":1422953400,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422953040,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40965558","duration":540,"bikeId":"2919","endDate":1422953640,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1422953100,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40965692","duration":540,"bikeId":"12494","endDate":1422953700,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422953160,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40965752","duration":600,"bikeId":"9198","endDate":1422953820,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1422953220,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40965791","duration":600,"bikeId":"7221","endDate":1422953880,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1422953280,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40965853","duration":660,"bikeId":"10628","endDate":1422954000,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1422953340,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40965916","duration":660,"bikeId":"9978","endDate":1422954060,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1422953400,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"40965999","duration":600,"bikeId":"2753","endDate":1422954060,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422953460,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40966064","duration":960,"bikeId":"1172","endDate":1422954480,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1422953520,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40966126","duration":1260,"bikeId":"10234","endDate":1422954840,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1422953580,"startStationId":"475","startStationName":"Lightermans Road, Millwall"}, +{"_id":"40966201","duration":300,"bikeId":"10392","endDate":1422954000,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422953700,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"40966305","duration":420,"bikeId":"5152","endDate":1422954180,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1422953760,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"40966324","duration":600,"bikeId":"10403","endDate":1422954420,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1422953820,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"40966375","duration":1260,"bikeId":"3948","endDate":1422955140,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422953880,"startStationId":"521","startStationName":"Driffield Road, Old Ford"}, +{"_id":"40966956","duration":720,"bikeId":"10315","endDate":1422954720,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1422954000,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40966506","duration":1260,"bikeId":"3368","endDate":1422955320,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1422954060,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40966590","duration":720,"bikeId":"8761","endDate":1422954900,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1422954180,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"40966702","duration":360,"bikeId":"11258","endDate":1422954660,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1422954300,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"40966712","duration":900,"bikeId":"8624","endDate":1422955260,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1422954360,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40966840","duration":360,"bikeId":"5883","endDate":1422954840,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1422954480,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40967434","duration":960,"bikeId":"5782","endDate":1422955500,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1422954540,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40966938","duration":900,"bikeId":"10776","endDate":1422955560,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1422954660,"startStationId":"763","startStationName":"Mile End Park Leisure Centre, Mile End"}, +{"_id":"40967017","duration":540,"bikeId":"5092","endDate":1422955320,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1422954780,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"40967101","duration":360,"bikeId":"1766","endDate":1422955260,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1422954900,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"40967139","duration":1200,"bikeId":"4046","endDate":1422956160,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1422954960,"startStationId":"624","startStationName":"Courland Grove, Wandsworth Road"}, +{"_id":"40967209","duration":840,"bikeId":"6230","endDate":1422955920,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1422955080,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"40967302","duration":720,"bikeId":"9526","endDate":1422955920,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1422955200,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"40967366","duration":420,"bikeId":"6178","endDate":1422955800,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1422955380,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40967433","duration":660,"bikeId":"10555","endDate":1422956160,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1422955500,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40967496","duration":1620,"bikeId":"12666","endDate":1422957240,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1422955620,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40967588","duration":300,"bikeId":"5294","endDate":1422956160,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1422955860,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"40967626","duration":780,"bikeId":"10115","endDate":1422956760,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1422955980,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40967691","duration":660,"bikeId":"7728","endDate":1422956820,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1422956160,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"40967768","duration":1080,"bikeId":"12552","endDate":1422957420,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1422956340,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40967842","duration":660,"bikeId":"1768","endDate":1422957180,"endStationId":"174","endStationName":"Strand, Strand","startDate":1422956520,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"40967909","duration":420,"bikeId":"5419","endDate":1422957120,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1422956700,"startStationId":"592","startStationName":"Bishop's Bridge Road East, Bayswater"}, +{"_id":"40967973","duration":360,"bikeId":"10842","endDate":1422957240,"endStationId":"276","endStationName":"Lower Thames Street, Monument","startDate":1422956880,"startStationId":"490","startStationName":"Pennington Street, Wapping"}, +{"_id":"40968034","duration":360,"bikeId":"1336","endDate":1422957420,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1422957060,"startStationId":"669","startStationName":"Teversham Lane, Stockwell"}, +{"_id":"40968101","duration":840,"bikeId":"3245","endDate":1422958140,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1422957300,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40968171","duration":240,"bikeId":"11085","endDate":1422957900,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422957660,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40968219","duration":1440,"bikeId":"2476","endDate":1422959280,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1422957840,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40968295","duration":780,"bikeId":"4489","endDate":1422958920,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1422958140,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40968364","duration":900,"bikeId":"11878","endDate":1422959340,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1422958440,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40968426","duration":1140,"bikeId":"12901","endDate":1422959940,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1422958800,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40968506","duration":420,"bikeId":"11979","endDate":1422959640,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1422959220,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"40968575","duration":180,"bikeId":"311","endDate":1422959760,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1422959580,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40968638","duration":960,"bikeId":"8692","endDate":1422960900,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1422959940,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40968709","duration":420,"bikeId":"2056","endDate":1422960780,"endStationId":"111","endStationName":"Park Lane , Hyde Park","startDate":1422960360,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"40968762","duration":1440,"bikeId":"2601","endDate":1422962100,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1422960660,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40968846","duration":420,"bikeId":"12550","endDate":1422961560,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1422961140,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40968906","duration":960,"bikeId":"6423","endDate":1422962460,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422961500,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40968973","duration":300,"bikeId":"8563","endDate":1422962220,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1422961920,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40969037","duration":600,"bikeId":"3374","endDate":1422963000,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1422962400,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"40969102","duration":360,"bikeId":"6661","endDate":1422963300,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422962940,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40969162","duration":1680,"bikeId":"3207","endDate":1422964980,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1422963300,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40969239","duration":420,"bikeId":"3336","endDate":1422964140,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1422963720,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40969315","duration":420,"bikeId":"4443","endDate":1422964500,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1422964080,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40969373","duration":180,"bikeId":"1370","endDate":1422964560,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1422964380,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40969440","duration":300,"bikeId":"12247","endDate":1422965040,"endStationId":"463","endStationName":"Thurtle Road, Haggerston","startDate":1422964740,"startStationId":"507","startStationName":"Clarkson Street, Bethnal Green"}, +{"_id":"40969507","duration":660,"bikeId":"9260","endDate":1422965640,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1422964980,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"40969567","duration":1260,"bikeId":"8850","endDate":1422966600,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1422965340,"startStationId":"652","startStationName":"Evesham Street, Avondale"}, +{"_id":"40969633","duration":1500,"bikeId":"8200","endDate":1422967080,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1422965580,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40969713","duration":420,"bikeId":"2425","endDate":1422966360,"endStationId":"716","endStationName":"Stainsby Road , Poplar","startDate":1422965940,"startStationId":"763","startStationName":"Mile End Park Leisure Centre, Mile End"}, +{"_id":"40969782","duration":2100,"bikeId":"12656","endDate":1422968340,"endStationId":"111","endStationName":"Park Lane , Hyde Park","startDate":1422966240,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40969837","duration":2100,"bikeId":"10520","endDate":1422968700,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1422966600,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"40969918","duration":1440,"bikeId":"7219","endDate":1422968280,"endStationId":"181","endStationName":"Belgrave Square, Belgravia","startDate":1422966840,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40969991","duration":360,"bikeId":"2750","endDate":1422967560,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1422967200,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"40970053","duration":720,"bikeId":"7633","endDate":1422968160,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1422967440,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40970113","duration":660,"bikeId":"12006","endDate":1422968340,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1422967680,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40970194","duration":480,"bikeId":"360","endDate":1422968460,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1422967980,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"40970258","duration":480,"bikeId":"7005","endDate":1422968760,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1422968280,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40970321","duration":480,"bikeId":"1403","endDate":1422969060,"endStationId":"652","endStationName":"Evesham Street, Avondale","startDate":1422968580,"startStationId":"591","startStationName":"Westfield Library Corner, Shepherd's Bush"}, +{"_id":"40970387","duration":1740,"bikeId":"6124","endDate":1422970560,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1422968820,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"40970468","duration":240,"bikeId":"12025","endDate":1422969420,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1422969180,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40970521","duration":600,"bikeId":"12267","endDate":1422970080,"endStationId":"629","endStationName":"Morie Street, Wandsworth","startDate":1422969480,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"40970578","duration":1620,"bikeId":"2511","endDate":1422971400,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1422969780,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40970668","duration":540,"bikeId":"9821","endDate":1422970620,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1422970080,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"40970724","duration":420,"bikeId":"9624","endDate":1422970860,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1422970440,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"40970808","duration":240,"bikeId":"6471","endDate":1422970920,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422970680,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"40970868","duration":480,"bikeId":"1386","endDate":1422971400,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1422970920,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40970936","duration":900,"bikeId":"5879","endDate":1422972120,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1422971220,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40970988","duration":900,"bikeId":"3836","endDate":1422972360,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1422971460,"startStationId":"297","startStationName":"Geraldine Street, Elephant & Castle"}, +{"_id":"40971071","duration":240,"bikeId":"12168","endDate":1422972060,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1422971820,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40971127","duration":840,"bikeId":"496","endDate":1422972960,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1422972120,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40971210","duration":180,"bikeId":"3960","endDate":1422972660,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1422972480,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40971256","duration":900,"bikeId":"6544","endDate":1422973620,"endStationId":"677","endStationName":"Heath Road, Battersea","startDate":1422972720,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"40971341","duration":600,"bikeId":"2632","endDate":1422973680,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1422973080,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40971402","duration":960,"bikeId":"8676","endDate":1422974340,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1422973380,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40971475","duration":300,"bikeId":"8326","endDate":1422974100,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1422973800,"startStationId":"729","startStationName":"St. Peter's Terrace, Fulham"}, +{"_id":"40971549","duration":1080,"bikeId":"10426","endDate":1422975120,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1422974040,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"40971617","duration":540,"bikeId":"12956","endDate":1422974940,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1422974400,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40971686","duration":720,"bikeId":"22","endDate":1422975480,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1422974760,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"40971759","duration":420,"bikeId":"1203","endDate":1422975480,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1422975060,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40971841","duration":120,"bikeId":"12485","endDate":1422975540,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1422975420,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40971898","duration":660,"bikeId":"4934","endDate":1422976380,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1422975720,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40971969","duration":240,"bikeId":"7129","endDate":1422976320,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422976080,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"40972033","duration":720,"bikeId":"11089","endDate":1422977100,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1422976380,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40972100","duration":840,"bikeId":"10182","endDate":1422977520,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1422976680,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"40972173","duration":360,"bikeId":"7180","endDate":1422977400,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1422977040,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"40972240","duration":540,"bikeId":"8031","endDate":1422977880,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1422977340,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40972305","duration":540,"bikeId":"6838","endDate":1422978240,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1422977700,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"40972372","duration":840,"bikeId":"8967","endDate":1422978840,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1422978000,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"40972429","duration":1380,"bikeId":"3493","endDate":1422979620,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1422978240,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"40972527","duration":240,"bikeId":"4797","endDate":1422978780,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1422978540,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40972575","duration":2100,"bikeId":"4252","endDate":1422980820,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1422978720,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"40972651","duration":960,"bikeId":"4934","endDate":1422979980,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1422979020,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"40972721","duration":540,"bikeId":"10056","endDate":1422979860,"endStationId":"435","endStationName":"Kennington Station, Kennington","startDate":1422979320,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"40972774","duration":420,"bikeId":"10225","endDate":1422979920,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1422979500,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"40972845","duration":780,"bikeId":"11445","endDate":1422980460,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1422979680,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"40972910","duration":1740,"bikeId":"11399","endDate":1422981600,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1422979860,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40972989","duration":360,"bikeId":"6631","endDate":1422980460,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1422980100,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"40973048","duration":780,"bikeId":"8376","endDate":1422981060,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1422980280,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"40973122","duration":720,"bikeId":"2531","endDate":1422981240,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1422980520,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"40973178","duration":1080,"bikeId":"8871","endDate":1422981780,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1422980700,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"40973255","duration":420,"bikeId":"7005","endDate":1422981420,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1422981000,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"40973325","duration":420,"bikeId":"4835","endDate":1422981600,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1422981180,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"40973402","duration":420,"bikeId":"8822","endDate":1422981780,"endStationId":"576","endStationName":"Alpha Grove, Millwall","startDate":1422981360,"startStationId":"525","startStationName":"Churchill Place, Canary Wharf"}, +{"_id":"40973457","duration":300,"bikeId":"9719","endDate":1422981840,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1422981540,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40973520","duration":1320,"bikeId":"13022","endDate":1422982980,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1422981660,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40973593","duration":420,"bikeId":"11802","endDate":1422982320,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1422981900,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"40973647","duration":840,"bikeId":"6115","endDate":1422982920,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1422982080,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"40973718","duration":360,"bikeId":"10523","endDate":1422982680,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1422982320,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"40973798","duration":480,"bikeId":"2875","endDate":1422982980,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1422982500,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40973878","duration":300,"bikeId":"1904","endDate":1422982980,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1422982680,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"40973923","duration":300,"bikeId":"13079","endDate":1422983100,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1422982800,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40974001","duration":360,"bikeId":"12211","endDate":1422983280,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1422982920,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"40974055","duration":360,"bikeId":"6417","endDate":1422983400,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1422983040,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"40974131","duration":480,"bikeId":"467","endDate":1422983640,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1422983160,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"40974162","duration":1560,"bikeId":"12357","endDate":1422984780,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1422983220,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40974256","duration":900,"bikeId":"13068","endDate":1422984240,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1422983340,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40974341","duration":840,"bikeId":"11508","endDate":1422984300,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1422983460,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"40974411","duration":600,"bikeId":"10158","endDate":1422984180,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422983580,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40974474","duration":360,"bikeId":"4419","endDate":1422984060,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1422983700,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"40974536","duration":180,"bikeId":"9440","endDate":1422984000,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422983820,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40974606","duration":660,"bikeId":"3939","endDate":1422984540,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1422983880,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"40974643","duration":540,"bikeId":"6770","endDate":1422984540,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1422984000,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40974737","duration":120,"bikeId":"1226","endDate":1422984240,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1422984120,"startStationId":"592","startStationName":"Bishop's Bridge Road East, Bayswater"}, +{"_id":"40974787","duration":900,"bikeId":"13033","endDate":1422985080,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1422984180,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40974846","duration":720,"bikeId":"4984","endDate":1422985020,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1422984300,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40974926","duration":600,"bikeId":"10443","endDate":1422985020,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1422984420,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"40974981","duration":1500,"bikeId":"283","endDate":1422986040,"endStationId":"207","endStationName":"Grosvenor Crescent, Belgravia","startDate":1422984540,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"40975079","duration":660,"bikeId":"934","endDate":1422985320,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1422984660,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"40975130","duration":300,"bikeId":"11814","endDate":1422985080,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1422984780,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"40975196","duration":1080,"bikeId":"2129","endDate":1422985920,"endStationId":"355","endStationName":"Oval Way, Lambeth","startDate":1422984840,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40975255","duration":1680,"bikeId":"10892","endDate":1422986580,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1422984900,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40975350","duration":600,"bikeId":"4344","endDate":1422985620,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1422985020,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"40975406","duration":420,"bikeId":"8992","endDate":1422985560,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1422985140,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40975465","duration":660,"bikeId":"8220","endDate":1422985860,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1422985200,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40975498","duration":2220,"bikeId":"9007","endDate":1422987480,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1422985260,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"40975611","duration":720,"bikeId":"7284","endDate":1422986100,"endStationId":"297","endStationName":"Geraldine Street, Elephant & Castle","startDate":1422985380,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"40975652","duration":1200,"bikeId":"9157","endDate":1422986640,"endStationId":"559","endStationName":"Abbotsbury Road, Holland Park","startDate":1422985440,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"40975757","duration":360,"bikeId":"10433","endDate":1422985920,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1422985560,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"40975782","duration":840,"bikeId":"7641","endDate":1422986460,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1422985620,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40975858","duration":480,"bikeId":"1415","endDate":1422986220,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1422985740,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"40975929","duration":1740,"bikeId":"12479","endDate":1422987540,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1422985800,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"40976015","duration":540,"bikeId":"12307","endDate":1422986460,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1422985920,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40976066","duration":1200,"bikeId":"3904","endDate":1422987180,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422985980,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"40976112","duration":720,"bikeId":"13069","endDate":1422986820,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1422986100,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40976216","duration":1200,"bikeId":"4232","endDate":1422987360,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1422986160,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"40976281","duration":660,"bikeId":"7968","endDate":1422986940,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1422986280,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"40976330","duration":420,"bikeId":"4197","endDate":1422986820,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422986400,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40976368","duration":1560,"bikeId":"4131","endDate":1422988020,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1422986460,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"40976473","duration":780,"bikeId":"3697","endDate":1422987360,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1422986580,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"40976543","duration":420,"bikeId":"12200","endDate":1422987120,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1422986700,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"40976582","duration":780,"bikeId":"6242","endDate":1422987540,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1422986760,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"40976653","duration":1500,"bikeId":"11072","endDate":1422988320,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422986820,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"40976750","duration":480,"bikeId":"8375","endDate":1422987420,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1422986940,"startStationId":"775","startStationName":"Little Brook Green, Brook Green"}, +{"_id":"40976822","duration":600,"bikeId":"12325","endDate":1422987600,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1422987000,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"40976847","duration":6300,"bikeId":"12145","endDate":1422993360,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1422987060,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40976933","duration":1020,"bikeId":"12821","endDate":1422988200,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1422987180,"startStationId":"606","startStationName":"Addison Road, Holland Park"}, +{"_id":"40977046","duration":360,"bikeId":"10783","endDate":1422987660,"endStationId":"538","endStationName":"Naval Row, Blackwall","startDate":1422987300,"startStationId":"551","startStationName":"Montgomery Square, Canary Wharf"}, +{"_id":"40977056","duration":840,"bikeId":"13075","endDate":1422988200,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1422987360,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40977155","duration":360,"bikeId":"12067","endDate":1422987840,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1422987480,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"40977210","duration":960,"bikeId":"6002","endDate":1422988500,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1422987540,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"40977288","duration":300,"bikeId":"2760","endDate":1422987960,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1422987660,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"40977324","duration":1020,"bikeId":"4044","endDate":1422988740,"endStationId":"684","endStationName":"Neville Gill Close, Wandsworth","startDate":1422987720,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"40977404","duration":780,"bikeId":"224","endDate":1422988620,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422987840,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40977479","duration":900,"bikeId":"682","endDate":1422988860,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1422987960,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40977533","duration":720,"bikeId":"10375","endDate":1422988800,"endStationId":"759","endStationName":"Broadley Terrace, Marylebone","startDate":1422988080,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"40977592","duration":1320,"bikeId":"7778","endDate":1422989460,"endStationId":"76","endStationName":"Longford Street, Regent's Park","startDate":1422988140,"startStationId":"371","startStationName":"King Edward Walk, Waterloo"}, +{"_id":"40977661","duration":960,"bikeId":"12773","endDate":1422989220,"endStationId":"734","endStationName":"Plough Terrace, Clapham Junction","startDate":1422988260,"startStationId":"724","startStationName":"Alma Road, Wandsworth"}, +{"_id":"40977760","duration":300,"bikeId":"10744","endDate":1422988680,"endStationId":"704","endStationName":"Mexfield Road, East Putney","startDate":1422988380,"startStationId":"684","startStationName":"Neville Gill Close, Wandsworth"}, +{"_id":"40977807","duration":900,"bikeId":"2720","endDate":1422989340,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1422988440,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40977896","duration":660,"bikeId":"9778","endDate":1422989220,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1422988560,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"40977922","duration":1080,"bikeId":"8350","endDate":1422989700,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1422988620,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40978012","duration":840,"bikeId":"28","endDate":1422989580,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1422988740,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"40978110","duration":480,"bikeId":"7707","endDate":1422989340,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1422988860,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"40979506","duration":240,"bikeId":"2999","endDate":1422989220,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1422988980,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"40978208","duration":1560,"bikeId":"11558","endDate":1422990600,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1422989040,"startStationId":"528","startStationName":"Clarges Street, West End"}, +{"_id":"40978269","duration":1200,"bikeId":"11499","endDate":1422990360,"endStationId":"654","endStationName":"Ashmole Estate, Oval","startDate":1422989160,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"40978382","duration":300,"bikeId":"1835","endDate":1422989640,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1422989340,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40978446","duration":420,"bikeId":"227","endDate":1422989880,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1422989460,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"40978504","duration":300,"bikeId":"13063","endDate":1422989880,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1422989580,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"40978565","duration":360,"bikeId":"8623","endDate":1422990060,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1422989700,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"40978619","duration":960,"bikeId":"8228","endDate":1422990780,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1422989820,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40978698","duration":660,"bikeId":"11828","endDate":1422990660,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1422990000,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40978766","duration":420,"bikeId":"4018","endDate":1422990600,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1422990180,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"40978814","duration":1380,"bikeId":"433","endDate":1422991680,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1422990300,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"40978890","duration":660,"bikeId":"1257","endDate":1422991080,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1422990420,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"40978974","duration":720,"bikeId":"4745","endDate":1422991320,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1422990600,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40979052","duration":660,"bikeId":"10940","endDate":1422991380,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1422990720,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"40979096","duration":960,"bikeId":"2661","endDate":1422991800,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1422990840,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"40979156","duration":780,"bikeId":"9902","endDate":1422991800,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1422991020,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"40979244","duration":300,"bikeId":"11002","endDate":1422991500,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1422991200,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"40979294","duration":480,"bikeId":"12335","endDate":1422991800,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1422991320,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"40979349","duration":1500,"bikeId":"7413","endDate":1422992940,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1422991440,"startStationId":"176","startStationName":"Gloucester Terrace, Bayswater"}, +{"_id":"40979441","duration":600,"bikeId":"3267","endDate":1422992220,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1422991620,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"40979503","duration":360,"bikeId":"12291","endDate":1422992220,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1422991860,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40979563","duration":660,"bikeId":"9201","endDate":1422992700,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1422992040,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40979640","duration":1020,"bikeId":"6589","endDate":1422993240,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1422992220,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40979714","duration":720,"bikeId":"11007","endDate":1422993120,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1422992400,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40979783","duration":480,"bikeId":"10211","endDate":1422993060,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1422992580,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"40979835","duration":1020,"bikeId":"10559","endDate":1422993780,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1422992760,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"40979894","duration":960,"bikeId":"3893","endDate":1422993900,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1422992940,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40979978","duration":240,"bikeId":"8126","endDate":1422993420,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422993180,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"40980038","duration":840,"bikeId":"2745","endDate":1422994200,"endStationId":"734","endStationName":"Plough Terrace, Clapham Junction","startDate":1422993360,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"40980097","duration":480,"bikeId":"12927","endDate":1422994080,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1422993600,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"40980164","duration":1260,"bikeId":"8041","endDate":1422995100,"endStationId":"678","endStationName":"Esmond Street, Putney","startDate":1422993840,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40980246","duration":540,"bikeId":"1096","endDate":1422994620,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1422994080,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"40980308","duration":780,"bikeId":"5012","endDate":1422995100,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1422994320,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"40980377","duration":420,"bikeId":"9933","endDate":1422994980,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422994560,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40980451","duration":540,"bikeId":"12832","endDate":1422995400,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1422994860,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40980514","duration":840,"bikeId":"11354","endDate":1422996000,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1422995160,"startStationId":"564","startStationName":"Somerset House, Strand"}, +{"_id":"40980586","duration":240,"bikeId":"4063","endDate":1422995700,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1422995460,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40980652","duration":480,"bikeId":"5060","endDate":1422996300,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1422995820,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"40980714","duration":720,"bikeId":"8104","endDate":1422996780,"endStationId":"741","endStationName":"Freston Road, Avondale","startDate":1422996060,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"40980788","duration":480,"bikeId":"8028","endDate":1422996840,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1422996360,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"40980844","duration":420,"bikeId":"5882","endDate":1422997140,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1422996720,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"40980925","duration":1200,"bikeId":"4337","endDate":1422998280,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1422997080,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"40980998","duration":420,"bikeId":"8190","endDate":1422997920,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1422997500,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"40981067","duration":720,"bikeId":"1757","endDate":1422998520,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1422997800,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40981130","duration":420,"bikeId":"9905","endDate":1422998580,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1422998160,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"40981187","duration":1500,"bikeId":"7624","endDate":1423000080,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1422998580,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"40981258","duration":600,"bikeId":"10057","endDate":1422999660,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1422999060,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40981327","duration":780,"bikeId":"7373","endDate":1423000260,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1422999480,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"40981392","duration":840,"bikeId":"3280","endDate":1423000680,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1422999840,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40981461","duration":300,"bikeId":"2373","endDate":1423000620,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1423000320,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"40981525","duration":540,"bikeId":"4009","endDate":1423001280,"endStationId":"690","endStationName":"Stanley Grove, Battersea","startDate":1423000740,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"40981600","duration":180,"bikeId":"5727","endDate":1423001340,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1423001160,"startStationId":"577","startStationName":"Globe Town Market, Bethnal Green"}, +{"_id":"40981664","duration":960,"bikeId":"7134","endDate":1423002600,"endStationId":"599","endStationName":"Manbre Road, Hammersmith","startDate":1423001640,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40981731","duration":360,"bikeId":"4284","endDate":1423002600,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1423002240,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"40981797","duration":960,"bikeId":"9802","endDate":1423003680,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1423002720,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"40981865","duration":600,"bikeId":"2006","endDate":1423004040,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1423003440,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"40981937","duration":420,"bikeId":"2911","endDate":1423004760,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1423004340,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"40981997","duration":720,"bikeId":"1836","endDate":1423006020,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1423005300,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"40982067","duration":180,"bikeId":"12901","endDate":1423006500,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1423006320,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"40982136","duration":600,"bikeId":"5818","endDate":1423008060,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1423007460,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"40982203","duration":720,"bikeId":"106","endDate":1423009740,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1423009020,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"40982268","duration":1620,"bikeId":"11001","endDate":1423013520,"endStationId":"634","endStationName":"Brook Green South, Brook Green","startDate":1423011900,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"40982338","duration":900,"bikeId":"2456","endDate":1423016160,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1423015260,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"40982404","duration":16680,"bikeId":"8636","endDate":1423036800,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1423020120,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40982470","duration":600,"bikeId":"3337","endDate":1423027800,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1423027200,"startStationId":"629","startStationName":"Morie Street, Wandsworth"}, +{"_id":"40982541","duration":780,"bikeId":"5425","endDate":1423030140,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1423029360,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"40982603","duration":900,"bikeId":"1532","endDate":1423031280,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1423030380,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"40982675","duration":720,"bikeId":"1058","endDate":1423031820,"endStationId":"174","endStationName":"Strand, Strand","startDate":1423031100,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40982737","duration":720,"bikeId":"2236","endDate":1423032300,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1423031580,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40982794","duration":1500,"bikeId":"12198","endDate":1423033440,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423031940,"startStationId":"713","startStationName":"Hawley Crescent, Camden Town"}, +{"_id":"40982867","duration":840,"bikeId":"6223","endDate":1423033140,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1423032300,"startStationId":"722","startStationName":"Finnis Street, Bethnal Green"}, +{"_id":"40982942","duration":300,"bikeId":"3747","endDate":1423032960,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1423032660,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"40983007","duration":720,"bikeId":"8387","endDate":1423033680,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1423032960,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"40983083","duration":300,"bikeId":"12681","endDate":1423033560,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1423033260,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40983148","duration":780,"bikeId":"10786","endDate":1423034220,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1423033440,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"40984530","duration":840,"bikeId":"108","endDate":1423034520,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1423033680,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"40983277","duration":420,"bikeId":"8513","endDate":1423034340,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1423033920,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"40983347","duration":660,"bikeId":"12084","endDate":1423034760,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423034100,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"40983396","duration":840,"bikeId":"487","endDate":1423035120,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423034280,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"40983468","duration":1080,"bikeId":"1311","endDate":1423035480,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1423034400,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"40983529","duration":480,"bikeId":"4026","endDate":1423035060,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1423034580,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40983615","duration":780,"bikeId":"12143","endDate":1423035540,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423034760,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"40983671","duration":0,"bikeId":"9406","endDate":1423034940,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1423034940,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40983735","duration":720,"bikeId":"8118","endDate":1423035780,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423035060,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"40983802","duration":600,"bikeId":"11933","endDate":1423035780,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1423035180,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40983887","duration":1020,"bikeId":"10521","endDate":1423036320,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1423035300,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"40983920","duration":960,"bikeId":"2361","endDate":1423036380,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1423035420,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40984016","duration":240,"bikeId":"6541","endDate":1423035840,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423035600,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40984082","duration":780,"bikeId":"6259","endDate":1423036440,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423035660,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"40984178","duration":540,"bikeId":"3616","endDate":1423036320,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1423035780,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40984245","duration":180,"bikeId":"7270","endDate":1423036080,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1423035900,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"40984269","duration":840,"bikeId":"2336","endDate":1423036800,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1423035960,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"40984373","duration":300,"bikeId":"11992","endDate":1423036380,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1423036080,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"40984383","duration":840,"bikeId":"2705","endDate":1423036980,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1423036140,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"40984476","duration":300,"bikeId":"10096","endDate":1423036560,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1423036260,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"40984519","duration":1920,"bikeId":"10605","endDate":1423038240,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1423036320,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"40984600","duration":1500,"bikeId":"11713","endDate":1423037940,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1423036440,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40984669","duration":1440,"bikeId":"7134","endDate":1423038000,"endStationId":"352","endStationName":"Vauxhall Street, Vauxhall","startDate":1423036560,"startStationId":"430","startStationName":"South Parade, Chelsea"}, +{"_id":"40984754","duration":780,"bikeId":"9895","endDate":1423037460,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1423036680,"startStationId":"477","startStationName":"Spindrift Avenue, Millwall"}, +{"_id":"40984823","duration":900,"bikeId":"2958","endDate":1423037640,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1423036740,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"40984924","duration":300,"bikeId":"367","endDate":1423037160,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1423036860,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40984969","duration":420,"bikeId":"5608","endDate":1423037340,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1423036920,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"40984994","duration":1380,"bikeId":"7132","endDate":1423038360,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1423036980,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40985111","duration":540,"bikeId":"10953","endDate":1423037640,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1423037100,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40985132","duration":960,"bikeId":"3141","endDate":1423038120,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1423037160,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"40985220","duration":360,"bikeId":"338","endDate":1423037640,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1423037280,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"40985285","duration":360,"bikeId":"11514","endDate":1423037700,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1423037340,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40985320","duration":960,"bikeId":"8385","endDate":1423038360,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1423037400,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"40985404","duration":720,"bikeId":"10504","endDate":1423038240,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1423037520,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40985488","duration":960,"bikeId":"11693","endDate":1423038540,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1423037580,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"40985531","duration":1920,"bikeId":"11258","endDate":1423039560,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423037640,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40985636","duration":300,"bikeId":"11482","endDate":1423038060,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1423037760,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"40985700","duration":480,"bikeId":"5728","endDate":1423038300,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423037820,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"40985798","duration":480,"bikeId":"7042","endDate":1423038360,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1423037880,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40985814","duration":480,"bikeId":"11365","endDate":1423038420,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423037940,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"40985868","duration":840,"bikeId":"7957","endDate":1423038840,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423038000,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40985969","duration":960,"bikeId":"5613","endDate":1423039020,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1423038060,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"40986020","duration":1080,"bikeId":"338","endDate":1423039200,"endStationId":"775","endStationName":"Little Brook Green, Brook Green","startDate":1423038120,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"40986055","duration":1200,"bikeId":"12402","endDate":1423039380,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1423038180,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"40986127","duration":1680,"bikeId":"10003","endDate":1423039920,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1423038240,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"40986182","duration":1500,"bikeId":"11510","endDate":1423039800,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1423038300,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40986265","duration":1440,"bikeId":"6508","endDate":1423039800,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1423038360,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"40986316","duration":1500,"bikeId":"5345","endDate":1423039920,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1423038420,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"40986388","duration":1260,"bikeId":"5830","endDate":1423039740,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1423038480,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"40986467","duration":1260,"bikeId":"7021","endDate":1423039800,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423038540,"startStationId":"692","startStationName":"Cadogan Close, Victoria Park"}, +{"_id":"40986525","duration":1080,"bikeId":"12009","endDate":1423039680,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1423038600,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"40986604","duration":1200,"bikeId":"11241","endDate":1423039860,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1423038660,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"40986684","duration":1020,"bikeId":"6653","endDate":1423039740,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1423038720,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"40986748","duration":1200,"bikeId":"8372","endDate":1423039980,"endStationId":"207","endStationName":"Grosvenor Crescent, Belgravia","startDate":1423038780,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"40986816","duration":1440,"bikeId":"1253","endDate":1423040280,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1423038840,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"40986870","duration":1260,"bikeId":"11766","endDate":1423040160,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1423038900,"startStationId":"146","startStationName":"Vauxhall Bridge , Pimlico"}, +{"_id":"40986969","duration":960,"bikeId":"317","endDate":1423039920,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423038960,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"40987015","duration":1020,"bikeId":"5381","endDate":1423040040,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423039020,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"40987107","duration":900,"bikeId":"7675","endDate":1423039980,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1423039080,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40987147","duration":720,"bikeId":"7764","endDate":1423039860,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1423039140,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40987251","duration":240,"bikeId":"7607","endDate":1423039440,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1423039200,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"40987297","duration":60,"bikeId":"8871","endDate":1423039320,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423039260,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40987417","duration":240,"bikeId":"12985","endDate":1423039560,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423039320,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"40987375","duration":1200,"bikeId":"12813","endDate":1423040520,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1423039320,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"40987509","duration":1140,"bikeId":"10484","endDate":1423040520,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1423039380,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"40987552","duration":1260,"bikeId":"4804","endDate":1423040700,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1423039440,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"40987629","duration":960,"bikeId":"1281","endDate":1423040460,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1423039500,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"40987704","duration":840,"bikeId":"5357","endDate":1423040400,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423039560,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"40987781","duration":840,"bikeId":"8667","endDate":1423040460,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423039620,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"40987821","duration":780,"bikeId":"12985","endDate":1423040460,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423039680,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40987895","duration":1020,"bikeId":"4945","endDate":1423040760,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1423039740,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40988043","duration":240,"bikeId":"3761","endDate":1423040100,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1423039860,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"40988055","duration":360,"bikeId":"1476","endDate":1423040280,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423039920,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"40988143","duration":360,"bikeId":"9129","endDate":1423040340,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1423039980,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"40988182","duration":660,"bikeId":"8114","endDate":1423040700,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1423040040,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"40988272","duration":900,"bikeId":"3130","endDate":1423041000,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1423040100,"startStationId":"590","startStationName":"Greenberry Street, St.John's Wood"}, +{"_id":"40988332","duration":1080,"bikeId":"3529","endDate":1423041240,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1423040160,"startStationId":"550","startStationName":"Harford Street, Mile End"}, +{"_id":"40988404","duration":1020,"bikeId":"7717","endDate":1423041240,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1423040220,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"40988444","duration":1080,"bikeId":"8198","endDate":1423041360,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1423040280,"startStationId":"627","startStationName":"Holden Street, Battersea"}, +{"_id":"40988531","duration":1860,"bikeId":"4008","endDate":1423042200,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1423040340,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"40988632","duration":420,"bikeId":"2242","endDate":1423040880,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1423040460,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"40988691","duration":300,"bikeId":"12410","endDate":1423040820,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423040520,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40988726","duration":420,"bikeId":"8540","endDate":1423041000,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1423040580,"startStationId":"504","startStationName":"St John's Park, Cubitt Town"}, +{"_id":"40988821","duration":480,"bikeId":"4459","endDate":1423041120,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1423040640,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"40988888","duration":900,"bikeId":"4242","endDate":1423041600,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1423040700,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"40988973","duration":300,"bikeId":"5955","endDate":1423041120,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423040820,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"40988998","duration":900,"bikeId":"120","endDate":1423041780,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1423040880,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"40989092","duration":180,"bikeId":"8425","endDate":1423041180,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1423041000,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"40989166","duration":840,"bikeId":"3204","endDate":1423041900,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1423041060,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"40989229","duration":180,"bikeId":"11174","endDate":1423041360,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1423041180,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"40989259","duration":1200,"bikeId":"8570","endDate":1423042440,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1423041240,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40989348","duration":1080,"bikeId":"159","endDate":1423042440,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1423041360,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"40989422","duration":420,"bikeId":"1170","endDate":1423041900,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1423041480,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"40989491","duration":240,"bikeId":"3025","endDate":1423041840,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1423041600,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40989573","duration":120,"bikeId":"10534","endDate":1423041840,"endStationId":"461","endStationName":"Aston Street, Stepney","startDate":1423041720,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"40989623","duration":540,"bikeId":"3073","endDate":1423042380,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423041840,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40989692","duration":480,"bikeId":"6089","endDate":1423042440,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423041960,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"40989765","duration":420,"bikeId":"6127","endDate":1423042500,"endStationId":"698","endStationName":"Shoreditch Court, Haggerston","startDate":1423042080,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40989808","duration":1140,"bikeId":"12891","endDate":1423043340,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1423042200,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"40989900","duration":1500,"bikeId":"1831","endDate":1423043880,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1423042380,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"40989971","duration":660,"bikeId":"2226","endDate":1423043220,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1423042560,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40990027","duration":540,"bikeId":"3578","endDate":1423043280,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1423042740,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40990094","duration":360,"bikeId":"3120","endDate":1423043280,"endStationId":"516","endStationName":"Chrisp Street Market, Poplar","startDate":1423042920,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"40990159","duration":960,"bikeId":"10802","endDate":1423044000,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1423043040,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40990222","duration":1140,"bikeId":"5776","endDate":1423044360,"endStationId":"656","endStationName":"Broomhouse Lane, Parsons Green","startDate":1423043220,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"40990299","duration":360,"bikeId":"12812","endDate":1423043820,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1423043460,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"40990357","duration":1380,"bikeId":"9185","endDate":1423045020,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1423043640,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"40990426","duration":1800,"bikeId":"7815","endDate":1423045680,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1423043880,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"40990502","duration":1140,"bikeId":"6422","endDate":1423045260,"endStationId":"174","endStationName":"Strand, Strand","startDate":1423044120,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"40990580","duration":360,"bikeId":"11096","endDate":1423044780,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1423044420,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"40990643","duration":180,"bikeId":"8816","endDate":1423044900,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1423044720,"startStationId":"171","startStationName":"Collingham Gardens, Earl's Court"}, +{"_id":"40990707","duration":600,"bikeId":"7475","endDate":1423045620,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1423045020,"startStationId":"171","startStationName":"Collingham Gardens, Earl's Court"}, +{"_id":"40990774","duration":600,"bikeId":"5588","endDate":1423045980,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423045380,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"40990851","duration":300,"bikeId":"5765","endDate":1423046040,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1423045740,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"40990915","duration":660,"bikeId":"12548","endDate":1423046700,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1423046040,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40990975","duration":1020,"bikeId":"3421","endDate":1423047300,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1423046280,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"40991055","duration":720,"bikeId":"12460","endDate":1423047300,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1423046580,"startStationId":"117","startStationName":"Lollard Street, Vauxhall"}, +{"_id":"40991115","duration":1200,"bikeId":"11244","endDate":1423048080,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1423046880,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40991180","duration":840,"bikeId":"8411","endDate":1423048080,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1423047240,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"40991259","duration":540,"bikeId":"8006","endDate":1423048080,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1423047540,"startStationId":"59","startStationName":"Rodney Street, Angel"}, +{"_id":"40991327","duration":480,"bikeId":"12687","endDate":1423048320,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423047840,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40991405","duration":1080,"bikeId":"1505","endDate":1423049220,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423048140,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40991467","duration":1200,"bikeId":"10182","endDate":1423049640,"endStationId":"734","endStationName":"Plough Terrace, Clapham Junction","startDate":1423048440,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"40991531","duration":660,"bikeId":"4752","endDate":1423049460,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1423048800,"startStationId":"327","startStationName":"New North Road 1, Hoxton"}, +{"_id":"40991613","duration":420,"bikeId":"7383","endDate":1423049700,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1423049280,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"40991669","duration":1200,"bikeId":"12662","endDate":1423050900,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1423049700,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"40991743","duration":600,"bikeId":"5661","endDate":1423050660,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423050060,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"40991822","duration":180,"bikeId":"5092","endDate":1423050660,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1423050480,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40991890","duration":240,"bikeId":"2037","endDate":1423051020,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423050780,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"40991960","duration":780,"bikeId":"83","endDate":1423051860,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1423051080,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"40992022","duration":5220,"bikeId":"8534","endDate":1423056540,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1423051320,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"40992097","duration":120,"bikeId":"1617","endDate":1423051800,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1423051680,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"40992160","duration":1260,"bikeId":"9777","endDate":1423053180,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423051920,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"40992225","duration":780,"bikeId":"9026","endDate":1423053000,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423052220,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"40992291","duration":1260,"bikeId":"6586","endDate":1423053720,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1423052460,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40992368","duration":480,"bikeId":"8230","endDate":1423053300,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1423052820,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"40992444","duration":600,"bikeId":"12975","endDate":1423053660,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423053060,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40992512","duration":240,"bikeId":"12442","endDate":1423053600,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423053360,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"40992554","duration":1140,"bikeId":"3006","endDate":1423054680,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1423053540,"startStationId":"765","startStationName":"Ranelagh Gardens, Fulham"}, +{"_id":"40992619","duration":900,"bikeId":"9783","endDate":1423054680,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1423053780,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"40992691","duration":540,"bikeId":"7760","endDate":1423054620,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1423054080,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"40992777","duration":360,"bikeId":"1617","endDate":1423054740,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1423054380,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"40992840","duration":120,"bikeId":"4232","endDate":1423054740,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1423054620,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"40992917","duration":360,"bikeId":"4719","endDate":1423055220,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1423054860,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"40992961","duration":4140,"bikeId":"3904","endDate":1423059300,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423055160,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"40993055","duration":120,"bikeId":"3764","endDate":1423055580,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1423055460,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40993110","duration":900,"bikeId":"4203","endDate":1423056600,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1423055700,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"40993167","duration":420,"bikeId":"6423","endDate":1423056360,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1423055940,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"40993236","duration":540,"bikeId":"11875","endDate":1423056780,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1423056240,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"40993307","duration":1380,"bikeId":"523","endDate":1423057920,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1423056540,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"40993377","duration":660,"bikeId":"1561","endDate":1423057560,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1423056900,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40993470","duration":600,"bikeId":"1586","endDate":1423057800,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1423057200,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"40993535","duration":840,"bikeId":"3049","endDate":1423058220,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1423057380,"startStationId":"375","startStationName":"Kensington Town Hall, Kensington"}, +{"_id":"40993592","duration":660,"bikeId":"8647","endDate":1423058280,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1423057620,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"40993673","duration":1380,"bikeId":"11354","endDate":1423059240,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1423057860,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"40993745","duration":420,"bikeId":"13032","endDate":1423058640,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1423058220,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"40993810","duration":540,"bikeId":"471","endDate":1423059060,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1423058520,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"40993881","duration":240,"bikeId":"8741","endDate":1423059120,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423058880,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"40993955","duration":180,"bikeId":"10616","endDate":1423059300,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1423059120,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"40994010","duration":300,"bikeId":"2786","endDate":1423059660,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1423059360,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"40994094","duration":180,"bikeId":"12650","endDate":1423059900,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1423059720,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"40994144","duration":1320,"bikeId":"5170","endDate":1423061340,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423060020,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"40994216","duration":840,"bikeId":"586","endDate":1423061220,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1423060380,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"40994284","duration":540,"bikeId":"3323","endDate":1423061220,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1423060680,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"40994352","duration":480,"bikeId":"4984","endDate":1423061460,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1423060980,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"40994411","duration":780,"bikeId":"10097","endDate":1423062000,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1423061220,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"40994482","duration":780,"bikeId":"11403","endDate":1423062300,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1423061520,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40994552","duration":120,"bikeId":"7723","endDate":1423062000,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423061880,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"40994616","duration":240,"bikeId":"8948","endDate":1423062480,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1423062240,"startStationId":"139","startStationName":"Lambeth Road, Vauxhall"}, +{"_id":"40994670","duration":1440,"bikeId":"3873","endDate":1423063920,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423062480,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"40994745","duration":360,"bikeId":"12194","endDate":1423063140,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1423062780,"startStationId":"238","startStationName":"Frampton Street, Paddington"}, +{"_id":"40994806","duration":960,"bikeId":"8111","endDate":1423063980,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1423063020,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"40994877","duration":540,"bikeId":"1693","endDate":1423063920,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1423063380,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"40994945","duration":1680,"bikeId":"12945","endDate":1423065420,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423063740,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"40995009","duration":1140,"bikeId":"4643","endDate":1423065240,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1423064100,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"40995076","duration":1260,"bikeId":"10459","endDate":1423065660,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1423064400,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"40995148","duration":720,"bikeId":"9004","endDate":1423065420,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1423064700,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"40995232","duration":180,"bikeId":"2694","endDate":1423065180,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1423065000,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"40995285","duration":480,"bikeId":"3047","endDate":1423065780,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1423065300,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"40995348","duration":420,"bikeId":"7660","endDate":1423066020,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1423065600,"startStationId":"560","startStationName":"Ladbroke Grove Central, Notting Hill"}, +{"_id":"40995413","duration":1260,"bikeId":"7082","endDate":1423067100,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1423065840,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"40995486","duration":1500,"bikeId":"4526","endDate":1423067580,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423066080,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"40995561","duration":240,"bikeId":"8411","endDate":1423066620,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1423066380,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"40995625","duration":840,"bikeId":"10096","endDate":1423067400,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1423066560,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"40995685","duration":480,"bikeId":"12143","endDate":1423067220,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1423066740,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40995767","duration":660,"bikeId":"12441","endDate":1423067580,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1423066920,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"40995835","duration":420,"bikeId":"4620","endDate":1423067580,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1423067160,"startStationId":"629","startStationName":"Morie Street, Wandsworth"}, +{"_id":"40995903","duration":840,"bikeId":"11743","endDate":1423068240,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1423067400,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"40995968","duration":180,"bikeId":"10472","endDate":1423067820,"endStationId":"759","endStationName":"Broadley Terrace, Marylebone","startDate":1423067640,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"40996043","duration":240,"bikeId":"5525","endDate":1423068060,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1423067820,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"40996101","duration":780,"bikeId":"10927","endDate":1423068720,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423067940,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"40996174","duration":780,"bikeId":"8074","endDate":1423068900,"endStationId":"310","endStationName":"Black Prince Road, Vauxhall","startDate":1423068120,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"40996246","duration":300,"bikeId":"5797","endDate":1423068600,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1423068300,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40996296","duration":840,"bikeId":"10064","endDate":1423069320,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1423068480,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"40996356","duration":1020,"bikeId":"6498","endDate":1423069680,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1423068660,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"40996446","duration":360,"bikeId":"6567","endDate":1423069260,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1423068900,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"40996488","duration":900,"bikeId":"10069","endDate":1423069920,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423069020,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"40996557","duration":1080,"bikeId":"12072","endDate":1423070280,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1423069200,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"40996613","duration":1860,"bikeId":"9617","endDate":1423071180,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423069320,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"40996712","duration":900,"bikeId":"12935","endDate":1423070340,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1423069440,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40996813","duration":240,"bikeId":"8350","endDate":1423069800,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1423069560,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"40996850","duration":780,"bikeId":"3295","endDate":1423070400,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423069620,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40996919","duration":480,"bikeId":"2015","endDate":1423070220,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1423069740,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"40996962","duration":73560,"bikeId":"690","endDate":1423143360,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1423069800,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"40997024","duration":1200,"bikeId":"8527","endDate":1423071120,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423069920,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"40997079","duration":2100,"bikeId":"12898","endDate":1423072140,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423070040,"startStationId":"566","startStationName":"Westfield Ariel Way, White City"}, +{"_id":"40997167","duration":1020,"bikeId":"10173","endDate":1423071180,"endStationId":"713","endStationName":"Hawley Crescent, Camden Town","startDate":1423070160,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"40997209","duration":1320,"bikeId":"9362","endDate":1423071600,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1423070280,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"40997294","duration":780,"bikeId":"11320","endDate":1423071180,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1423070400,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"40997402","duration":360,"bikeId":"11416","endDate":1423070880,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423070520,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"40997415","duration":1500,"bikeId":"2435","endDate":1423072080,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1423070580,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"40997498","duration":1620,"bikeId":"4501","endDate":1423072320,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1423070700,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"40997595","duration":180,"bikeId":"3307","endDate":1423071060,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1423070880,"startStationId":"729","startStationName":"St. Peter's Terrace, Fulham"}, +{"_id":"40997644","duration":900,"bikeId":"11722","endDate":1423071840,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1423070940,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"40997747","duration":420,"bikeId":"7285","endDate":1423071480,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423071060,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"40997799","duration":900,"bikeId":"1811","endDate":1423072020,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1423071120,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"40997854","duration":420,"bikeId":"3164","endDate":1423071660,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1423071240,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"40997912","duration":960,"bikeId":"5249","endDate":1423072260,"endStationId":"770","endStationName":"Gwendwr Road, West Kensington","startDate":1423071300,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"40997951","duration":1080,"bikeId":"4688","endDate":1423072440,"endStationId":"674","endStationName":"Carnegie Street, King's Cross","startDate":1423071360,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"40998059","duration":420,"bikeId":"8910","endDate":1423071900,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1423071480,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"40998125","duration":480,"bikeId":"178","endDate":1423072020,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423071540,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"40998161","duration":840,"bikeId":"2821","endDate":1423072440,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1423071600,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"40998257","duration":2220,"bikeId":"12998","endDate":1423073880,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1423071660,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"40998318","duration":480,"bikeId":"985","endDate":1423072260,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423071780,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"40998438","duration":480,"bikeId":"3367","endDate":1423072320,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1423071840,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"40998474","duration":660,"bikeId":"1730","endDate":1423072560,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1423071900,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"40998544","duration":480,"bikeId":"4687","endDate":1423072500,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423072020,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"40998617","duration":720,"bikeId":"1575","endDate":1423072800,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1423072080,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"40998657","duration":1260,"bikeId":"3907","endDate":1423073400,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1423072140,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"40998753","duration":420,"bikeId":"6300","endDate":1423072680,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423072260,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"40998782","duration":1200,"bikeId":"9939","endDate":1423073520,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1423072320,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"40998849","duration":780,"bikeId":"5611","endDate":1423073220,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423072440,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"40998915","duration":1800,"bikeId":"5419","endDate":1423074300,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1423072500,"startStationId":"598","startStationName":"Southerton Road, Hammersmith"}, +{"_id":"40999002","duration":780,"bikeId":"6021","endDate":1423073400,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423072620,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"40999031","duration":2580,"bikeId":"6351","endDate":1423075260,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1423072680,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"40999134","duration":900,"bikeId":"3243","endDate":1423073700,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1423072800,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"40999184","duration":360,"bikeId":"8609","endDate":1423073280,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1423072920,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"40999252","duration":1080,"bikeId":"610","endDate":1423074060,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423072980,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"40999342","duration":360,"bikeId":"8216","endDate":1423073460,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1423073100,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"40999396","duration":840,"bikeId":"9020","endDate":1423074000,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1423073160,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"40999426","duration":1320,"bikeId":"1005","endDate":1423074540,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1423073220,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"40999559","duration":480,"bikeId":"7674","endDate":1423073820,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1423073340,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"40999610","duration":420,"bikeId":"2972","endDate":1423073820,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1423073400,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"40999637","duration":780,"bikeId":"6179","endDate":1423074240,"endStationId":"435","endStationName":"Kennington Station, Kennington","startDate":1423073460,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"40999696","duration":1080,"bikeId":"2872","endDate":1423074600,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1423073520,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"40999762","duration":1800,"bikeId":"947","endDate":1423075380,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1423073580,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"40999844","duration":1380,"bikeId":"10468","endDate":1423075080,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423073700,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"40999927","duration":480,"bikeId":"3422","endDate":1423074300,"endStationId":"60","endStationName":"Lisson Grove, St. John's Wood","startDate":1423073820,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"40999989","duration":180,"bikeId":"12367","endDate":1423074120,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423073940,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41000041","duration":900,"bikeId":"2804","endDate":1423074900,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1423074000,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41000124","duration":300,"bikeId":"8466","endDate":1423074420,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1423074120,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41000180","duration":660,"bikeId":"614","endDate":1423074840,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423074180,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41000273","duration":360,"bikeId":"8369","endDate":1423074660,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1423074300,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"41000307","duration":1620,"bikeId":"643","endDate":1423075980,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1423074360,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"41000378","duration":720,"bikeId":"4114","endDate":1423075200,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423074480,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41000461","duration":540,"bikeId":"227","endDate":1423075140,"endStationId":"435","endStationName":"Kennington Station, Kennington","startDate":1423074600,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41000518","duration":360,"bikeId":"9807","endDate":1423075080,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1423074720,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41000567","duration":1080,"bikeId":"4615","endDate":1423075860,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1423074780,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41000681","duration":300,"bikeId":"9679","endDate":1423075200,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1423074900,"startStationId":"145","startStationName":"Ilchester Place, Kensington"}, +{"_id":"41000710","duration":960,"bikeId":"12678","endDate":1423075920,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1423074960,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41000794","duration":660,"bikeId":"4209","endDate":1423075740,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1423075080,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41000822","duration":1200,"bikeId":"9165","endDate":1423076340,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1423075140,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"41000932","duration":840,"bikeId":"41","endDate":1423076100,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1423075260,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"41000997","duration":660,"bikeId":"2696","endDate":1423076040,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1423075380,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41001064","duration":420,"bikeId":"12850","endDate":1423075920,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1423075500,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"41001120","duration":480,"bikeId":"10888","endDate":1423076100,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1423075620,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41001215","duration":360,"bikeId":"9650","endDate":1423076100,"endStationId":"466","endStationName":"Whiston Road, Haggerston","startDate":1423075740,"startStationId":"328","startStationName":"New North Road 2, Hoxton"}, +{"_id":"41001277","duration":480,"bikeId":"2335","endDate":1423076340,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1423075860,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41001346","duration":480,"bikeId":"2052","endDate":1423076460,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1423075980,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"41001398","duration":660,"bikeId":"8377","endDate":1423076760,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1423076100,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41001461","duration":300,"bikeId":"6347","endDate":1423076580,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1423076280,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41001520","duration":600,"bikeId":"12908","endDate":1423077000,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1423076400,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"41001576","duration":1380,"bikeId":"6688","endDate":1423077900,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1423076520,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"41001680","duration":240,"bikeId":"4029","endDate":1423076940,"endStationId":"477","endStationName":"Spindrift Avenue, Millwall","startDate":1423076700,"startStationId":"455","startStationName":"East Ferry Road, Cubitt Town"}, +{"_id":"41001725","duration":1920,"bikeId":"5029","endDate":1423078680,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1423076760,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41001788","duration":1680,"bikeId":"4349","endDate":1423078560,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1423076880,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41001845","duration":1260,"bikeId":"411","endDate":1423078260,"endStationId":"475","endStationName":"Lightermans Road, Millwall","startDate":1423077000,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41001928","duration":900,"bikeId":"12681","endDate":1423078080,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1423077180,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"41002000","duration":660,"bikeId":"2969","endDate":1423078020,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423077360,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41002045","duration":1440,"bikeId":"11322","endDate":1423078920,"endStationId":"777","endStationName":"Limburg Road, Clapham Common","startDate":1423077480,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41002145","duration":300,"bikeId":"13005","endDate":1423077960,"endStationId":"365","endStationName":"City Road, Angel","startDate":1423077660,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41002196","duration":840,"bikeId":"10021","endDate":1423078620,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1423077780,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"41002252","duration":1140,"bikeId":"445","endDate":1423079040,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1423077900,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41002340","duration":480,"bikeId":"8500","endDate":1423078620,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423078140,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41002415","duration":240,"bikeId":"6264","endDate":1423078560,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423078320,"startStationId":"276","startStationName":"Lower Thames Street, Monument"}, +{"_id":"41002475","duration":1140,"bikeId":"12884","endDate":1423079640,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1423078500,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"41002542","duration":660,"bikeId":"56","endDate":1423079400,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1423078740,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41002623","duration":600,"bikeId":"2773","endDate":1423079520,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1423078920,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"41002687","duration":480,"bikeId":"8540","endDate":1423079580,"endStationId":"547","endStationName":"East India DLR, Blackwall","startDate":1423079100,"startStationId":"563","startStationName":"Preston's Road, Cubitt Town"}, +{"_id":"41002736","duration":1740,"bikeId":"8201","endDate":1423081020,"endStationId":"698","endStationName":"Shoreditch Court, Haggerston","startDate":1423079280,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41002817","duration":1380,"bikeId":"10196","endDate":1423080900,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1423079520,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"41002871","duration":1260,"bikeId":"5656","endDate":1423080960,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1423079700,"startStationId":"538","startStationName":"Naval Row, Blackwall"}, +{"_id":"41002953","duration":540,"bikeId":"10523","endDate":1423080540,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1423080000,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41003007","duration":1320,"bikeId":"1114","endDate":1423081500,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1423080180,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41003094","duration":600,"bikeId":"8822","endDate":1423081020,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1423080420,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41003146","duration":1320,"bikeId":"4633","endDate":1423081980,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1423080660,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"41003220","duration":960,"bikeId":"4375","endDate":1423081920,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423080960,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41003297","duration":480,"bikeId":"10828","endDate":1423081680,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1423081200,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41003363","duration":360,"bikeId":"6359","endDate":1423081800,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1423081440,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41003429","duration":360,"bikeId":"2099","endDate":1423082100,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1423081740,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41003495","duration":960,"bikeId":"4082","endDate":1423082940,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1423081980,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41003564","duration":660,"bikeId":"11332","endDate":1423082880,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1423082220,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41003638","duration":180,"bikeId":"3093","endDate":1423082760,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1423082580,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"41003690","duration":300,"bikeId":"5460","endDate":1423083180,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423082880,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41003758","duration":300,"bikeId":"896","endDate":1423083540,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423083240,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41003830","duration":180,"bikeId":"10590","endDate":1423083840,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1423083660,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41003890","duration":360,"bikeId":"9741","endDate":1423084380,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1423084020,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41003952","duration":1320,"bikeId":"5029","endDate":1423085580,"endStationId":"734","endStationName":"Plough Terrace, Clapham Junction","startDate":1423084260,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41004032","duration":780,"bikeId":"11550","endDate":1423085400,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1423084620,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41004098","duration":180,"bikeId":"10274","endDate":1423085160,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1423084980,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"41004161","duration":600,"bikeId":"1154","endDate":1423086000,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1423085400,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41004230","duration":1380,"bikeId":"10365","endDate":1423087020,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1423085640,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41004294","duration":480,"bikeId":"1234","endDate":1423086540,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423086060,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41004363","duration":8160,"bikeId":"5989","endDate":1423094640,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1423086480,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41004437","duration":360,"bikeId":"4388","endDate":1423087440,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1423087080,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41004494","duration":840,"bikeId":"5417","endDate":1423088400,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1423087560,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"41004565","duration":600,"bikeId":"225","endDate":1423088640,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1423088040,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41004637","duration":900,"bikeId":"5192","endDate":1423089360,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1423088460,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41004698","duration":600,"bikeId":"12181","endDate":1423089600,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1423089000,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41004762","duration":1080,"bikeId":"4470","endDate":1423090680,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1423089600,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41004833","duration":720,"bikeId":"9059","endDate":1423090920,"endStationId":"174","endStationName":"Strand, Strand","startDate":1423090200,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"41004900","duration":480,"bikeId":"5763","endDate":1423091220,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1423090740,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41004974","duration":120,"bikeId":"8810","endDate":1423091700,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1423091580,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41005030","duration":1200,"bikeId":"8913","endDate":1423093380,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1423092180,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41005104","duration":300,"bikeId":"4362","endDate":1423093260,"endStationId":"721","endStationName":"Wendon Street, Old Ford","startDate":1423092960,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"41005169","duration":300,"bikeId":"2758","endDate":1423093920,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1423093620,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41005243","duration":420,"bikeId":"9657","endDate":1423095180,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1423094760,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41005310","duration":1020,"bikeId":"7446","endDate":1423097280,"endStationId":"565","endStationName":"Selby Street, Whitechapel","startDate":1423096260,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41005378","duration":1080,"bikeId":"4132","endDate":1423099380,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1423098300,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41005446","duration":300,"bikeId":"9327","endDate":1423101240,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1423100940,"startStationId":"355","startStationName":"Oval Way, Lambeth"}, +{"_id":"41005516","duration":540,"bikeId":"7210","endDate":1423104960,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1423104420,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41005586","duration":300,"bikeId":"11720","endDate":1423111860,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1423111560,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"41005650","duration":480,"bikeId":"4958","endDate":1423115220,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1423114740,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"41005718","duration":720,"bikeId":"3147","endDate":1423116840,"endStationId":"487","endStationName":"Canton Street, Poplar","startDate":1423116120,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41005789","duration":420,"bikeId":"11903","endDate":1423117440,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1423117020,"startStationId":"171","startStationName":"Collingham Gardens, Earl's Court"}, +{"_id":"41005846","duration":360,"bikeId":"12500","endDate":1423117920,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423117560,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41006009","duration":720,"bikeId":"6758","endDate":1423118760,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1423118040,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"41005970","duration":660,"bikeId":"2099","endDate":1423119120,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1423118460,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41006049","duration":660,"bikeId":"10953","endDate":1423119540,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1423118880,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41006115","duration":300,"bikeId":"805","endDate":1423119540,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423119240,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41006186","duration":120,"bikeId":"6988","endDate":1423119660,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423119540,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41006262","duration":480,"bikeId":"9493","endDate":1423120320,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1423119840,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41006327","duration":180,"bikeId":"3351","endDate":1423120260,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1423120080,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41006378","duration":240,"bikeId":"5990","endDate":1423120620,"endStationId":"675","endStationName":"Usk Road, Battersea","startDate":1423120380,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"41006457","duration":420,"bikeId":"1649","endDate":1423121040,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1423120620,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41006525","duration":540,"bikeId":"7181","endDate":1423121340,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1423120800,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41006574","duration":540,"bikeId":"7343","endDate":1423121520,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423120980,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"41006638","duration":600,"bikeId":"8165","endDate":1423121760,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423121160,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41006696","duration":660,"bikeId":"11180","endDate":1423122000,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1423121340,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41006778","duration":600,"bikeId":"8548","endDate":1423122120,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423121520,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41006830","duration":1020,"bikeId":"2942","endDate":1423122660,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1423121640,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41006921","duration":420,"bikeId":"2987","endDate":1423122240,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1423121820,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"41006967","duration":600,"bikeId":"3739","endDate":1423122540,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1423121940,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"41007049","duration":720,"bikeId":"3469","endDate":1423122780,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1423122060,"startStationId":"547","startStationName":"East India DLR, Blackwall"}, +{"_id":"41007112","duration":840,"bikeId":"9","endDate":1423123020,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1423122180,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41007168","duration":720,"bikeId":"11537","endDate":1423123020,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423122300,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41007265","duration":420,"bikeId":"4679","endDate":1423122840,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1423122420,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"41007279","duration":1800,"bikeId":"10627","endDate":1423124280,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1423122480,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"41007368","duration":780,"bikeId":"10359","endDate":1423123380,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423122600,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41007434","duration":780,"bikeId":"3931","endDate":1423123500,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1423122720,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"41007490","duration":900,"bikeId":"12669","endDate":1423123740,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1423122840,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41007550","duration":1260,"bikeId":"4036","endDate":1423124220,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1423122960,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41007637","duration":1560,"bikeId":"3861","endDate":1423124640,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1423123080,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"41007685","duration":780,"bikeId":"5690","endDate":1423123980,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423123200,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41007775","duration":240,"bikeId":"9592","endDate":1423123560,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1423123320,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"41007813","duration":720,"bikeId":"6073","endDate":1423124100,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1423123380,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41007893","duration":1260,"bikeId":"13022","endDate":1423124760,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1423123500,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"41007977","duration":480,"bikeId":"12729","endDate":1423124100,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423123620,"startStationId":"156","startStationName":"New Kent Road, Borough"}, +{"_id":"41007993","duration":1440,"bikeId":"217","endDate":1423125120,"endStationId":"76","endStationName":"Longford Street, Regent's Park","startDate":1423123680,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41008090","duration":960,"bikeId":"4776","endDate":1423124760,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423123800,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"41008171","duration":600,"bikeId":"3186","endDate":1423124520,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423123920,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41008244","duration":180,"bikeId":"12324","endDate":1423124220,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1423124040,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41008317","duration":660,"bikeId":"3150","endDate":1423124760,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1423124100,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41008351","duration":1200,"bikeId":"2929","endDate":1423125360,"endStationId":"222","endStationName":"Knightsbridge, Hyde Park","startDate":1423124160,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"41008432","duration":420,"bikeId":"12324","endDate":1423124700,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1423124280,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41008518","duration":540,"bikeId":"10478","endDate":1423124880,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423124340,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41008541","duration":1080,"bikeId":"10966","endDate":1423125480,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1423124400,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41008650","duration":240,"bikeId":"8758","endDate":1423124760,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1423124520,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41008712","duration":840,"bikeId":"7442","endDate":1423125420,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423124580,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41008778","duration":960,"bikeId":"12283","endDate":1423125600,"endStationId":"172","endStationName":"Sumner Place, South Kensington","startDate":1423124640,"startStationId":"161","startStationName":"Guildhouse Street, Victoria"}, +{"_id":"41008849","duration":420,"bikeId":"8068","endDate":1423125180,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1423124760,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41008870","duration":720,"bikeId":"5288","endDate":1423125540,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423124820,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41008938","duration":1560,"bikeId":"752","endDate":1423126440,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1423124880,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41009032","duration":300,"bikeId":"10433","endDate":1423125300,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1423125000,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41009085","duration":600,"bikeId":"11420","endDate":1423125660,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1423125060,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41009168","duration":1140,"bikeId":"3619","endDate":1423126260,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1423125120,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41009238","duration":420,"bikeId":"9756","endDate":1423125660,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423125240,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41009324","duration":1020,"bikeId":"5613","endDate":1423126320,"endStationId":"172","endStationName":"Sumner Place, South Kensington","startDate":1423125300,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"41009364","duration":900,"bikeId":"379","endDate":1423126260,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423125360,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41009460","duration":1200,"bikeId":"9820","endDate":1423126620,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1423125420,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41009472","duration":1200,"bikeId":"7507","endDate":1423126680,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1423125480,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"41009544","duration":1320,"bikeId":"8284","endDate":1423126860,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1423125540,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"41009652","duration":1140,"bikeId":"6448","endDate":1423126740,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1423125600,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41009689","duration":11580,"bikeId":"3943","endDate":1423137240,"endStationId":"543","endStationName":"Lansdowne Walk, Notting Hill","startDate":1423125660,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"41009774","duration":480,"bikeId":"11116","endDate":1423126260,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423125780,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41009900","duration":540,"bikeId":"5594","endDate":1423126380,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1423125840,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41009926","duration":420,"bikeId":"298","endDate":1423126320,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1423125900,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41010009","duration":420,"bikeId":"9905","endDate":1423126380,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1423125960,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41010089","duration":360,"bikeId":"11251","endDate":1423126380,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1423126020,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"41010120","duration":480,"bikeId":"11868","endDate":1423126560,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1423126080,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41010159","duration":780,"bikeId":"9646","endDate":1423126920,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1423126140,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41010216","duration":1260,"bikeId":"10516","endDate":1423127460,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1423126200,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41010331","duration":300,"bikeId":"136","endDate":1423126620,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423126320,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"41010403","duration":480,"bikeId":"7022","endDate":1423126860,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1423126380,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41010468","duration":900,"bikeId":"12983","endDate":1423127340,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1423126440,"startStationId":"714","startStationName":"Stewart's Road, Nine Elms"}, +{"_id":"41010549","duration":480,"bikeId":"10076","endDate":1423127040,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423126560,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"41011570","duration":780,"bikeId":"7445","endDate":1423127400,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1423126620,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41010653","duration":960,"bikeId":"9031","endDate":1423127640,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1423126680,"startStationId":"355","startStationName":"Oval Way, Lambeth"}, +{"_id":"41010768","duration":360,"bikeId":"1199","endDate":1423127160,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423126800,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41010787","duration":780,"bikeId":"1293","endDate":1423127640,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1423126860,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41010879","duration":1200,"bikeId":"8994","endDate":1423128120,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1423126920,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"41010962","duration":420,"bikeId":"9680","endDate":1423127460,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1423127040,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41011028","duration":240,"bikeId":"5300","endDate":1423127400,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1423127160,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41011065","duration":720,"bikeId":"1385","endDate":1423127940,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1423127220,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41011132","duration":780,"bikeId":"10697","endDate":1423128120,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423127340,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41011210","duration":720,"bikeId":"467","endDate":1423128180,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423127460,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41011293","duration":600,"bikeId":"4236","endDate":1423128180,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1423127580,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41011339","duration":540,"bikeId":"6461","endDate":1423128240,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1423127700,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41011421","duration":240,"bikeId":"7756","endDate":1423128060,"endStationId":"280","endStationName":"Royal Avenue 2, Chelsea","startDate":1423127820,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"41011455","duration":1140,"bikeId":"3776","endDate":1423129020,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1423127880,"startStationId":"146","startStationName":"Vauxhall Bridge , Pimlico"}, +{"_id":"41011579","duration":420,"bikeId":"3052","endDate":1423128480,"endStationId":"617","endStationName":"Elysium Place, Fulham","startDate":1423128060,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"41011628","duration":540,"bikeId":"5936","endDate":1423128720,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423128180,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41011682","duration":1140,"bikeId":"6255","endDate":1423129440,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423128300,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"41011758","duration":660,"bikeId":"5066","endDate":1423129140,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1423128480,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"41011845","duration":360,"bikeId":"11121","endDate":1423129020,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1423128660,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41011883","duration":840,"bikeId":"9219","endDate":1423129620,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1423128780,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"41011948","duration":1560,"bikeId":"12048","endDate":1423130460,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1423128900,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41012015","duration":1140,"bikeId":"2145","endDate":1423130220,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423129080,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"41012114","duration":540,"bikeId":"8347","endDate":1423129800,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423129260,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41012178","duration":0,"bikeId":"3836","endDate":1423129440,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1423129440,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41012225","duration":1260,"bikeId":"10340","endDate":1423130820,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1423129560,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"41012314","duration":780,"bikeId":"337","endDate":1423130580,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1423129800,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41012393","duration":420,"bikeId":"8059","endDate":1423130460,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1423130040,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"41012462","duration":660,"bikeId":"7906","endDate":1423130940,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1423130280,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41012506","duration":1260,"bikeId":"835","endDate":1423131780,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1423130520,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"41012587","duration":300,"bikeId":"9709","endDate":1423131180,"endStationId":"423","endStationName":"Eaton Square (South), Belgravia","startDate":1423130880,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"41012662","duration":300,"bikeId":"4667","endDate":1423131480,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1423131180,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"41012719","duration":600,"bikeId":"100","endDate":1423132140,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1423131540,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41012785","duration":360,"bikeId":"4701","endDate":1423132260,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1423131900,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"41012856","duration":420,"bikeId":"3846","endDate":1423132740,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1423132320,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"41012935","duration":420,"bikeId":"3027","endDate":1423133100,"endStationId":"76","endStationName":"Longford Street, Regent's Park","startDate":1423132680,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41012987","duration":2040,"bikeId":"1971","endDate":1423134960,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423132920,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41013065","duration":1440,"bikeId":"1693","endDate":1423134780,"endStationId":"283","endStationName":"Kingsway, Covent Garden","startDate":1423133340,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41013128","duration":600,"bikeId":"5399","endDate":1423134300,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1423133700,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41013209","duration":300,"bikeId":"6621","endDate":1423134360,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423134060,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41013273","duration":600,"bikeId":"6990","endDate":1423135080,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1423134480,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"41013343","duration":540,"bikeId":"1533","endDate":1423135440,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1423134900,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"41013410","duration":480,"bikeId":"7897","endDate":1423135860,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423135380,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41013480","duration":2220,"bikeId":"2573","endDate":1423137960,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423135740,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"41013547","duration":1860,"bikeId":"7383","endDate":1423138080,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1423136220,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41013614","duration":360,"bikeId":"2455","endDate":1423137000,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1423136640,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41013678","duration":1200,"bikeId":"2203","endDate":1423138140,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423136940,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41013742","duration":480,"bikeId":"12620","endDate":1423137780,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1423137300,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"41013821","duration":240,"bikeId":"3926","endDate":1423138020,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1423137780,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"41013886","duration":1560,"bikeId":"9189","endDate":1423139580,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1423138020,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41013954","duration":420,"bikeId":"9075","endDate":1423138740,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1423138320,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41014018","duration":1500,"bikeId":"3862","endDate":1423140060,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1423138560,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41014073","duration":2220,"bikeId":"865","endDate":1423141020,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1423138800,"startStationId":"598","startStationName":"Southerton Road, Hammersmith"}, +{"_id":"41014152","duration":600,"bikeId":"2023","endDate":1423139700,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423139100,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"41014234","duration":360,"bikeId":"365","endDate":1423139820,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423139460,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41014283","duration":1020,"bikeId":"12317","endDate":1423140720,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1423139700,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"41014340","duration":1320,"bikeId":"6607","endDate":1423141260,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1423139940,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41014432","duration":1140,"bikeId":"12964","endDate":1423141440,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1423140300,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41014484","duration":1140,"bikeId":"5269","endDate":1423141680,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1423140540,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"41014566","duration":1800,"bikeId":"4189","endDate":1423142640,"endStationId":"604","endStationName":"St Martin's Close, Camden Town","startDate":1423140840,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"41014652","duration":480,"bikeId":"11312","endDate":1423141680,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1423141200,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"41014709","duration":540,"bikeId":"11244","endDate":1423141920,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1423141380,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41014775","duration":360,"bikeId":"5928","endDate":1423142040,"endStationId":"471","endStationName":"Hewison Street, Old Ford","startDate":1423141680,"startStationId":"467","startStationName":"Southern Grove, Bow"}, +{"_id":"41014839","duration":420,"bikeId":"3721","endDate":1423142340,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1423141920,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41014905","duration":720,"bikeId":"1994","endDate":1423142880,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1423142160,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41014969","duration":660,"bikeId":"1366","endDate":1423143060,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1423142400,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41015054","duration":180,"bikeId":"10784","endDate":1423142880,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423142700,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41015106","duration":480,"bikeId":"1483","endDate":1423143420,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1423142940,"startStationId":"647","startStationName":"Richmond Way, Shepherd's Bush"}, +{"_id":"41015179","duration":900,"bikeId":"2677","endDate":1423144140,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1423143240,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"41015252","duration":1080,"bikeId":"1689","endDate":1423144560,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1423143480,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41015322","duration":900,"bikeId":"9758","endDate":1423144620,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1423143720,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"41015381","duration":240,"bikeId":"10645","endDate":1423144260,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423144020,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41015453","duration":600,"bikeId":"854","endDate":1423144860,"endStationId":"100","endStationName":"Albert Embankment, Vauxhall","startDate":1423144260,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41015517","duration":240,"bikeId":"4653","endDate":1423144800,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1423144560,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41015585","duration":180,"bikeId":"6636","endDate":1423145040,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1423144860,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41015648","duration":1020,"bikeId":"3076","endDate":1423146060,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1423145040,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41015724","duration":360,"bikeId":"3272","endDate":1423145760,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423145400,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41015783","duration":900,"bikeId":"6514","endDate":1423146540,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1423145640,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"41015853","duration":840,"bikeId":"2225","endDate":1423146840,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1423146000,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"41015913","duration":900,"bikeId":"4234","endDate":1423147200,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423146300,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41015994","duration":120,"bikeId":"7019","endDate":1423146780,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1423146660,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41016062","duration":780,"bikeId":"6000","endDate":1423147740,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1423146960,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41016120","duration":1140,"bikeId":"12222","endDate":1423148400,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1423147260,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41016189","duration":1560,"bikeId":"4369","endDate":1423149120,"endStationId":"740","endStationName":"Sirdar Road, Avondale","startDate":1423147560,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41016261","duration":840,"bikeId":"12893","endDate":1423148700,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423147860,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41016340","duration":1620,"bikeId":"10728","endDate":1423149780,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1423148160,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41016409","duration":720,"bikeId":"10790","endDate":1423149240,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1423148520,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41016482","duration":300,"bikeId":"11785","endDate":1423149120,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1423148820,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41016542","duration":1500,"bikeId":"10743","endDate":1423150560,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1423149060,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41016610","duration":1740,"bikeId":"9100","endDate":1423151040,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1423149300,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41016679","duration":6420,"bikeId":"3086","endDate":1423156020,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1423149600,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41016760","duration":360,"bikeId":"11009","endDate":1423150320,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1423149960,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"41016826","duration":360,"bikeId":"10832","endDate":1423150620,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423150260,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41016887","duration":5100,"bikeId":"1657","endDate":1423155660,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423150560,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41016944","duration":960,"bikeId":"2188","endDate":1423151820,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1423150860,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41017027","duration":660,"bikeId":"10249","endDate":1423151820,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423151160,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41017086","duration":780,"bikeId":"10666","endDate":1423152120,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1423151340,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41017139","duration":960,"bikeId":"6764","endDate":1423152600,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1423151640,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41017218","duration":360,"bikeId":"3036","endDate":1423152240,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1423151880,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"41017278","duration":1140,"bikeId":"7060","endDate":1423153200,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423152060,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41017343","duration":1020,"bikeId":"9541","endDate":1423153260,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1423152240,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41017437","duration":360,"bikeId":"10535","endDate":1423152840,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1423152480,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41017492","duration":1380,"bikeId":"12198","endDate":1423153980,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1423152600,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"41017559","duration":600,"bikeId":"9256","endDate":1423153440,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1423152840,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41017636","duration":360,"bikeId":"1641","endDate":1423153440,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1423153080,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"41017694","duration":540,"bikeId":"7652","endDate":1423153800,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1423153260,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"41017768","duration":1260,"bikeId":"7045","endDate":1423154700,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423153440,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41017835","duration":540,"bikeId":"11280","endDate":1423154220,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423153680,"startStationId":"466","startStationName":"Whiston Road, Haggerston"}, +{"_id":"41017904","duration":600,"bikeId":"5440","endDate":1423154460,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1423153860,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41017985","duration":420,"bikeId":"8465","endDate":1423154460,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423154040,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41018047","duration":240,"bikeId":"6303","endDate":1423154460,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1423154220,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41018094","duration":1740,"bikeId":"12498","endDate":1423156080,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1423154340,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41018172","duration":480,"bikeId":"5282","endDate":1423155060,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1423154580,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41018266","duration":120,"bikeId":"6551","endDate":1423154880,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1423154760,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41018326","duration":300,"bikeId":"7841","endDate":1423155240,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423154940,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41018385","duration":420,"bikeId":"10728","endDate":1423155480,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1423155060,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"41018462","duration":240,"bikeId":"11060","endDate":1423155480,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423155240,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"41018495","duration":1020,"bikeId":"10778","endDate":1423156380,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1423155360,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41018572","duration":600,"bikeId":"10946","endDate":1423156140,"endStationId":"441","endStationName":"Sail Street, Vauxhall","startDate":1423155540,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41018656","duration":540,"bikeId":"2767","endDate":1423156200,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1423155660,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"41018731","duration":480,"bikeId":"897","endDate":1423156260,"endStationId":"412","endStationName":"Cleaver Street, Kennington","startDate":1423155780,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"41018775","duration":1260,"bikeId":"9675","endDate":1423157100,"endStationId":"466","endStationName":"Whiston Road, Haggerston","startDate":1423155840,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41018840","duration":1500,"bikeId":"2982","endDate":1423157460,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1423155960,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41018909","duration":780,"bikeId":"4167","endDate":1423156860,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1423156080,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"41018986","duration":540,"bikeId":"5374","endDate":1423156740,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1423156200,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"41019039","duration":3240,"bikeId":"8845","endDate":1423159500,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1423156260,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"41019122","duration":300,"bikeId":"6785","endDate":1423156740,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1423156440,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41019189","duration":300,"bikeId":"10004","endDate":1423156860,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1423156560,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"41019247","duration":1080,"bikeId":"3882","endDate":1423157700,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423156620,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41019296","duration":720,"bikeId":"4703","endDate":1423157460,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1423156740,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"41019388","duration":720,"bikeId":"5275","endDate":1423157580,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1423156860,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41019473","duration":360,"bikeId":"59","endDate":1423157340,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1423156980,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41019560","duration":180,"bikeId":"7588","endDate":1423157280,"endStationId":"59","endStationName":"Rodney Street, Angel","startDate":1423157100,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41019602","duration":780,"bikeId":"6156","endDate":1423157940,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1423157160,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"41019662","duration":480,"bikeId":"1531","endDate":1423157760,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1423157280,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41019742","duration":60,"bikeId":"3319","endDate":1423157460,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1423157400,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"41019773","duration":1560,"bikeId":"10947","endDate":1423159020,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1423157460,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41019845","duration":420,"bikeId":"2944","endDate":1423158000,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1423157580,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41019932","duration":840,"bikeId":"11924","endDate":1423158480,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1423157640,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41019956","duration":1140,"bikeId":"3907","endDate":1423158840,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1423157700,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41020080","duration":420,"bikeId":"2801","endDate":1423158240,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1423157820,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"41020127","duration":780,"bikeId":"6891","endDate":1423158660,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423157880,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41020178","duration":1560,"bikeId":"568","endDate":1423159500,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423157940,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41020289","duration":420,"bikeId":"4737","endDate":1423158480,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423158060,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41020313","duration":900,"bikeId":"2568","endDate":1423159020,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1423158120,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"41020373","duration":1740,"bikeId":"3659","endDate":1423159920,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1423158180,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41020473","duration":600,"bikeId":"10098","endDate":1423158900,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423158300,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41020525","duration":780,"bikeId":"8155","endDate":1423159140,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1423158360,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41020559","duration":1500,"bikeId":"9067","endDate":1423159920,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1423158420,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41020660","duration":300,"bikeId":"12540","endDate":1423158840,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1423158540,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41020692","duration":1260,"bikeId":"12170","endDate":1423159860,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1423158600,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41020823","duration":420,"bikeId":"5851","endDate":1423159140,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1423158720,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41020876","duration":600,"bikeId":"13046","endDate":1423159380,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1423158780,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"41020955","duration":720,"bikeId":"8017","endDate":1423159560,"endStationId":"759","endStationName":"Broadley Terrace, Marylebone","startDate":1423158840,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"41020977","duration":1800,"bikeId":"10980","endDate":1423160700,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1423158900,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41021059","duration":720,"bikeId":"5518","endDate":1423159740,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1423159020,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41021100","duration":1620,"bikeId":"5196","endDate":1423160700,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1423159080,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41021192","duration":360,"bikeId":"1091","endDate":1423159560,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1423159200,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"41021255","duration":960,"bikeId":"2882","endDate":1423160220,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1423159260,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41021324","duration":1380,"bikeId":"2516","endDate":1423160700,"endStationId":"291","endStationName":"Claverton Street, Pimlico","startDate":1423159320,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41021423","duration":240,"bikeId":"611","endDate":1423159680,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1423159440,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"41021461","duration":360,"bikeId":"7587","endDate":1423159860,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423159500,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41021507","duration":660,"bikeId":"3058","endDate":1423160220,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1423159560,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41021606","duration":960,"bikeId":"6108","endDate":1423160580,"endStationId":"286","endStationName":"St. John's Wood Road, St. John's Wood","startDate":1423159620,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"41021658","duration":1680,"bikeId":"2249","endDate":1423161360,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1423159680,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41021768","duration":420,"bikeId":"4615","endDate":1423160220,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423159800,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"41021787","duration":780,"bikeId":"8144","endDate":1423160640,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1423159860,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41021880","duration":960,"bikeId":"9660","endDate":1423160880,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1423159920,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"41021957","duration":300,"bikeId":"3024","endDate":1423160340,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1423160040,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41022033","duration":420,"bikeId":"7618","endDate":1423160520,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1423160100,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"41022078","duration":900,"bikeId":"5964","endDate":1423161060,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1423160160,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41022153","duration":480,"bikeId":"3518","endDate":1423160760,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1423160280,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41022204","duration":300,"bikeId":"7821","endDate":1423160700,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1423160400,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41022238","duration":840,"bikeId":"1861","endDate":1423161300,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1423160460,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41022359","duration":240,"bikeId":"5164","endDate":1423160820,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1423160580,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"41022388","duration":1140,"bikeId":"858","endDate":1423161780,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1423160640,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41022471","duration":660,"bikeId":"25","endDate":1423161420,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1423160760,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41022520","duration":1440,"bikeId":"1869","endDate":1423162260,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1423160820,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41022561","duration":1140,"bikeId":"6410","endDate":1423162080,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1423160940,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"41022661","duration":840,"bikeId":"309","endDate":1423161900,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423161060,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41022749","duration":600,"bikeId":"2188","endDate":1423161780,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1423161180,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"41022790","duration":1680,"bikeId":"555","endDate":1423162920,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1423161240,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"41022859","duration":600,"bikeId":"3632","endDate":1423161960,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1423161360,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"41022920","duration":1320,"bikeId":"11933","endDate":1423162740,"endStationId":"189","endStationName":"Claremont Square, Angel","startDate":1423161420,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41023003","duration":720,"bikeId":"5711","endDate":1423162260,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423161540,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"41023075","duration":240,"bikeId":"2172","endDate":1423161900,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1423161660,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41023162","duration":240,"bikeId":"10973","endDate":1423162020,"endStationId":"297","endStationName":"Geraldine Street, Elephant & Castle","startDate":1423161780,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41023189","duration":1440,"bikeId":"722","endDate":1423163280,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1423161840,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"41023276","duration":840,"bikeId":"6564","endDate":1423162800,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1423161960,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"41023381","duration":300,"bikeId":"4591","endDate":1423162380,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423162080,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41023419","duration":1560,"bikeId":"9403","endDate":1423163700,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423162140,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"41023508","duration":180,"bikeId":"10843","endDate":1423162500,"endStationId":"612","endStationName":"Wandsworth Rd, Isley Court, Wandsworth Road","startDate":1423162320,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"41023574","duration":720,"bikeId":"9358","endDate":1423163160,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423162440,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41023625","duration":660,"bikeId":"3567","endDate":1423163220,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423162560,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"41023700","duration":1080,"bikeId":"4677","endDate":1423163760,"endStationId":"708","endStationName":"Disraeli Road, Putney","startDate":1423162680,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"41023777","duration":540,"bikeId":"3850","endDate":1423163400,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1423162860,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41023839","duration":480,"bikeId":"1123","endDate":1423163460,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1423162980,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"41023885","duration":900,"bikeId":"182","endDate":1423164000,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1423163100,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41023983","duration":300,"bikeId":"8192","endDate":1423163580,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1423163280,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41024028","duration":960,"bikeId":"9902","endDate":1423164360,"endStationId":"93","endStationName":"Cloudesley Road, Angel","startDate":1423163400,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41024103","duration":300,"bikeId":"12517","endDate":1423163880,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1423163580,"startStationId":"470","startStationName":"Mostyn Grove, Bow"}, +{"_id":"41024180","duration":840,"bikeId":"8648","endDate":1423164540,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423163700,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41024261","duration":480,"bikeId":"12407","endDate":1423164360,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423163880,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41024296","duration":1260,"bikeId":"13058","endDate":1423165260,"endStationId":"672","endStationName":"Grant Road Central, Clapham Junction","startDate":1423164000,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41024379","duration":1020,"bikeId":"9509","endDate":1423165200,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1423164180,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41024455","duration":720,"bikeId":"11810","endDate":1423165080,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1423164360,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41024509","duration":660,"bikeId":"452","endDate":1423165200,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1423164540,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"41024569","duration":1500,"bikeId":"9673","endDate":1423166220,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1423164720,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41024662","duration":240,"bikeId":"668","endDate":1423165200,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1423164960,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41024713","duration":960,"bikeId":"2293","endDate":1423166100,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1423165140,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41024791","duration":840,"bikeId":"4878","endDate":1423166160,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1423165320,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"41024850","duration":840,"bikeId":"10234","endDate":1423166340,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1423165500,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41024927","duration":900,"bikeId":"10618","endDate":1423166640,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1423165740,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41025003","duration":540,"bikeId":"6919","endDate":1423166460,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1423165920,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"41025063","duration":840,"bikeId":"3113","endDate":1423166940,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1423166100,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"41025138","duration":840,"bikeId":"10168","endDate":1423167180,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1423166340,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41025213","duration":480,"bikeId":"12409","endDate":1423167060,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423166580,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41025275","duration":900,"bikeId":"1071","endDate":1423167780,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1423166880,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"41025354","duration":780,"bikeId":"3647","endDate":1423167900,"endStationId":"775","endStationName":"Little Brook Green, Brook Green","startDate":1423167120,"startStationId":"729","startStationName":"St. Peter's Terrace, Fulham"}, +{"_id":"41025414","duration":660,"bikeId":"8220","endDate":1423167960,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1423167300,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41025467","duration":1620,"bikeId":"12991","endDate":1423169160,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1423167540,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41025551","duration":300,"bikeId":"10647","endDate":1423168080,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1423167780,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"41025623","duration":300,"bikeId":"939","endDate":1423168320,"endStationId":"189","endStationName":"Claremont Square, Angel","startDate":1423168020,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"41025686","duration":900,"bikeId":"9818","endDate":1423169220,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1423168320,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41025760","duration":300,"bikeId":"6927","endDate":1423168860,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423168560,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41025824","duration":1080,"bikeId":"11906","endDate":1423169880,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1423168800,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"41025896","duration":540,"bikeId":"11193","endDate":1423169700,"endStationId":"770","endStationName":"Gwendwr Road, West Kensington","startDate":1423169160,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"41025971","duration":660,"bikeId":"4933","endDate":1423170120,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1423169460,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41026039","duration":780,"bikeId":"1826","endDate":1423170540,"endStationId":"689","endStationName":"Spanish Road, Wandsworth","startDate":1423169760,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41026105","duration":840,"bikeId":"10761","endDate":1423170900,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1423170060,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41026186","duration":60,"bikeId":"5688","endDate":1423170420,"endStationId":"463","endStationName":"Thurtle Road, Haggerston","startDate":1423170360,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41026233","duration":2640,"bikeId":"11717","endDate":1423173180,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1423170540,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"41026315","duration":840,"bikeId":"11439","endDate":1423171740,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1423170900,"startStationId":"430","startStationName":"South Parade, Chelsea"}, +{"_id":"41026391","duration":660,"bikeId":"10578","endDate":1423171980,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1423171320,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41026453","duration":840,"bikeId":"2789","endDate":1423172520,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423171680,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41026518","duration":480,"bikeId":"4120","endDate":1423172520,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1423172040,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41026590","duration":420,"bikeId":"12436","endDate":1423172940,"endStationId":"663","endStationName":"Clarendon Road, Avondale","startDate":1423172520,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"41026650","duration":720,"bikeId":"1766","endDate":1423173600,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423172880,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41026726","duration":480,"bikeId":"6352","endDate":1423173780,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1423173300,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"41026790","duration":840,"bikeId":"3023","endDate":1423174560,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423173720,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"41026856","duration":120,"bikeId":"23","endDate":1423174320,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1423174200,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41026921","duration":540,"bikeId":"11208","endDate":1423175040,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1423174500,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"41026995","duration":180,"bikeId":"1374","endDate":1423175160,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1423174980,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41027068","duration":180,"bikeId":"9984","endDate":1423175580,"endStationId":"550","endStationName":"Harford Street, Mile End","startDate":1423175400,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"41027132","duration":1020,"bikeId":"2379","endDate":1423176780,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1423175760,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41027201","duration":660,"bikeId":"4266","endDate":1423176900,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1423176240,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"41027273","duration":360,"bikeId":"8912","endDate":1423177080,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1423176720,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41027341","duration":1860,"bikeId":"9912","endDate":1423179300,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1423177440,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"41027407","duration":660,"bikeId":"10244","endDate":1423178700,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1423178040,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"41027479","duration":540,"bikeId":"3621","endDate":1423179240,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1423178700,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41027542","duration":540,"bikeId":"505","endDate":1423179780,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1423179240,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41027613","duration":1620,"bikeId":"6875","endDate":1423181580,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1423179960,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41027678","duration":540,"bikeId":"7399","endDate":1423181400,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1423180860,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41027745","duration":300,"bikeId":"9854","endDate":1423182120,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1423181820,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"41027810","duration":1800,"bikeId":"6983","endDate":1423184520,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423182720,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41027881","duration":2280,"bikeId":"11207","endDate":1423186200,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1423183920,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41027953","duration":420,"bikeId":"7598","endDate":1423186020,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1423185600,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41028027","duration":600,"bikeId":"8642","endDate":1423188720,"endStationId":"464","endStationName":"St. Mary and St. Michael Church, Stepney","startDate":1423188120,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41028096","duration":780,"bikeId":"3464","endDate":1423192500,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1423191720,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"41028163","duration":900,"bikeId":"12403","endDate":1423197960,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423197060,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"41028234","duration":900,"bikeId":"11873","endDate":1423202040,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1423201140,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"41028301","duration":960,"bikeId":"7738","endDate":1423203720,"endStationId":"207","endStationName":"Grosvenor Crescent, Belgravia","startDate":1423202760,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"41028365","duration":900,"bikeId":"12965","endDate":1423204560,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423203660,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41028433","duration":600,"bikeId":"2309","endDate":1423204800,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423204200,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41028496","duration":900,"bikeId":"11466","endDate":1423205640,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1423204740,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41028572","duration":300,"bikeId":"10250","endDate":1423205460,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423205160,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"41028637","duration":180,"bikeId":"1360","endDate":1423205760,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1423205580,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41028704","duration":360,"bikeId":"12427","endDate":1423206240,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423205880,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41028764","duration":1680,"bikeId":"11794","endDate":1423207860,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1423206180,"startStationId":"714","startStationName":"Stewart's Road, Nine Elms"}, +{"_id":"41028829","duration":420,"bikeId":"6861","endDate":1423206900,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423206480,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41028893","duration":600,"bikeId":"11066","endDate":1423207320,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423206720,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41028959","duration":1080,"bikeId":"1363","endDate":1423207980,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1423206900,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41029024","duration":1260,"bikeId":"10051","endDate":1423208400,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1423207140,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41029119","duration":240,"bikeId":"1874","endDate":1423207620,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1423207380,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"41029174","duration":660,"bikeId":"12727","endDate":1423208160,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1423207500,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41029228","duration":420,"bikeId":"12729","endDate":1423208100,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1423207680,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41029290","duration":480,"bikeId":"9790","endDate":1423208340,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423207860,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41029356","duration":540,"bikeId":"13065","endDate":1423208580,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423208040,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41029427","duration":1620,"bikeId":"9701","endDate":1423209780,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423208160,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41029506","duration":300,"bikeId":"8858","endDate":1423208640,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1423208340,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41029549","duration":1260,"bikeId":"9988","endDate":1423209660,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1423208400,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41029628","duration":360,"bikeId":"12780","endDate":1423208940,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1423208580,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"41029710","duration":420,"bikeId":"2989","endDate":1423209120,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1423208700,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41029793","duration":300,"bikeId":"2818","endDate":1423209120,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1423208820,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"41029843","duration":420,"bikeId":"9233","endDate":1423209360,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1423208940,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41029891","duration":480,"bikeId":"4761","endDate":1423209540,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1423209060,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41029922","duration":1620,"bikeId":"2385","endDate":1423210740,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1423209120,"startStationId":"715","startStationName":"Aylward Street, Stepney"}, +{"_id":"41030009","duration":1320,"bikeId":"5757","endDate":1423210560,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1423209240,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"41030080","duration":1080,"bikeId":"2356","endDate":1423210440,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1423209360,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"41030176","duration":600,"bikeId":"3987","endDate":1423210080,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423209480,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41030213","duration":1080,"bikeId":"9051","endDate":1423210620,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1423209540,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41030278","duration":660,"bikeId":"5559","endDate":1423210320,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423209660,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41030385","duration":420,"bikeId":"1172","endDate":1423210200,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1423209780,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41030422","duration":1320,"bikeId":"11437","endDate":1423211160,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1423209840,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41030511","duration":720,"bikeId":"10332","endDate":1423210680,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423209960,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"41030559","duration":1320,"bikeId":"9386","endDate":1423211340,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1423210020,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"41030632","duration":300,"bikeId":"3634","endDate":1423210440,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1423210140,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41030702","duration":660,"bikeId":"4114","endDate":1423210860,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1423210200,"startStationId":"176","startStationName":"Gloucester Terrace, Bayswater"}, +{"_id":"41030743","duration":1320,"bikeId":"5201","endDate":1423211580,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1423210260,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"41030846","duration":660,"bikeId":"529","endDate":1423211040,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1423210380,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41030896","duration":720,"bikeId":"6131","endDate":1423211160,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1423210440,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41030949","duration":1260,"bikeId":"10907","endDate":1423211760,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1423210500,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"41031014","duration":600,"bikeId":"10109","endDate":1423211220,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423210620,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"41031051","duration":1200,"bikeId":"7493","endDate":1423211880,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423210680,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41031154","duration":1560,"bikeId":"10231","endDate":1423212300,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1423210740,"startStationId":"729","startStationName":"St. Peter's Terrace, Fulham"}, +{"_id":"41031262","duration":420,"bikeId":"10707","endDate":1423211280,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1423210860,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"41031294","duration":1020,"bikeId":"6618","endDate":1423211940,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423210920,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"41031361","duration":1020,"bikeId":"9260","endDate":1423212000,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1423210980,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41031434","duration":1020,"bikeId":"1303","endDate":1423212060,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1423211040,"startStationId":"690","startStationName":"Stanley Grove, Battersea"}, +{"_id":"41031452","duration":1200,"bikeId":"6011","endDate":1423212300,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1423211100,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"41031575","duration":300,"bikeId":"6139","endDate":1423211520,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1423211220,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41031579","duration":2100,"bikeId":"12153","endDate":1423213320,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1423211220,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41031691","duration":600,"bikeId":"6945","endDate":1423211940,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1423211340,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41031781","duration":540,"bikeId":"6441","endDate":1423211940,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423211400,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41031858","duration":600,"bikeId":"310","endDate":1423212060,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423211460,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41031896","duration":720,"bikeId":"11715","endDate":1423212240,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1423211520,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41031956","duration":960,"bikeId":"608","endDate":1423212540,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423211580,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"41032020","duration":1080,"bikeId":"10853","endDate":1423212720,"endStationId":"726","endStationName":"Alfreda Street, Battersea Park","startDate":1423211640,"startStationId":"704","startStationName":"Mexfield Road, East Putney"}, +{"_id":"41032044","duration":1320,"bikeId":"12076","endDate":1423213020,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423211700,"startStationId":"470","startStationName":"Mostyn Grove, Bow"}, +{"_id":"41032132","duration":2760,"bikeId":"12790","endDate":1423214520,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423211760,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41032220","duration":3180,"bikeId":"3307","endDate":1423215000,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423211820,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"41032304","duration":1500,"bikeId":"10018","endDate":1423213380,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423211880,"startStationId":"750","startStationName":"Culvert Road, Battersea"}, +{"_id":"41032318","duration":2400,"bikeId":"7892","endDate":1423214340,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1423211940,"startStationId":"684","startStationName":"Neville Gill Close, Wandsworth"}, +{"_id":"41032393","duration":1140,"bikeId":"4209","endDate":1423213140,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1423212000,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41032466","duration":960,"bikeId":"6646","endDate":1423213020,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1423212060,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"41032563","duration":900,"bikeId":"10466","endDate":1423213020,"endStationId":"289","endStationName":"South Audley Street, Mayfair","startDate":1423212120,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"41032654","duration":720,"bikeId":"3546","endDate":1423212900,"endStationId":"515","endStationName":"Russell Gardens, Holland Park","startDate":1423212180,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"41032692","duration":840,"bikeId":"8454","endDate":1423213080,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1423212240,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41032777","duration":840,"bikeId":"2202","endDate":1423213140,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1423212300,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41032801","duration":960,"bikeId":"6740","endDate":1423213320,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1423212360,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41032869","duration":1260,"bikeId":"6487","endDate":1423213680,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1423212420,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41032985","duration":540,"bikeId":"12581","endDate":1423213080,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1423212540,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41033013","duration":540,"bikeId":"2089","endDate":1423213140,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1423212600,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41033132","duration":420,"bikeId":"11970","endDate":1423213080,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1423212660,"startStationId":"705","startStationName":"Upper Richmond Road, East Putney"}, +{"_id":"41033192","duration":540,"bikeId":"3321","endDate":1423213260,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1423212720,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"41033269","duration":660,"bikeId":"6010","endDate":1423213440,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1423212780,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41033300","duration":780,"bikeId":"2483","endDate":1423213620,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1423212840,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41033367","duration":720,"bikeId":"9623","endDate":1423213620,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423212900,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"41033420","duration":900,"bikeId":"10889","endDate":1423213860,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1423212960,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41033526","duration":420,"bikeId":"5202","endDate":1423213500,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1423213080,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41033583","duration":540,"bikeId":"3576","endDate":1423213680,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423213140,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41033642","duration":720,"bikeId":"6421","endDate":1423213920,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1423213200,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"41033685","duration":1560,"bikeId":"11401","endDate":1423214820,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423213260,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41033788","duration":420,"bikeId":"9051","endDate":1423213800,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1423213380,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41033840","duration":1020,"bikeId":"11193","endDate":1423214460,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1423213440,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"41033923","duration":720,"bikeId":"4415","endDate":1423214280,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1423213560,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"41033985","duration":240,"bikeId":"3664","endDate":1423213920,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1423213680,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41034038","duration":840,"bikeId":"10953","endDate":1423214580,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1423213740,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41034137","duration":540,"bikeId":"3092","endDate":1423214400,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1423213860,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41034187","duration":540,"bikeId":"6462","endDate":1423214520,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1423213980,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41034246","duration":480,"bikeId":"9136","endDate":1423214580,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1423214100,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41034303","duration":1020,"bikeId":"8042","endDate":1423215180,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423214160,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41034389","duration":1140,"bikeId":"5805","endDate":1423215420,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1423214280,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"41034469","duration":120,"bikeId":"11025","endDate":1423214580,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1423214460,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"41034526","duration":840,"bikeId":"10484","endDate":1423215360,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423214520,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"41034600","duration":1020,"bikeId":"12575","endDate":1423215660,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423214640,"startStationId":"523","startStationName":"Langdon Park, Poplar"}, +{"_id":"41034667","duration":120,"bikeId":"4793","endDate":1423214940,"endStationId":"442","endStationName":"Walmer Road, Notting Hill","startDate":1423214820,"startStationId":"771","startStationName":"Rifle Place, Avondale"}, +{"_id":"41034719","duration":1200,"bikeId":"2255","endDate":1423216140,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423214940,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41034804","duration":120,"bikeId":"564","endDate":1423215240,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1423215120,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41034858","duration":360,"bikeId":"2799","endDate":1423215600,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1423215240,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"41034927","duration":900,"bikeId":"4526","endDate":1423216260,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1423215360,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41034983","duration":1200,"bikeId":"6256","endDate":1423216680,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1423215480,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"41035071","duration":1140,"bikeId":"10697","endDate":1423216800,"endStationId":"463","endStationName":"Thurtle Road, Haggerston","startDate":1423215660,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41035147","duration":420,"bikeId":"12430","endDate":1423216320,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423215900,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41035210","duration":420,"bikeId":"12433","endDate":1423216500,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423216080,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41035269","duration":900,"bikeId":"7305","endDate":1423217160,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1423216260,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"41035323","duration":1440,"bikeId":"12156","endDate":1423217880,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1423216440,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41035427","duration":300,"bikeId":"2900","endDate":1423216980,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1423216680,"startStationId":"430","startStationName":"South Parade, Chelsea"}, +{"_id":"41035475","duration":840,"bikeId":"962","endDate":1423217700,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1423216860,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"41035543","duration":1440,"bikeId":"351","endDate":1423218540,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1423217100,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"41035622","duration":1020,"bikeId":"8448","endDate":1423218360,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1423217340,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41035681","duration":1080,"bikeId":"7046","endDate":1423218720,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1423217640,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"41035749","duration":1440,"bikeId":"6532","endDate":1423219320,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1423217880,"startStationId":"538","startStationName":"Naval Row, Blackwall"}, +{"_id":"41035824","duration":900,"bikeId":"28","endDate":1423219140,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1423218240,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"41035900","duration":960,"bikeId":"11544","endDate":1423219500,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423218540,"startStationId":"721","startStationName":"Wendon Street, Old Ford"}, +{"_id":"41035959","duration":300,"bikeId":"8218","endDate":1423219200,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1423218900,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"41036036","duration":360,"bikeId":"10298","endDate":1423219560,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1423219200,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41036092","duration":660,"bikeId":"1353","endDate":1423220160,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1423219500,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"41036173","duration":300,"bikeId":"11357","endDate":1423220040,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1423219740,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"41036226","duration":960,"bikeId":"6419","endDate":1423220940,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1423219980,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41036309","duration":960,"bikeId":"9887","endDate":1423221240,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1423220280,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"41036378","duration":900,"bikeId":"6348","endDate":1423221480,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1423220580,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41036454","duration":360,"bikeId":"2374","endDate":1423221240,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1423220880,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41036522","duration":180,"bikeId":"6067","endDate":1423221420,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423221240,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41036582","duration":4500,"bikeId":"4940","endDate":1423226040,"endStationId":"604","endStationName":"St Martin's Close, Camden Town","startDate":1423221540,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41036656","duration":1740,"bikeId":"6242","endDate":1423223640,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1423221900,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41036724","duration":300,"bikeId":"4544","endDate":1423222620,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1423222320,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41036787","duration":4020,"bikeId":"6835","endDate":1423226580,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1423222560,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"41036859","duration":180,"bikeId":"9541","endDate":1423223100,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423222920,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"41036924","duration":600,"bikeId":"5164","endDate":1423223760,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1423223160,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41036990","duration":1200,"bikeId":"12657","endDate":1423224660,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423223460,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41037061","duration":1200,"bikeId":"9578","endDate":1423225080,"endStationId":"612","endStationName":"Wandsworth Rd, Isley Court, Wandsworth Road","startDate":1423223880,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"41037135","duration":960,"bikeId":"9644","endDate":1423225140,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1423224180,"startStationId":"430","startStationName":"South Parade, Chelsea"}, +{"_id":"41037186","duration":1740,"bikeId":"8683","endDate":1423226100,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1423224360,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"41037273","duration":0,"bikeId":"7835","endDate":1423224660,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423224660,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41037330","duration":1260,"bikeId":"12125","endDate":1423226100,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423224840,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41037399","duration":2460,"bikeId":"4746","endDate":1423227540,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1423225080,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"41037475","duration":540,"bikeId":"11214","endDate":1423225860,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1423225320,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"41037558","duration":420,"bikeId":"12004","endDate":1423225980,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1423225560,"startStationId":"762","startStationName":"Storey's Gate, Westminster"}, +{"_id":"41037613","duration":1380,"bikeId":"9574","endDate":1423227120,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423225740,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41037666","duration":1680,"bikeId":"7391","endDate":1423227660,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1423225980,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41037749","duration":780,"bikeId":"2827","endDate":1423227000,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1423226220,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"41037816","duration":660,"bikeId":"4622","endDate":1423227060,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1423226400,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"41037894","duration":420,"bikeId":"7974","endDate":1423227000,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1423226580,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41037951","duration":1920,"bikeId":"7944","endDate":1423228680,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1423226760,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"41038009","duration":1320,"bikeId":"626","endDate":1423228320,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1423227000,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"41038091","duration":180,"bikeId":"8794","endDate":1423227480,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1423227300,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41038166","duration":240,"bikeId":"1244","endDate":1423227780,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423227540,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41038217","duration":660,"bikeId":"2752","endDate":1423228380,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1423227720,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41038306","duration":240,"bikeId":"9790","endDate":1423228200,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1423227960,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41038355","duration":780,"bikeId":"4790","endDate":1423228920,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1423228140,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41038417","duration":540,"bikeId":"2677","endDate":1423228920,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423228380,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41038496","duration":780,"bikeId":"10308","endDate":1423229400,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1423228620,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41038558","duration":960,"bikeId":"11248","endDate":1423229820,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1423228860,"startStationId":"696","startStationName":"Charing Cross Hospital, Hammersmith"}, +{"_id":"41038626","duration":480,"bikeId":"12677","endDate":1423229580,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1423229100,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41038694","duration":780,"bikeId":"5316","endDate":1423230120,"endStationId":"291","endStationName":"Claverton Street, Pimlico","startDate":1423229340,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41038785","duration":180,"bikeId":"11326","endDate":1423229760,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1423229580,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"41038837","duration":540,"bikeId":"8593","endDate":1423230300,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423229760,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41038910","duration":420,"bikeId":"10723","endDate":1423230420,"endStationId":"634","endStationName":"Brook Green South, Brook Green","startDate":1423230000,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"41038970","duration":600,"bikeId":"12124","endDate":1423230840,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1423230240,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"41039031","duration":960,"bikeId":"12940","endDate":1423231440,"endStationId":"171","endStationName":"Collingham Gardens, Earl's Court","startDate":1423230480,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41039091","duration":540,"bikeId":"11997","endDate":1423231260,"endStationId":"474","endStationName":"Castalia Square, Cubitt Town","startDate":1423230720,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41039172","duration":420,"bikeId":"7104","endDate":1423231380,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1423230960,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"41039230","duration":420,"bikeId":"10686","endDate":1423231620,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1423231200,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41039307","duration":300,"bikeId":"1256","endDate":1423231740,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1423231440,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"41039375","duration":360,"bikeId":"3502","endDate":1423232040,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423231680,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41039447","duration":1500,"bikeId":"692","endDate":1423233360,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1423231860,"startStationId":"151","startStationName":"Chepstow Villas, Notting Hill"}, +{"_id":"41039532","duration":600,"bikeId":"12522","endDate":1423232760,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1423232160,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"41039604","duration":420,"bikeId":"6795","endDate":1423232940,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1423232520,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"41039671","duration":240,"bikeId":"12725","endDate":1423233060,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1423232820,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41039717","duration":1080,"bikeId":"8607","endDate":1423234140,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1423233060,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41039800","duration":840,"bikeId":"4648","endDate":1423234200,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1423233360,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"41039853","duration":840,"bikeId":"3792","endDate":1423234440,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1423233600,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41039926","duration":600,"bikeId":"2144","endDate":1423234500,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1423233900,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41039996","duration":660,"bikeId":"10298","endDate":1423234860,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1423234200,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41040073","duration":300,"bikeId":"8962","endDate":1423234800,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1423234500,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"41040128","duration":360,"bikeId":"89","endDate":1423235160,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1423234800,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"41040204","duration":120,"bikeId":"9735","endDate":1423235220,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1423235100,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41040252","duration":1020,"bikeId":"4778","endDate":1423236360,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1423235340,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41040317","duration":600,"bikeId":"6032","endDate":1423236240,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1423235640,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"41040396","duration":300,"bikeId":"3741","endDate":1423236240,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1423235940,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41040450","duration":1320,"bikeId":"8362","endDate":1423237500,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1423236180,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41040520","duration":900,"bikeId":"1799","endDate":1423237320,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1423236420,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"41040591","duration":600,"bikeId":"7104","endDate":1423237320,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1423236720,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"41040659","duration":420,"bikeId":"11305","endDate":1423237440,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1423237020,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41040727","duration":720,"bikeId":"3544","endDate":1423237920,"endStationId":"466","endStationName":"Whiston Road, Haggerston","startDate":1423237200,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"41040799","duration":780,"bikeId":"4739","endDate":1423238220,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1423237440,"startStationId":"776","startStationName":"Abyssinia Close, Clapham Junction"}, +{"_id":"41040860","duration":960,"bikeId":"6742","endDate":1423238640,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423237680,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41040928","duration":480,"bikeId":"6768","endDate":1423238400,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1423237920,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"41040990","duration":540,"bikeId":"12228","endDate":1423238640,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1423238100,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41041060","duration":1740,"bikeId":"11151","endDate":1423240020,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1423238280,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"41041131","duration":1080,"bikeId":"1959","endDate":1423239600,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1423238520,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41041197","duration":1320,"bikeId":"3243","endDate":1423240020,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1423238700,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41041274","duration":900,"bikeId":"1789","endDate":1423239780,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1423238880,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"41041355","duration":780,"bikeId":"4692","endDate":1423239840,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423239060,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41041403","duration":480,"bikeId":"8700","endDate":1423239720,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423239240,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41041500","duration":300,"bikeId":"3021","endDate":1423239720,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423239420,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41041561","duration":720,"bikeId":"82","endDate":1423240320,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1423239600,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41041604","duration":1380,"bikeId":"3534","endDate":1423241160,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423239780,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"41041682","duration":300,"bikeId":"10176","endDate":1423240260,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1423239960,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"41041740","duration":720,"bikeId":"12205","endDate":1423240860,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1423240140,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41041813","duration":540,"bikeId":"6569","endDate":1423240860,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1423240320,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41041864","duration":2340,"bikeId":"4313","endDate":1423242780,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1423240440,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41041941","duration":840,"bikeId":"5420","endDate":1423241460,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423240620,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"41042012","duration":420,"bikeId":"4670","endDate":1423241220,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423240800,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41042086","duration":780,"bikeId":"8113","endDate":1423241760,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1423240980,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41042150","duration":300,"bikeId":"7007","endDate":1423241460,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423241160,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41042210","duration":780,"bikeId":"6016","endDate":1423242060,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1423241280,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41042264","duration":1740,"bikeId":"8918","endDate":1423243140,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1423241400,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41042357","duration":0,"bikeId":"12666","endDate":1423241580,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1423241580,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"41042435","duration":180,"bikeId":"347","endDate":1423241940,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1423241760,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41042470","duration":720,"bikeId":"5087","endDate":1423242600,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1423241880,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41042574","duration":420,"bikeId":"728","endDate":1423242480,"endStationId":"352","endStationName":"Vauxhall Street, Vauxhall","startDate":1423242060,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41042642","duration":480,"bikeId":"9364","endDate":1423242660,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423242180,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41042680","duration":780,"bikeId":"3914","endDate":1423243020,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1423242240,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41042751","duration":600,"bikeId":"1936","endDate":1423242960,"endStationId":"365","endStationName":"City Road, Angel","startDate":1423242360,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41042836","duration":240,"bikeId":"3875","endDate":1423242720,"endStationId":"467","endStationName":"Southern Grove, Bow","startDate":1423242480,"startStationId":"497","startStationName":"Coborn Street, Mile End"}, +{"_id":"41042880","duration":1020,"bikeId":"11244","endDate":1423243560,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1423242540,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41042950","duration":720,"bikeId":"4705","endDate":1423243380,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423242660,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"41043029","duration":360,"bikeId":"5190","endDate":1423243140,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1423242780,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41043094","duration":120,"bikeId":"5275","endDate":1423243020,"endStationId":"171","endStationName":"Collingham Gardens, Earl's Court","startDate":1423242900,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41043155","duration":1140,"bikeId":"6873","endDate":1423244100,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1423242960,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41043218","duration":660,"bikeId":"10229","endDate":1423243740,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423243080,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"41043320","duration":240,"bikeId":"12907","endDate":1423243440,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1423243200,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41043341","duration":1920,"bikeId":"4999","endDate":1423245180,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1423243260,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41043422","duration":840,"bikeId":"14","endDate":1423244220,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1423243380,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41043486","duration":780,"bikeId":"8678","endDate":1423244280,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1423243500,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"41043541","duration":540,"bikeId":"1965","endDate":1423244160,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1423243620,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41043607","duration":1440,"bikeId":"12973","endDate":1423245120,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1423243680,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41043715","duration":300,"bikeId":"3757","endDate":1423244160,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1423243860,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41043762","duration":67080,"bikeId":"164","endDate":1423311000,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423243920,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41043831","duration":720,"bikeId":"13036","endDate":1423244760,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1423244040,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41043919","duration":300,"bikeId":"6561","endDate":1423244460,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1423244160,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41043972","duration":960,"bikeId":"3052","endDate":1423245180,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1423244220,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"41044064","duration":480,"bikeId":"10229","endDate":1423244820,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1423244340,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41044105","duration":900,"bikeId":"309","endDate":1423245300,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1423244400,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41044185","duration":420,"bikeId":"10001","endDate":1423244940,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1423244520,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41044200","duration":1140,"bikeId":"4967","endDate":1423245720,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1423244580,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"41044337","duration":240,"bikeId":"6224","endDate":1423244940,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1423244700,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"41044352","duration":1200,"bikeId":"10760","endDate":1423245960,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1423244760,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"41044417","duration":720,"bikeId":"8538","endDate":1423245600,"endStationId":"606","endStationName":"Addison Road, Holland Park","startDate":1423244880,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41044537","duration":420,"bikeId":"10112","endDate":1423245420,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423245000,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41044577","duration":1620,"bikeId":"2928","endDate":1423246680,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1423245060,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41044643","duration":660,"bikeId":"10856","endDate":1423245840,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1423245180,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41044696","duration":540,"bikeId":"8535","endDate":1423245840,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1423245300,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41044750","duration":1620,"bikeId":"6505","endDate":1423246980,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423245360,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41044859","duration":600,"bikeId":"12664","endDate":1423246080,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1423245480,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41044951","duration":180,"bikeId":"2933","endDate":1423245780,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1423245600,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41044968","duration":720,"bikeId":"4873","endDate":1423246380,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423245660,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41045020","duration":1740,"bikeId":"7437","endDate":1423247460,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1423245720,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41045129","duration":180,"bikeId":"5835","endDate":1423246080,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1423245900,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41045185","duration":1080,"bikeId":"563","endDate":1423247040,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423245960,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41045236","duration":840,"bikeId":"11484","endDate":1423246920,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1423246080,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"41045311","duration":660,"bikeId":"7116","endDate":1423246860,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1423246200,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41045365","duration":600,"bikeId":"10892","endDate":1423246920,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1423246320,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41045465","duration":180,"bikeId":"9501","endDate":1423246620,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1423246440,"startStationId":"763","startStationName":"Mile End Park Leisure Centre, Mile End"}, +{"_id":"41045479","duration":840,"bikeId":"8683","endDate":1423247340,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1423246500,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41045579","duration":480,"bikeId":"6258","endDate":1423247100,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423246620,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41045640","duration":720,"bikeId":"3631","endDate":1423247460,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1423246740,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"41045729","duration":780,"bikeId":"12470","endDate":1423247640,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1423246860,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41045783","duration":720,"bikeId":"3896","endDate":1423247700,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423246980,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41045855","duration":600,"bikeId":"7336","endDate":1423247700,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1423247100,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41045914","duration":900,"bikeId":"219","endDate":1423248120,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1423247220,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41045978","duration":1080,"bikeId":"1363","endDate":1423248420,"endStationId":"697","endStationName":"Charlotte Terrace, Angel","startDate":1423247340,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41046066","duration":300,"bikeId":"2536","endDate":1423247820,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1423247520,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41046118","duration":840,"bikeId":"10198","endDate":1423248480,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423247640,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41046155","duration":2580,"bikeId":"11413","endDate":1423250340,"endStationId":"697","endStationName":"Charlotte Terrace, Angel","startDate":1423247760,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"41046283","duration":480,"bikeId":"9500","endDate":1423248420,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1423247940,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41046333","duration":960,"bikeId":"102","endDate":1423249020,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423248060,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41046411","duration":360,"bikeId":"5175","endDate":1423248600,"endStationId":"517","endStationName":"Ford Road, Old Ford","startDate":1423248240,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"41046464","duration":900,"bikeId":"9719","endDate":1423249260,"endStationId":"286","endStationName":"St. John's Wood Road, St. John's Wood","startDate":1423248360,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41046544","duration":540,"bikeId":"10093","endDate":1423249080,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1423248540,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41046604","duration":1320,"bikeId":"4224","endDate":1423249980,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1423248660,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41046648","duration":900,"bikeId":"9163","endDate":1423249740,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1423248840,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41046750","duration":360,"bikeId":"8798","endDate":1423249380,"endStationId":"208","endStationName":"Mallory Street, Marylebone","startDate":1423249020,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"41046797","duration":780,"bikeId":"4350","endDate":1423249980,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1423249200,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"41046875","duration":840,"bikeId":"6947","endDate":1423250160,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1423249320,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"41046939","duration":1020,"bikeId":"6555","endDate":1423250520,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1423249500,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41047013","duration":480,"bikeId":"1735","endDate":1423250160,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1423249680,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"41047069","duration":480,"bikeId":"4631","endDate":1423250340,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1423249860,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41047159","duration":240,"bikeId":"7045","endDate":1423250280,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1423250040,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41047231","duration":300,"bikeId":"9539","endDate":1423250520,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423250220,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"41047300","duration":420,"bikeId":"3478","endDate":1423250820,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423250400,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41047353","duration":420,"bikeId":"5374","endDate":1423251000,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423250580,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41047412","duration":480,"bikeId":"766","endDate":1423251300,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1423250820,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41047474","duration":840,"bikeId":"2070","endDate":1423251840,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1423251000,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"41047558","duration":600,"bikeId":"1510","endDate":1423251840,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1423251240,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41047630","duration":660,"bikeId":"3361","endDate":1423252140,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1423251480,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"41047700","duration":60,"bikeId":"4013","endDate":1423251840,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1423251780,"startStationId":"238","startStationName":"Frampton Street, Paddington"}, +{"_id":"41047776","duration":540,"bikeId":"10945","endDate":1423252560,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1423252020,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41047836","duration":660,"bikeId":"11345","endDate":1423252920,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1423252260,"startStationId":"611","startStationName":"Princedale Road , Holland Park"}, +{"_id":"41047906","duration":300,"bikeId":"11475","endDate":1423252860,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423252560,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41047969","duration":300,"bikeId":"1277","endDate":1423253220,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1423252920,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41048028","duration":1020,"bikeId":"3140","endDate":1423254240,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1423253220,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"41048102","duration":120,"bikeId":"3123","endDate":1423253700,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1423253580,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"41048169","duration":540,"bikeId":"9790","endDate":1423254480,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1423253940,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41048244","duration":360,"bikeId":"9724","endDate":1423254720,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1423254360,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41048304","duration":540,"bikeId":"8585","endDate":1423255260,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1423254720,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41048376","duration":240,"bikeId":"6199","endDate":1423255380,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1423255140,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41048437","duration":900,"bikeId":"3376","endDate":1423256400,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423255500,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41048501","duration":1140,"bikeId":"2189","endDate":1423257120,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1423255980,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41048573","duration":540,"bikeId":"6160","endDate":1423257060,"endStationId":"297","endStationName":"Geraldine Street, Elephant & Castle","startDate":1423256520,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41048643","duration":720,"bikeId":"4170","endDate":1423257660,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1423256940,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41048709","duration":960,"bikeId":"6356","endDate":1423258380,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1423257420,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41048772","duration":960,"bikeId":"4596","endDate":1423258860,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423257900,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41048849","duration":300,"bikeId":"11345","endDate":1423258980,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1423258680,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"41048911","duration":660,"bikeId":"3251","endDate":1423259880,"endStationId":"699","endStationName":"Belford House, Haggerston","startDate":1423259220,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"41048975","duration":3360,"bikeId":"4161","endDate":1423263120,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1423259760,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"41049049","duration":300,"bikeId":"12293","endDate":1423260600,"endStationId":"521","endStationName":"Driffield Road, Old Ford","startDate":1423260300,"startStationId":"497","startStationName":"Coborn Street, Mile End"}, +{"_id":"41049126","duration":180,"bikeId":"8622","endDate":1423260960,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1423260780,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"41049186","duration":420,"bikeId":"9967","endDate":1423261620,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1423261200,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"41049258","duration":660,"bikeId":"12697","endDate":1423262280,"endStationId":"21","endStationName":"Hampstead Road (Cartmel), Euston","startDate":1423261620,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"41049321","duration":1020,"bikeId":"5679","endDate":1423263300,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1423262280,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41049378","duration":1800,"bikeId":"4875","endDate":1423264620,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1423262820,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41049458","duration":300,"bikeId":"4","endDate":1423263660,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1423263360,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"41049522","duration":840,"bikeId":"9632","endDate":1423264980,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1423264140,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41049589","duration":360,"bikeId":"2206","endDate":1423265160,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1423264800,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41049658","duration":960,"bikeId":"10063","endDate":1423266420,"endStationId":"721","endStationName":"Wendon Street, Old Ford","startDate":1423265460,"startStationId":"482","startStationName":"Thornfield House, Poplar"}, +{"_id":"41049728","duration":540,"bikeId":"1155","endDate":1423266780,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1423266240,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41049801","duration":540,"bikeId":"2465","endDate":1423267500,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1423266960,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"41049872","duration":360,"bikeId":"6830","endDate":1423267980,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1423267620,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"41049939","duration":540,"bikeId":"10629","endDate":1423268820,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1423268280,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41050014","duration":360,"bikeId":"10377","endDate":1423269480,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1423269120,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"41050073","duration":1140,"bikeId":"7383","endDate":1423271160,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1423270020,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41050143","duration":840,"bikeId":"10968","endDate":1423271820,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1423270980,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41050212","duration":660,"bikeId":"12395","endDate":1423272420,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1423271760,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41050289","duration":780,"bikeId":"12253","endDate":1423273500,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1423272720,"startStationId":"328","startStationName":"New North Road 2, Hoxton"}, +{"_id":"41050356","duration":2220,"bikeId":"2916","endDate":1423275960,"endStationId":"59","endStationName":"Rodney Street, Angel","startDate":1423273740,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41050423","duration":1980,"bikeId":"5390","endDate":1423276800,"endStationId":"447","endStationName":"Jubilee Crescent, Cubitt Town","startDate":1423274820,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41050494","duration":2820,"bikeId":"8312","endDate":1423278840,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1423276020,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41050568","duration":1380,"bikeId":"12121","endDate":1423278960,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1423277580,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"41050636","duration":1380,"bikeId":"1332","endDate":1423280280,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1423278900,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41050706","duration":1800,"bikeId":"4196","endDate":1423282080,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1423280280,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"41050781","duration":960,"bikeId":"11519","endDate":1423283520,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1423282560,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"41050849","duration":720,"bikeId":"4940","endDate":1423286880,"endStationId":"604","endStationName":"St Martin's Close, Camden Town","startDate":1423286160,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41050917","duration":240,"bikeId":"8386","endDate":1423290960,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1423290720,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"41050983","duration":1260,"bikeId":"12682","endDate":1423294920,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1423293660,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41051048","duration":1080,"bikeId":"2596","endDate":1423296120,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1423295040,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41051120","duration":360,"bikeId":"10074","endDate":1423296600,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423296240,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41051187","duration":660,"bikeId":"10022","endDate":1423298040,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1423297380,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41051254","duration":600,"bikeId":"3842","endDate":1423298640,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1423298040,"startStationId":"461","startStationName":"Aston Street, Stepney"}, +{"_id":"41051327","duration":480,"bikeId":"2313","endDate":1423299120,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1423298640,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"41051395","duration":360,"bikeId":"4469","endDate":1423299480,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1423299120,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41051459","duration":660,"bikeId":"1892","endDate":1423300260,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1423299600,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41051535","duration":180,"bikeId":"1381","endDate":1423300440,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423300260,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"41051597","duration":1080,"bikeId":"59","endDate":1423301880,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1423300800,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41051669","duration":600,"bikeId":"5806","endDate":1423301880,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1423301280,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"41051733","duration":840,"bikeId":"6540","endDate":1423302480,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423301640,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41051803","duration":300,"bikeId":"3809","endDate":1423302240,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1423301940,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41051867","duration":420,"bikeId":"10716","endDate":1423302660,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1423302240,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"41051934","duration":1560,"bikeId":"8904","endDate":1423304040,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1423302480,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"41052010","duration":660,"bikeId":"8442","endDate":1423303500,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1423302840,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"41052076","duration":180,"bikeId":"5138","endDate":1423303380,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1423303200,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"41052139","duration":840,"bikeId":"2955","endDate":1423304280,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1423303440,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"41052201","duration":780,"bikeId":"12253","endDate":1423304580,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1423303800,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41052280","duration":420,"bikeId":"10614","endDate":1423304520,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423304100,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"41052346","duration":1500,"bikeId":"229","endDate":1423305900,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1423304400,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"41052425","duration":480,"bikeId":"2069","endDate":1423305180,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1423304700,"startStationId":"250","startStationName":"Royal Avenue 1, Chelsea"}, +{"_id":"41052495","duration":240,"bikeId":"12473","endDate":1423305180,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423304940,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41052561","duration":180,"bikeId":"43","endDate":1423305420,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1423305240,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41052622","duration":1380,"bikeId":"1346","endDate":1423306800,"endStationId":"151","endStationName":"Chepstow Villas, Notting Hill","startDate":1423305420,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"41052689","duration":1140,"bikeId":"5947","endDate":1423306800,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1423305660,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41052762","duration":1620,"bikeId":"2136","endDate":1423307580,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1423305960,"startStationId":"744","startStationName":"Ingrave Street, Battersea"}, +{"_id":"41052840","duration":240,"bikeId":"11778","endDate":1423306500,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423306260,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"41052899","duration":1380,"bikeId":"12828","endDate":1423307880,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1423306500,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"41052968","duration":1140,"bikeId":"9994","endDate":1423308000,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1423306860,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"41053028","duration":600,"bikeId":"5470","endDate":1423307760,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1423307160,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"41053102","duration":480,"bikeId":"5106","endDate":1423307940,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1423307460,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"41053170","duration":480,"bikeId":"10557","endDate":1423308180,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1423307700,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41053231","duration":1620,"bikeId":"10282","endDate":1423309560,"endStationId":"257","endStationName":"Westminster University, Marylebone","startDate":1423307940,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"41053308","duration":300,"bikeId":"5656","endDate":1423308540,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1423308240,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41053363","duration":1560,"bikeId":"4667","endDate":1423310040,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1423308480,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"41053431","duration":1500,"bikeId":"8881","endDate":1423310280,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1423308780,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"41053501","duration":480,"bikeId":"42","endDate":1423309500,"endStationId":"100","endStationName":"Albert Embankment, Vauxhall","startDate":1423309020,"startStationId":"146","startStationName":"Vauxhall Bridge , Pimlico"}, +{"_id":"41053581","duration":600,"bikeId":"8284","endDate":1423309860,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1423309260,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41053645","duration":120,"bikeId":"11481","endDate":1423309620,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1423309500,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41053705","duration":420,"bikeId":"9259","endDate":1423310100,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1423309680,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41053786","duration":540,"bikeId":"6818","endDate":1423310460,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1423309920,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"41053845","duration":600,"bikeId":"4285","endDate":1423310760,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1423310160,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41053919","duration":180,"bikeId":"141","endDate":1423310580,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1423310400,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41053990","duration":420,"bikeId":"7627","endDate":1423311060,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1423310640,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"41054057","duration":1680,"bikeId":"3373","endDate":1423312500,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1423310820,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41054133","duration":420,"bikeId":"8536","endDate":1423311480,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1423311060,"startStationId":"616","startStationName":"Aintree Street, Fulham"}, +{"_id":"41054197","duration":720,"bikeId":"81","endDate":1423311960,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423311240,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"41054267","duration":180,"bikeId":"8198","endDate":1423311660,"endStationId":"663","endStationName":"Clarendon Road, Avondale","startDate":1423311480,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"41054337","duration":360,"bikeId":"10524","endDate":1423312020,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1423311660,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"41054391","duration":960,"bikeId":"4138","endDate":1423312800,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1423311840,"startStationId":"497","startStationName":"Coborn Street, Mile End"}, +{"_id":"41054477","duration":480,"bikeId":"10382","endDate":1423312560,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1423312080,"startStationId":"209","startStationName":"Denyer Street, Knightsbridge"}, +{"_id":"41054549","duration":240,"bikeId":"7846","endDate":1423312560,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1423312320,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"41054604","duration":1140,"bikeId":"8927","endDate":1423313580,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1423312440,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41054686","duration":540,"bikeId":"1799","endDate":1423313220,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1423312680,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41054741","duration":2340,"bikeId":"4584","endDate":1423315140,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1423312800,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41054823","duration":300,"bikeId":"10629","endDate":1423313340,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1423313040,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"41054881","duration":1260,"bikeId":"10604","endDate":1423314420,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423313160,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41054966","duration":240,"bikeId":"1352","endDate":1423313580,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1423313340,"startStationId":"765","startStationName":"Ranelagh Gardens, Fulham"}, +{"_id":"41055028","duration":2700,"bikeId":"6130","endDate":1423316160,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423313460,"startStationId":"771","startStationName":"Rifle Place, Avondale"}, +{"_id":"41055103","duration":540,"bikeId":"5053","endDate":1423314240,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423313700,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41055156","duration":2100,"bikeId":"11165","endDate":1423315980,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1423313880,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"41055243","duration":300,"bikeId":"4115","endDate":1423314480,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1423314180,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41055304","duration":1080,"bikeId":"6920","endDate":1423315500,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1423314420,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41055386","duration":720,"bikeId":"12262","endDate":1423315320,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1423314600,"startStationId":"629","startStationName":"Morie Street, Wandsworth"}, +{"_id":"41055470","duration":540,"bikeId":"10334","endDate":1423315380,"endStationId":"151","endStationName":"Chepstow Villas, Notting Hill","startDate":1423314840,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41055530","duration":240,"bikeId":"3154","endDate":1423315260,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1423315020,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"41055606","duration":1020,"bikeId":"11201","endDate":1423316220,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1423315200,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"41055661","duration":1740,"bikeId":"5285","endDate":1423317120,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423315380,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41055745","duration":780,"bikeId":"5527","endDate":1423316400,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1423315620,"startStationId":"667","startStationName":"Shepherd's Bush Road North, Shepherd's Bush"}, +{"_id":"41055776","duration":2400,"bikeId":"2906","endDate":1423318200,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423315800,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41055883","duration":600,"bikeId":"782","endDate":1423316640,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1423316040,"startStationId":"521","startStationName":"Driffield Road, Old Ford"}, +{"_id":"41055952","duration":420,"bikeId":"12236","endDate":1423316640,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1423316220,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"41056031","duration":600,"bikeId":"12886","endDate":1423317000,"endStationId":"247","endStationName":"St. John's Wood Church, Regent's Park","startDate":1423316400,"startStationId":"315","startStationName":"The Tennis Courts, Regent's Park"}, +{"_id":"41056075","duration":1140,"bikeId":"5185","endDate":1423317660,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1423316520,"startStationId":"690","startStationName":"Stanley Grove, Battersea"}, +{"_id":"41056146","duration":1980,"bikeId":"11925","endDate":1423318680,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423316700,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41056209","duration":780,"bikeId":"5787","endDate":1423317720,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1423316940,"startStationId":"563","startStationName":"Preston's Road, Cubitt Town"}, +{"_id":"41056293","duration":1680,"bikeId":"7674","endDate":1423318800,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423317120,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41056374","duration":240,"bikeId":"9198","endDate":1423317600,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1423317360,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"41056433","duration":240,"bikeId":"12513","endDate":1423317840,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1423317600,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41056483","duration":1200,"bikeId":"9317","endDate":1423318980,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1423317780,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"41056565","duration":840,"bikeId":"6432","endDate":1423318860,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1423318020,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41056637","duration":1020,"bikeId":"12605","endDate":1423319280,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1423318260,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"41056698","duration":1080,"bikeId":"7226","endDate":1423319520,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1423318440,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41056777","duration":840,"bikeId":"9147","endDate":1423319520,"endStationId":"7","endStationName":"Charlbert Street, St. John's Wood","startDate":1423318680,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41056834","duration":960,"bikeId":"5770","endDate":1423319880,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1423318920,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41056903","duration":2400,"bikeId":"1859","endDate":1423321500,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423319100,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41056980","duration":600,"bikeId":"9363","endDate":1423319940,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1423319340,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"41057041","duration":1260,"bikeId":"12877","endDate":1423320780,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1423319520,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41057116","duration":540,"bikeId":"11948","endDate":1423320300,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1423319760,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"41057197","duration":300,"bikeId":"10035","endDate":1423320300,"endStationId":"640","endStationName":"Silverthorne Road, Battersea","startDate":1423320000,"startStationId":"612","startStationName":"Wandsworth Rd, Isley Court, Wandsworth Road"}, +{"_id":"41057251","duration":660,"bikeId":"7795","endDate":1423320840,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1423320180,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"41057310","duration":960,"bikeId":"10889","endDate":1423321320,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1423320360,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41057385","duration":1440,"bikeId":"9640","endDate":1423321980,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423320540,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"41057440","duration":2100,"bikeId":"3969","endDate":1423322880,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1423320780,"startStationId":"49","startStationName":"Curzon Street, Mayfair"}, +{"_id":"41057528","duration":1200,"bikeId":"10926","endDate":1423322220,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423321020,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41057602","duration":240,"bikeId":"9327","endDate":1423321500,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423321260,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41057663","duration":120,"bikeId":"2411","endDate":1423321620,"endStationId":"352","endStationName":"Vauxhall Street, Vauxhall","startDate":1423321500,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41057722","duration":2460,"bikeId":"4649","endDate":1423324140,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1423321680,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"41057788","duration":2580,"bikeId":"2221","endDate":1423324440,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423321860,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41057863","duration":1080,"bikeId":"8318","endDate":1423323180,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1423322100,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41057938","duration":2460,"bikeId":"12015","endDate":1423324800,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423322340,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41058011","duration":4920,"bikeId":"1916","endDate":1423327500,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1423322580,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41058095","duration":660,"bikeId":"1778","endDate":1423323480,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1423322820,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41058151","duration":540,"bikeId":"5263","endDate":1423323540,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423323000,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"41058225","duration":660,"bikeId":"7601","endDate":1423323840,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423323180,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41058295","duration":360,"bikeId":"4666","endDate":1423323720,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1423323360,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41058338","duration":1200,"bikeId":"12569","endDate":1423324740,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423323540,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41058413","duration":1020,"bikeId":"5500","endDate":1423324740,"endStationId":"151","endStationName":"Chepstow Villas, Notting Hill","startDate":1423323720,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"41058490","duration":420,"bikeId":"4023","endDate":1423324380,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1423323960,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"41058566","duration":840,"bikeId":"6072","endDate":1423324980,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1423324140,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41058622","duration":960,"bikeId":"2721","endDate":1423325280,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1423324320,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41058701","duration":1500,"bikeId":"2228","endDate":1423326000,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1423324500,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"41058771","duration":480,"bikeId":"6281","endDate":1423325280,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423324800,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41058832","duration":3840,"bikeId":"11113","endDate":1423328820,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1423324980,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"41058897","duration":840,"bikeId":"4666","endDate":1423326060,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1423325220,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"41058953","duration":1200,"bikeId":"12808","endDate":1423326600,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1423325400,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41059036","duration":720,"bikeId":"2185","endDate":1423326360,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1423325640,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"41059096","duration":900,"bikeId":"1175","endDate":1423326720,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1423325820,"startStationId":"722","startStationName":"Finnis Street, Bethnal Green"}, +{"_id":"41059187","duration":240,"bikeId":"12427","endDate":1423326240,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1423326000,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41059239","duration":1620,"bikeId":"5412","endDate":1423327740,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1423326120,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41059298","duration":1680,"bikeId":"2245","endDate":1423328040,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423326360,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41059373","duration":840,"bikeId":"9654","endDate":1423327440,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1423326600,"startStationId":"577","startStationName":"Globe Town Market, Bethnal Green"}, +{"_id":"41059438","duration":1020,"bikeId":"12631","endDate":1423327800,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1423326780,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41059507","duration":120,"bikeId":"5766","endDate":1423327140,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1423327020,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41059571","duration":3780,"bikeId":"11813","endDate":1423330980,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1423327200,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41059648","duration":1200,"bikeId":"177","endDate":1423328640,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1423327440,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41059728","duration":480,"bikeId":"2151","endDate":1423328160,"endStationId":"60","endStationName":"Lisson Grove, St. John's Wood","startDate":1423327680,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41059806","duration":120,"bikeId":"3021","endDate":1423328040,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1423327920,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41059849","duration":960,"bikeId":"11696","endDate":1423329060,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1423328100,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"41059939","duration":240,"bikeId":"1701","endDate":1423328580,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423328340,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41060000","duration":120,"bikeId":"2673","endDate":1423328640,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423328520,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"41060067","duration":180,"bikeId":"7260","endDate":1423328880,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1423328700,"startStationId":"564","startStationName":"Somerset House, Strand"}, +{"_id":"41060134","duration":960,"bikeId":"12927","endDate":1423329840,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1423328880,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41060199","duration":540,"bikeId":"2672","endDate":1423329660,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423329120,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41060258","duration":1320,"bikeId":"4059","endDate":1423330620,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1423329300,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41060333","duration":1620,"bikeId":"10102","endDate":1423331100,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1423329480,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41060397","duration":480,"bikeId":"2012","endDate":1423330260,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1423329780,"startStationId":"49","startStationName":"Curzon Street, Mayfair"}, +{"_id":"41060448","duration":3300,"bikeId":"609","endDate":1423333320,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423330020,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41060523","duration":1680,"bikeId":"4858","endDate":1423332000,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1423330320,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"41060594","duration":600,"bikeId":"10459","endDate":1423331220,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1423330620,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41060657","duration":1740,"bikeId":"3678","endDate":1423332600,"endStationId":"576","endStationName":"Alpha Grove, Millwall","startDate":1423330860,"startStationId":"547","startStationName":"East India DLR, Blackwall"}, +{"_id":"41060728","duration":720,"bikeId":"10892","endDate":1423331880,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1423331160,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41060794","duration":540,"bikeId":"11408","endDate":1423331880,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1423331340,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41060877","duration":300,"bikeId":"5323","endDate":1423331940,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1423331640,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"41060920","duration":1260,"bikeId":"3128","endDate":1423333080,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423331820,"startStationId":"490","startStationName":"Pennington Street, Wapping"}, +{"_id":"41061014","duration":420,"bikeId":"12942","endDate":1423332600,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1423332180,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"41061073","duration":360,"bikeId":"1193","endDate":1423332840,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423332480,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41061138","duration":1080,"bikeId":"8149","endDate":1423333860,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423332780,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41061208","duration":120,"bikeId":"4431","endDate":1423333260,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1423333140,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"41061269","duration":960,"bikeId":"11067","endDate":1423334400,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1423333440,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"41061345","duration":240,"bikeId":"1148","endDate":1423334040,"endStationId":"477","endStationName":"Spindrift Avenue, Millwall","startDate":1423333800,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"41061411","duration":1200,"bikeId":"3448","endDate":1423335300,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1423334100,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"41061474","duration":19620,"bikeId":"10853","endDate":1423354080,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423334460,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41061544","duration":900,"bikeId":"2679","endDate":1423335780,"endStationId":"521","endStationName":"Driffield Road, Old Ford","startDate":1423334880,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41061607","duration":1620,"bikeId":"6427","endDate":1423336800,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1423335180,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41061688","duration":1620,"bikeId":"12539","endDate":1423337160,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1423335540,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41061749","duration":1020,"bikeId":"11375","endDate":1423336860,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1423335840,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"41061809","duration":1260,"bikeId":"1659","endDate":1423337400,"endStationId":"117","endStationName":"Lollard Street, Vauxhall","startDate":1423336140,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41061889","duration":300,"bikeId":"4903","endDate":1423336800,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1423336500,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41061956","duration":1980,"bikeId":"5653","endDate":1423338780,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1423336800,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"41062038","duration":240,"bikeId":"10161","endDate":1423337520,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1423337280,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41062081","duration":1620,"bikeId":"12808","endDate":1423339140,"endStationId":"100","endStationName":"Albert Embankment, Vauxhall","startDate":1423337520,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"41062161","duration":1380,"bikeId":"2673","endDate":1423339200,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423337820,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41062230","duration":1020,"bikeId":"13036","endDate":1423339200,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1423338180,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41062304","duration":540,"bikeId":"11436","endDate":1423339020,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1423338480,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41062378","duration":360,"bikeId":"9214","endDate":1423339320,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1423338960,"startStationId":"616","startStationName":"Aintree Street, Fulham"}, +{"_id":"41062437","duration":720,"bikeId":"12292","endDate":1423340100,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1423339380,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"41062506","duration":240,"bikeId":"3545","endDate":1423340100,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1423339860,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41062575","duration":360,"bikeId":"3163","endDate":1423340700,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1423340340,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"41062636","duration":1200,"bikeId":"4531","endDate":1423341960,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423340760,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41062704","duration":1260,"bikeId":"9052","endDate":1423342440,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1423341180,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41062773","duration":840,"bikeId":"10106","endDate":1423342500,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423341660,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41062845","duration":180,"bikeId":"7857","endDate":1423342440,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1423342260,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41062918","duration":2400,"bikeId":"5757","endDate":1423345140,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1423342740,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41062980","duration":3660,"bikeId":"10437","endDate":1423347120,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1423343460,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41063050","duration":780,"bikeId":"11210","endDate":1423344900,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1423344120,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41063122","duration":1860,"bikeId":"12655","endDate":1423346700,"endStationId":"355","endStationName":"Oval Way, Lambeth","startDate":1423344840,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41063188","duration":360,"bikeId":"7893","endDate":1423346160,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423345800,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41063262","duration":240,"bikeId":"11037","endDate":1423346820,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423346580,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41063326","duration":1200,"bikeId":"2377","endDate":1423348440,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1423347240,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41063398","duration":240,"bikeId":"11930","endDate":1423348200,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1423347960,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"41063460","duration":2580,"bikeId":"3985","endDate":1423351200,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1423348620,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41063536","duration":660,"bikeId":"4318","endDate":1423350060,"endStationId":"447","endStationName":"Jubilee Crescent, Cubitt Town","startDate":1423349400,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41063604","duration":360,"bikeId":"9924","endDate":1423350480,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1423350120,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41063671","duration":1020,"bikeId":"10471","endDate":1423351860,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1423350840,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41063746","duration":1800,"bikeId":"8353","endDate":1423353360,"endStationId":"90","endStationName":"Harrington Square, Camden Town","startDate":1423351560,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41063805","duration":960,"bikeId":"12253","endDate":1423353180,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1423352220,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41063879","duration":660,"bikeId":"10279","endDate":1423353720,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1423353060,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41063945","duration":600,"bikeId":"7299","endDate":1423354320,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1423353720,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41064012","duration":720,"bikeId":"1640","endDate":1423355220,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423354500,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41064076","duration":600,"bikeId":"5004","endDate":1423355880,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423355280,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41064152","duration":300,"bikeId":"9494","endDate":1423356240,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1423355940,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"41064223","duration":900,"bikeId":"2089","endDate":1423357440,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423356540,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"41064286","duration":900,"bikeId":"9819","endDate":1423358040,"endStationId":"103","endStationName":"Vicarage Gate, Kensington","startDate":1423357140,"startStationId":"430","startStationName":"South Parade, Chelsea"}, +{"_id":"41064359","duration":480,"bikeId":"11510","endDate":1423358460,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1423357980,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"41064435","duration":780,"bikeId":"13037","endDate":1423359720,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423358940,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"41064509","duration":1560,"bikeId":"1531","endDate":1423361520,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1423359960,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41064577","duration":1140,"bikeId":"10334","endDate":1423362180,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1423361040,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"41064645","duration":1080,"bikeId":"359","endDate":1423363320,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1423362240,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"41064710","duration":1560,"bikeId":"10671","endDate":1423364820,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1423363260,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41064782","duration":300,"bikeId":"2207","endDate":1423365120,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1423364820,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41064854","duration":360,"bikeId":"8706","endDate":1423367040,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1423366680,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41064924","duration":540,"bikeId":"10165","endDate":1423368900,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423368360,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41064995","duration":600,"bikeId":"10289","endDate":1423371600,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1423371000,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41065064","duration":480,"bikeId":"3106","endDate":1423374060,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1423373580,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"41065134","duration":480,"bikeId":"7882","endDate":1423377960,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1423377480,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"41065203","duration":1080,"bikeId":"6019","endDate":1423381980,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1423380900,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"41065271","duration":300,"bikeId":"3631","endDate":1423383360,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1423383060,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"41065335","duration":1500,"bikeId":"10678","endDate":1423385700,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423384200,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"41065398","duration":1620,"bikeId":"8232","endDate":1423386480,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1423384860,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"41065470","duration":1200,"bikeId":"12286","endDate":1423386900,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1423385700,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"41065537","duration":600,"bikeId":"10475","endDate":1423387200,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1423386600,"startStationId":"652","startStationName":"Evesham Street, Avondale"}, +{"_id":"41065601","duration":1320,"bikeId":"1130","endDate":1423388580,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1423387260,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"41065673","duration":660,"bikeId":"6569","endDate":1423388400,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423387740,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"41065747","duration":480,"bikeId":"4356","endDate":1423388640,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1423388160,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41065809","duration":1380,"bikeId":"610","endDate":1423389900,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1423388520,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"41065890","duration":1020,"bikeId":"12569","endDate":1423389900,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1423388880,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41065953","duration":840,"bikeId":"12665","endDate":1423390140,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1423389300,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"41066021","duration":840,"bikeId":"4649","endDate":1423390500,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1423389660,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41066086","duration":2280,"bikeId":"12893","endDate":1423392300,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1423390020,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41066156","duration":2040,"bikeId":"3836","endDate":1423392360,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1423390320,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41066230","duration":2100,"bikeId":"7790","endDate":1423392720,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423390620,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41066309","duration":480,"bikeId":"7074","endDate":1423391400,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1423390920,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"41066369","duration":13260,"bikeId":"5182","endDate":1423404360,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423391100,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"41066442","duration":1200,"bikeId":"5932","endDate":1423392600,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1423391400,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"41066496","duration":3060,"bikeId":"4997","endDate":1423394700,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1423391640,"startStationId":"274","startStationName":"Warwick Road, Olympia"}, +{"_id":"41066572","duration":900,"bikeId":"5443","endDate":1423392780,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1423391880,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41066639","duration":2520,"bikeId":"11311","endDate":1423394640,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1423392120,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41066700","duration":2760,"bikeId":"3498","endDate":1423395120,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1423392360,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"41066792","duration":360,"bikeId":"12225","endDate":1423392960,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1423392600,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41066859","duration":540,"bikeId":"9347","endDate":1423393320,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1423392780,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41066928","duration":480,"bikeId":"1788","endDate":1423393500,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1423393020,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41066990","duration":300,"bikeId":"10675","endDate":1423393560,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1423393260,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41067056","duration":300,"bikeId":"12549","endDate":1423393800,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1423393500,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"41067117","duration":3960,"bikeId":"12386","endDate":1423397700,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1423393740,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"41067197","duration":360,"bikeId":"597","endDate":1423394400,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1423394040,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41067252","duration":1140,"bikeId":"9776","endDate":1423395360,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1423394220,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"41067316","duration":1620,"bikeId":"11449","endDate":1423396020,"endStationId":"774","endStationName":"Hurlingham Park, Parsons Green","startDate":1423394400,"startStationId":"765","startStationName":"Ranelagh Gardens, Fulham"}, +{"_id":"41067398","duration":1560,"bikeId":"8716","endDate":1423396200,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1423394640,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"41067461","duration":1560,"bikeId":"7857","endDate":1423396380,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1423394820,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41067523","duration":6840,"bikeId":"4529","endDate":1423401840,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1423395000,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"41067616","duration":1320,"bikeId":"12868","endDate":1423396560,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1423395240,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41067655","duration":6060,"bikeId":"10874","endDate":1423401420,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423395360,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41067734","duration":4140,"bikeId":"2474","endDate":1423399680,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1423395540,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41067810","duration":7080,"bikeId":"3708","endDate":1423402800,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1423395720,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"41067893","duration":1140,"bikeId":"6466","endDate":1423397040,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1423395900,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41067979","duration":240,"bikeId":"5974","endDate":1423396380,"endStationId":"181","endStationName":"Belgrave Square, Belgravia","startDate":1423396140,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41068018","duration":2340,"bikeId":"10432","endDate":1423398600,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1423396260,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"41068111","duration":1200,"bikeId":"156","endDate":1423397640,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1423396440,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41068176","duration":1980,"bikeId":"6569","endDate":1423398600,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423396620,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41068258","duration":480,"bikeId":"7759","endDate":1423397340,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1423396860,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"41068328","duration":840,"bikeId":"9016","endDate":1423397880,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1423397040,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"41068387","duration":960,"bikeId":"5987","endDate":1423398180,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1423397220,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"41068480","duration":900,"bikeId":"3472","endDate":1423398300,"endStationId":"543","endStationName":"Lansdowne Walk, Notting Hill","startDate":1423397400,"startStationId":"660","startStationName":"West Kensington Station, West Kensington"}, +{"_id":"41068530","duration":480,"bikeId":"7342","endDate":1423398060,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1423397580,"startStationId":"176","startStationName":"Gloucester Terrace, Bayswater"}, +{"_id":"41068576","duration":2520,"bikeId":"11345","endDate":1423400220,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423397700,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41068655","duration":1200,"bikeId":"5034","endDate":1423399080,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1423397880,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"41068740","duration":180,"bikeId":"1908","endDate":1423398240,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1423398060,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"41068805","duration":2640,"bikeId":"13045","endDate":1423400820,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1423398180,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41068877","duration":1260,"bikeId":"4388","endDate":1423399620,"endStationId":"366","endStationName":"Millennium Hotel, Mayfair","startDate":1423398360,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41068955","duration":1620,"bikeId":"8936","endDate":1423400100,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1423398480,"startStationId":"521","startStationName":"Driffield Road, Old Ford"}, +{"_id":"41069028","duration":600,"bikeId":"2512","endDate":1423399260,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1423398660,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41069087","duration":840,"bikeId":"12479","endDate":1423399680,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1423398840,"startStationId":"725","startStationName":"Thessaly Road North, Nine Elms"}, +{"_id":"41069151","duration":1920,"bikeId":"6213","endDate":1423400880,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1423398960,"startStationId":"470","startStationName":"Mostyn Grove, Bow"}, +{"_id":"41069233","duration":780,"bikeId":"3375","endDate":1423399920,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423399140,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"41069294","duration":1740,"bikeId":"4583","endDate":1423401060,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1423399320,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"41069375","duration":660,"bikeId":"1928","endDate":1423400160,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1423399500,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41069435","duration":660,"bikeId":"2629","endDate":1423400280,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1423399620,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41069498","duration":960,"bikeId":"3811","endDate":1423400700,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1423399740,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41069568","duration":1740,"bikeId":"7114","endDate":1423401600,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423399860,"startStationId":"713","startStationName":"Hawley Crescent, Camden Town"}, +{"_id":"41069628","duration":1740,"bikeId":"2511","endDate":1423401720,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1423399980,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"41069685","duration":1500,"bikeId":"1800","endDate":1423401600,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1423400100,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"41069744","duration":4920,"bikeId":"6977","endDate":1423405140,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1423400220,"startStationId":"547","startStationName":"East India DLR, Blackwall"}, +{"_id":"41069841","duration":780,"bikeId":"2017","endDate":1423401180,"endStationId":"612","endStationName":"Wandsworth Rd, Isley Court, Wandsworth Road","startDate":1423400400,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"41069894","duration":65040,"bikeId":"1151","endDate":1423465560,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423400520,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"41069977","duration":780,"bikeId":"8740","endDate":1423401480,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423400700,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41070042","duration":900,"bikeId":"430","endDate":1423401780,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1423400880,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41070114","duration":1080,"bikeId":"4742","endDate":1423402140,"endStationId":"700","endStationName":"Battersea Church Road, Battersea","startDate":1423401060,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41070161","duration":1920,"bikeId":"6024","endDate":1423403100,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1423401180,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41070252","duration":1320,"bikeId":"8392","endDate":1423402680,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1423401360,"startStationId":"692","startStationName":"Cadogan Close, Victoria Park"}, +{"_id":"41070317","duration":1380,"bikeId":"3632","endDate":1423402860,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1423401480,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41070388","duration":1980,"bikeId":"4969","endDate":1423403580,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1423401600,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"41070455","duration":840,"bikeId":"4193","endDate":1423402620,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1423401780,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"41070513","duration":2940,"bikeId":"4801","endDate":1423404840,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423401900,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41070574","duration":6060,"bikeId":"9976","endDate":1423408080,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423402020,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41070658","duration":1260,"bikeId":"9820","endDate":1423403400,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1423402140,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41070731","duration":1680,"bikeId":"10968","endDate":1423403940,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423402260,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41070805","duration":2040,"bikeId":"7580","endDate":1423404420,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1423402380,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41070877","duration":120,"bikeId":"12034","endDate":1423402680,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1423402560,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41070943","duration":2100,"bikeId":"11868","endDate":1423404720,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1423402620,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41071021","duration":420,"bikeId":"6521","endDate":1423403220,"endStationId":"355","endStationName":"Oval Way, Lambeth","startDate":1423402800,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"41071081","duration":600,"bikeId":"11542","endDate":1423403520,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423402920,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41071155","duration":1080,"bikeId":"3865","endDate":1423404120,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1423403040,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41071239","duration":780,"bikeId":"10447","endDate":1423404000,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1423403220,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"41071279","duration":1320,"bikeId":"4942","endDate":1423404660,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1423403340,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41071367","duration":2160,"bikeId":"11943","endDate":1423405620,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423403460,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41071447","duration":2040,"bikeId":"11524","endDate":1423405620,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1423403580,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41071509","duration":720,"bikeId":"12775","endDate":1423404480,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1423403760,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41071581","duration":900,"bikeId":"5046","endDate":1423404780,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1423403880,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"41071641","duration":1620,"bikeId":"4895","endDate":1423405620,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1423404000,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41071740","duration":600,"bikeId":"5688","endDate":1423404720,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1423404120,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"41071769","duration":7080,"bikeId":"12226","endDate":1423411260,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423404180,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41071847","duration":1260,"bikeId":"4687","endDate":1423405560,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1423404300,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41071905","duration":1500,"bikeId":"12419","endDate":1423405920,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1423404420,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41071986","duration":1560,"bikeId":"9540","endDate":1423406100,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423404540,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"41072072","duration":1320,"bikeId":"12069","endDate":1423405980,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1423404660,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"41072159","duration":420,"bikeId":"6673","endDate":1423405260,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423404840,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41072190","duration":1440,"bikeId":"8720","endDate":1423406400,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1423404960,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41072303","duration":720,"bikeId":"2388","endDate":1423405860,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1423405140,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41072315","duration":8700,"bikeId":"8030","endDate":1423413900,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1423405200,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"41072415","duration":3240,"bikeId":"9697","endDate":1423408560,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1423405320,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"41072483","duration":780,"bikeId":"11218","endDate":1423406280,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1423405500,"startStationId":"523","startStationName":"Langdon Park, Poplar"}, +{"_id":"41072555","duration":600,"bikeId":"2563","endDate":1423406220,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1423405620,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"41072633","duration":1080,"bikeId":"1243","endDate":1423406820,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423405740,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"41072674","duration":2400,"bikeId":"3304","endDate":1423408260,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423405860,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"41072759","duration":2340,"bikeId":"4690","endDate":1423408320,"endStationId":"548","endStationName":"Westminster Bridge Road, Elephant & Castle","startDate":1423405980,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41072826","duration":2040,"bikeId":"8053","endDate":1423408140,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1423406100,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"41072902","duration":2460,"bikeId":"5978","endDate":1423408680,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1423406220,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"41072983","duration":5400,"bikeId":"608","endDate":1423411740,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423406340,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41073059","duration":540,"bikeId":"3523","endDate":1423407060,"endStationId":"690","endStationName":"Stanley Grove, Battersea","startDate":1423406520,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"41073121","duration":420,"bikeId":"8706","endDate":1423407060,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1423406640,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41073179","duration":2280,"bikeId":"3603","endDate":1423409040,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423406760,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"41073253","duration":1740,"bikeId":"3548","endDate":1423408620,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423406880,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41073322","duration":1020,"bikeId":"7668","endDate":1423408080,"endStationId":"598","endStationName":"Southerton Road, Hammersmith","startDate":1423407060,"startStationId":"598","startStationName":"Southerton Road, Hammersmith"}, +{"_id":"41073394","duration":840,"bikeId":"10675","endDate":1423408020,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423407180,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41073473","duration":240,"bikeId":"7048","endDate":1423407540,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423407300,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"41073539","duration":540,"bikeId":"8648","endDate":1423407960,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1423407420,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41073613","duration":1380,"bikeId":"5138","endDate":1423408920,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423407540,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41073656","duration":1140,"bikeId":"3886","endDate":1423408800,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1423407660,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"41073752","duration":1020,"bikeId":"4160","endDate":1423408800,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1423407780,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"41073817","duration":3060,"bikeId":"2002","endDate":1423410960,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1423407900,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41073887","duration":1980,"bikeId":"7619","endDate":1423410000,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1423408020,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41073965","duration":420,"bikeId":"9136","endDate":1423408620,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1423408200,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"41073992","duration":5160,"bikeId":"5838","endDate":1423413420,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1423408260,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41074071","duration":1680,"bikeId":"1826","endDate":1423410120,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1423408440,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41074134","duration":9600,"bikeId":"11897","endDate":1423418160,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1423408560,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41074223","duration":1620,"bikeId":"9628","endDate":1423410300,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1423408680,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41074286","duration":900,"bikeId":"7145","endDate":1423409760,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1423408860,"startStationId":"559","startStationName":"Abbotsbury Road, Holland Park"}, +{"_id":"41074356","duration":3120,"bikeId":"638","endDate":1423412100,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1423408980,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41074421","duration":480,"bikeId":"9370","endDate":1423409640,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1423409160,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41074521","duration":840,"bikeId":"6518","endDate":1423410120,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423409280,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41074583","duration":2580,"bikeId":"6853","endDate":1423411920,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1423409340,"startStationId":"315","startStationName":"The Tennis Courts, Regent's Park"}, +{"_id":"41074657","duration":300,"bikeId":"1777","endDate":1423409820,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1423409520,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41074718","duration":180,"bikeId":"2800","endDate":1423409820,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1423409640,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41074760","duration":7500,"bikeId":"9828","endDate":1423417260,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423409760,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41074841","duration":1500,"bikeId":"10278","endDate":1423411380,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1423409880,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"41074904","duration":4080,"bikeId":"12029","endDate":1423414080,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1423410000,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41075021","duration":600,"bikeId":"554","endDate":1423410780,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1423410180,"startStationId":"611","startStationName":"Princedale Road , Holland Park"}, +{"_id":"41075042","duration":3060,"bikeId":"12793","endDate":1423413300,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1423410240,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"41075147","duration":2400,"bikeId":"5027","endDate":1423412760,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1423410360,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41075217","duration":600,"bikeId":"743","endDate":1423411140,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1423410540,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"41075264","duration":1320,"bikeId":"8866","endDate":1423411980,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1423410660,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"41075365","duration":540,"bikeId":"10749","endDate":1423411380,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1423410840,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41075423","duration":960,"bikeId":"9681","endDate":1423411920,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1423410960,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"41075496","duration":1680,"bikeId":"2876","endDate":1423412760,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423411080,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41075550","duration":1020,"bikeId":"8440","endDate":1423412220,"endStationId":"365","endStationName":"City Road, Angel","startDate":1423411200,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41075656","duration":120,"bikeId":"6424","endDate":1423411500,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1423411380,"startStationId":"543","startStationName":"Lansdowne Walk, Notting Hill"}, +{"_id":"41075702","duration":1560,"bikeId":"5489","endDate":1423413060,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1423411500,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"41075764","duration":600,"bikeId":"10837","endDate":1423412280,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423411680,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41075845","duration":300,"bikeId":"1006","endDate":1423412160,"endStationId":"775","endStationName":"Little Brook Green, Brook Green","startDate":1423411860,"startStationId":"647","startStationName":"Richmond Way, Shepherd's Bush"}, +{"_id":"41075898","duration":840,"bikeId":"9818","endDate":1423412820,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1423411980,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"41075966","duration":2580,"bikeId":"10784","endDate":1423414620,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1423412040,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"41076037","duration":1140,"bikeId":"6994","endDate":1423413300,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1423412160,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41076109","duration":1740,"bikeId":"1801","endDate":1423414080,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423412340,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41076199","duration":360,"bikeId":"5806","endDate":1423412880,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1423412520,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"41076263","duration":540,"bikeId":"8386","endDate":1423413180,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1423412640,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"41076318","duration":1500,"bikeId":"8448","endDate":1423414260,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423412760,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41076372","duration":1140,"bikeId":"10543","endDate":1423414080,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423412940,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41076462","duration":240,"bikeId":"8545","endDate":1423413360,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1423413120,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"41076523","duration":960,"bikeId":"6095","endDate":1423414200,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1423413240,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41076571","duration":2100,"bikeId":"8135","endDate":1423415460,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423413360,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"41076651","duration":1200,"bikeId":"2264","endDate":1423414740,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423413540,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"41076723","duration":1620,"bikeId":"8848","endDate":1423415280,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423413660,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"41076806","duration":420,"bikeId":"7717","endDate":1423414260,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1423413840,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"41076869","duration":1320,"bikeId":"3861","endDate":1423415340,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1423414020,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"41076942","duration":600,"bikeId":"3035","endDate":1423414800,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1423414200,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41077027","duration":360,"bikeId":"10146","endDate":1423414740,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423414380,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"41077057","duration":6300,"bikeId":"6384","endDate":1423420800,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1423414500,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"41077151","duration":1380,"bikeId":"10939","endDate":1423416060,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1423414680,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41077230","duration":240,"bikeId":"12809","endDate":1423415160,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1423414920,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41077277","duration":1560,"bikeId":"1287","endDate":1423416600,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1423415040,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41077350","duration":780,"bikeId":"1166","endDate":1423416000,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423415220,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41077406","duration":1920,"bikeId":"11734","endDate":1423417260,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1423415340,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41077489","duration":900,"bikeId":"2401","endDate":1423416420,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423415520,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41077577","duration":360,"bikeId":"10545","endDate":1423416120,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1423415760,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41077639","duration":1860,"bikeId":"4846","endDate":1423417740,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1423415880,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41077692","duration":2820,"bikeId":"1291","endDate":1423418880,"endStationId":"777","endStationName":"Limburg Road, Clapham Common","startDate":1423416060,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"41077767","duration":1260,"bikeId":"2622","endDate":1423417560,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1423416300,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41077842","duration":120,"bikeId":"5837","endDate":1423416660,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1423416540,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41077904","duration":5640,"bikeId":"10781","endDate":1423422300,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1423416660,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"41077990","duration":960,"bikeId":"2905","endDate":1423417860,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1423416900,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41078053","duration":480,"bikeId":"1547","endDate":1423417560,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1423417080,"startStationId":"560","startStationName":"Ladbroke Grove Central, Notting Hill"}, +{"_id":"41078116","duration":1680,"bikeId":"10185","endDate":1423419000,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1423417320,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"41078194","duration":1320,"bikeId":"11163","endDate":1423418880,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1423417560,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"41078244","duration":900,"bikeId":"7608","endDate":1423418700,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1423417800,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"41078322","duration":300,"bikeId":"58","endDate":1423418460,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1423418160,"startStationId":"759","startStationName":"Broadley Terrace, Marylebone"}, +{"_id":"41078391","duration":180,"bikeId":"671","endDate":1423418640,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1423418460,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"41078461","duration":1380,"bikeId":"12501","endDate":1423420020,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1423418640,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41078522","duration":720,"bikeId":"1904","endDate":1423419600,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1423418880,"startStationId":"543","startStationName":"Lansdowne Walk, Notting Hill"}, +{"_id":"41078592","duration":1920,"bikeId":"3948","endDate":1423421100,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423419180,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"41078659","duration":1680,"bikeId":"11482","endDate":1423421160,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1423419480,"startStationId":"402","startStationName":"Penfold Street, Marylebone"}, +{"_id":"41078713","duration":12120,"bikeId":"10983","endDate":1423431840,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423419720,"startStationId":"238","startStationName":"Frampton Street, Paddington"}, +{"_id":"41078803","duration":720,"bikeId":"5723","endDate":1423420800,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1423420080,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"41078872","duration":240,"bikeId":"12587","endDate":1423420620,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1423420380,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41078939","duration":1140,"bikeId":"3886","endDate":1423421760,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423420620,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41079004","duration":1140,"bikeId":"3483","endDate":1423422060,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1423420920,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"41079080","duration":420,"bikeId":"4398","endDate":1423421640,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1423421220,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41079141","duration":180,"bikeId":"12574","endDate":1423421700,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1423421520,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41079204","duration":600,"bikeId":"9648","endDate":1423422420,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1423421820,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"41079258","duration":2040,"bikeId":"2922","endDate":1423424220,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1423422180,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41079338","duration":1380,"bikeId":"501","endDate":1423423860,"endStationId":"698","endStationName":"Shoreditch Court, Haggerston","startDate":1423422480,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41079404","duration":540,"bikeId":"11999","endDate":1423423380,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1423422840,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"41079463","duration":2100,"bikeId":"1644","endDate":1423425300,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1423423200,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41079537","duration":360,"bikeId":"3431","endDate":1423424160,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423423800,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41079614","duration":240,"bikeId":"5009","endDate":1423424580,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1423424340,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41079676","duration":1140,"bikeId":"9628","endDate":1423425960,"endStationId":"634","endStationName":"Brook Green South, Brook Green","startDate":1423424820,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"41079742","duration":600,"bikeId":"5138","endDate":1423426020,"endStationId":"365","endStationName":"City Road, Angel","startDate":1423425420,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41079812","duration":1200,"bikeId":"4993","endDate":1423427160,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1423425960,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"41079888","duration":1560,"bikeId":"450","endDate":1423428000,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1423426440,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41079951","duration":540,"bikeId":"6706","endDate":1423427580,"endStationId":"588","endStationName":"Hoxton Street, Hoxton","startDate":1423427040,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"41080024","duration":600,"bikeId":"8392","endDate":1423428300,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1423427700,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41080098","duration":300,"bikeId":"11390","endDate":1423428780,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1423428480,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"41080159","duration":600,"bikeId":"12015","endDate":1423429560,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423428960,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"41080228","duration":600,"bikeId":"11163","endDate":1423430160,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423429560,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41080291","duration":420,"bikeId":"5004","endDate":1423430580,"endStationId":"487","endStationName":"Canton Street, Poplar","startDate":1423430160,"startStationId":"556","startStationName":"Heron Quays DLR, Canary Wharf"}, +{"_id":"41080355","duration":1200,"bikeId":"8677","endDate":1423431960,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1423430760,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41080426","duration":900,"bikeId":"8565","endDate":1423432500,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423431600,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41080487","duration":540,"bikeId":"8059","endDate":1423432860,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1423432320,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"41080553","duration":1920,"bikeId":"8505","endDate":1423435080,"endStationId":"355","endStationName":"Oval Way, Lambeth","startDate":1423433160,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"41080627","duration":720,"bikeId":"423","endDate":1423434600,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1423433880,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"41080696","duration":720,"bikeId":"5617","endDate":1423435680,"endStationId":"249","endStationName":"Harper Road, Borough","startDate":1423434960,"startStationId":"139","startStationName":"Lambeth Road, Vauxhall"}, +{"_id":"41080766","duration":180,"bikeId":"6259","endDate":1423436040,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1423435860,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41080827","duration":1020,"bikeId":"12779","endDate":1423437900,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1423436880,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41080896","duration":240,"bikeId":"10937","endDate":1423438200,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1423437960,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41080967","duration":1200,"bikeId":"12571","endDate":1423440720,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1423439520,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"41081036","duration":1080,"bikeId":"3892","endDate":1423441920,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1423440840,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"41081101","duration":840,"bikeId":"789","endDate":1423443720,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423442880,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41081170","duration":420,"bikeId":"2214","endDate":1423447380,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1423446960,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41081237","duration":480,"bikeId":"3865","endDate":1423456320,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1423455840,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"41081304","duration":180,"bikeId":"3065","endDate":1423460100,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1423459920,"startStationId":"725","startStationName":"Thessaly Road North, Nine Elms"}, +{"_id":"41081373","duration":660,"bikeId":"7601","endDate":1423462680,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423462020,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41081439","duration":360,"bikeId":"5399","endDate":1423463220,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423462860,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41081508","duration":660,"bikeId":"5835","endDate":1423464120,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423463460,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41081574","duration":300,"bikeId":"11512","endDate":1423464240,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1423463940,"startStationId":"599","startStationName":"Manbre Road, Hammersmith"}, +{"_id":"41081632","duration":1080,"bikeId":"6851","endDate":1423465320,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1423464240,"startStationId":"600","startStationName":"South Lambeth Road, Vauxhall"}, +{"_id":"41081704","duration":1320,"bikeId":"10879","endDate":1423465860,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1423464540,"startStationId":"515","startStationName":"Russell Gardens, Holland Park"}, +{"_id":"41081767","duration":780,"bikeId":"8110","endDate":1423465620,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423464840,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41081836","duration":720,"bikeId":"9785","endDate":1423465800,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1423465080,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41081909","duration":240,"bikeId":"6793","endDate":1423465620,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1423465380,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41081965","duration":900,"bikeId":"6417","endDate":1423466520,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423465620,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41082024","duration":780,"bikeId":"2666","endDate":1423466580,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1423465800,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"41082089","duration":1080,"bikeId":"7282","endDate":1423467060,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423465980,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41082179","duration":420,"bikeId":"7477","endDate":1423466640,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1423466220,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41082235","duration":1680,"bikeId":"6487","endDate":1423468020,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423466340,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41082312","duration":540,"bikeId":"7960","endDate":1423467060,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423466520,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"41082364","duration":660,"bikeId":"58","endDate":1423467360,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1423466700,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"41082450","duration":540,"bikeId":"9250","endDate":1423467420,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1423466880,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41082498","duration":660,"bikeId":"998","endDate":1423467660,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1423467000,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"41082566","duration":840,"bikeId":"9065","endDate":1423467960,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423467120,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41082633","duration":600,"bikeId":"3441","endDate":1423467840,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1423467240,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41082698","duration":600,"bikeId":"6786","endDate":1423467960,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1423467360,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41082751","duration":1560,"bikeId":"1308","endDate":1423468980,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423467420,"startStationId":"750","startStationName":"Culvert Road, Battersea"}, +{"_id":"41082823","duration":1320,"bikeId":"11474","endDate":1423468860,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423467540,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41082879","duration":780,"bikeId":"2461","endDate":1423468440,"endStationId":"423","endStationName":"Eaton Square (South), Belgravia","startDate":1423467660,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"41082962","duration":360,"bikeId":"352","endDate":1423468140,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1423467780,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"41083049","duration":300,"bikeId":"1483","endDate":1423468200,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1423467900,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"41083087","duration":1140,"bikeId":"4035","endDate":1423469100,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1423467960,"startStationId":"375","startStationName":"Kensington Town Hall, Kensington"}, +{"_id":"41083139","duration":840,"bikeId":"4603","endDate":1423468920,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1423468080,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"41083245","duration":480,"bikeId":"12163","endDate":1423468680,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1423468200,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41083283","duration":840,"bikeId":"4097","endDate":1423469100,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1423468260,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"41083357","duration":660,"bikeId":"8932","endDate":1423469040,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1423468380,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41083429","duration":180,"bikeId":"5878","endDate":1423468680,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1423468500,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41083468","duration":720,"bikeId":"4500","endDate":1423469280,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1423468560,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41083550","duration":240,"bikeId":"10601","endDate":1423468920,"endStationId":"103","endStationName":"Vicarage Gate, Kensington","startDate":1423468680,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"41083615","duration":720,"bikeId":"11906","endDate":1423469460,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423468740,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41083668","duration":1260,"bikeId":"11696","endDate":1423470060,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1423468800,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41083727","duration":480,"bikeId":"11915","endDate":1423469400,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1423468920,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41083783","duration":720,"bikeId":"3675","endDate":1423469700,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1423468980,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41083875","duration":1680,"bikeId":"6666","endDate":1423470720,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1423469040,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"41083970","duration":360,"bikeId":"3385","endDate":1423469520,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1423469160,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41084040","duration":480,"bikeId":"3271","endDate":1423469700,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1423469220,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41084072","duration":780,"bikeId":"8761","endDate":1423470060,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1423469280,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41084103","duration":1020,"bikeId":"3307","endDate":1423470360,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1423469340,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"41084219","duration":60,"bikeId":"9229","endDate":1423469520,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1423469460,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"41084314","duration":480,"bikeId":"282","endDate":1423470000,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1423469520,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41084354","duration":480,"bikeId":"12786","endDate":1423470060,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423469580,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41084391","duration":780,"bikeId":"4474","endDate":1423470420,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1423469640,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41084438","duration":1020,"bikeId":"10587","endDate":1423470720,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1423469700,"startStationId":"647","startStationName":"Richmond Way, Shepherd's Bush"}, +{"_id":"41084537","duration":1080,"bikeId":"6300","endDate":1423470840,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1423469760,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41084628","duration":960,"bikeId":"9755","endDate":1423470780,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1423469820,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41084664","duration":960,"bikeId":"12116","endDate":1423470840,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1423469880,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"41084775","duration":120,"bikeId":"1610","endDate":1423470120,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1423470000,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41084841","duration":240,"bikeId":"12454","endDate":1423470300,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1423470060,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"41084926","duration":300,"bikeId":"5498","endDate":1423470420,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1423470120,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41084972","duration":180,"bikeId":"11097","endDate":1423470360,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423470180,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41085011","duration":360,"bikeId":"12379","endDate":1423470600,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423470240,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41085121","duration":420,"bikeId":"3483","endDate":1423470720,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1423470300,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41085143","duration":540,"bikeId":"9043","endDate":1423470900,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1423470360,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41085255","duration":600,"bikeId":"907","endDate":1423471020,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423470420,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41085331","duration":540,"bikeId":"1496","endDate":1423471020,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1423470480,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41085366","duration":660,"bikeId":"3954","endDate":1423471200,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423470540,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41085441","duration":960,"bikeId":"3571","endDate":1423471560,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1423470600,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41085507","duration":1020,"bikeId":"10539","endDate":1423471680,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1423470660,"startStationId":"606","startStationName":"Addison Road, Holland Park"}, +{"_id":"41085558","duration":660,"bikeId":"7053","endDate":1423471380,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423470720,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41085614","duration":540,"bikeId":"11501","endDate":1423471320,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1423470780,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"41085736","duration":540,"bikeId":"8008","endDate":1423471380,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1423470840,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"41085742","duration":540,"bikeId":"11256","endDate":1423471440,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423470900,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41085839","duration":240,"bikeId":"3889","endDate":1423471200,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423470960,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"41085881","duration":1320,"bikeId":"7330","endDate":1423472280,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1423470960,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"41085905","duration":1320,"bikeId":"11518","endDate":1423472340,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1423471020,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"41086034","duration":1260,"bikeId":"1984","endDate":1423472340,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1423471080,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41086100","duration":960,"bikeId":"1677","endDate":1423472100,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1423471140,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41086140","duration":840,"bikeId":"12574","endDate":1423472040,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1423471200,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"41086231","duration":600,"bikeId":"2090","endDate":1423471860,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1423471260,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41086357","duration":300,"bikeId":"5015","endDate":1423471620,"endStationId":"236","endStationName":"Fashion Street, Whitechapel","startDate":1423471320,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41086348","duration":1140,"bikeId":"11894","endDate":1423472460,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423471320,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41086383","duration":900,"bikeId":"7361","endDate":1423472280,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1423471380,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41086500","duration":840,"bikeId":"6114","endDate":1423472280,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1423471440,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"41086581","duration":900,"bikeId":"12304","endDate":1423472400,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1423471500,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41086645","duration":900,"bikeId":"7029","endDate":1423472460,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1423471560,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41086708","duration":900,"bikeId":"3055","endDate":1423472520,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1423471620,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41086742","duration":780,"bikeId":"9717","endDate":1423472460,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423471680,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41086852","duration":720,"bikeId":"102","endDate":1423472460,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1423471740,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41086934","duration":660,"bikeId":"6178","endDate":1423472460,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423471800,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"41086965","duration":480,"bikeId":"13055","endDate":1423472340,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1423471860,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41087089","duration":480,"bikeId":"5577","endDate":1423472400,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1423471920,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"41087141","duration":300,"bikeId":"6233","endDate":1423472280,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423471980,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41087214","duration":360,"bikeId":"9668","endDate":1423472400,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1423472040,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41087271","duration":180,"bikeId":"12311","endDate":1423472280,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1423472100,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41087337","duration":180,"bikeId":"10239","endDate":1423472340,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1423472160,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"41087415","duration":360,"bikeId":"8731","endDate":1423472580,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1423472220,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41087430","duration":540,"bikeId":"7992","endDate":1423472820,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1423472280,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"41087516","duration":780,"bikeId":"10937","endDate":1423473120,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1423472340,"startStationId":"624","startStationName":"Courland Grove, Wandsworth Road"}, +{"_id":"41087533","duration":1260,"bikeId":"6929","endDate":1423473660,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423472400,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41087661","duration":300,"bikeId":"3465","endDate":1423472820,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1423472520,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"41087683","duration":780,"bikeId":"2824","endDate":1423473360,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423472580,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41087787","duration":1200,"bikeId":"6233","endDate":1423473840,"endStationId":"236","endStationName":"Fashion Street, Whitechapel","startDate":1423472640,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41087867","duration":180,"bikeId":"10837","endDate":1423472940,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1423472760,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"41087937","duration":420,"bikeId":"10868","endDate":1423473240,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1423472820,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41087985","duration":120,"bikeId":"6791","endDate":1423473060,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1423472940,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"41088059","duration":780,"bikeId":"9789","endDate":1423473780,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1423473000,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41088111","duration":480,"bikeId":"12345","endDate":1423473600,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1423473120,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"41088182","duration":240,"bikeId":"12684","endDate":1423473480,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1423473240,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"41088244","duration":300,"bikeId":"9100","endDate":1423473660,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423473360,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41088307","duration":900,"bikeId":"149","endDate":1423474320,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1423473420,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41088399","duration":960,"bikeId":"11800","endDate":1423474500,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1423473540,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41088440","duration":780,"bikeId":"800","endDate":1423474440,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1423473660,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"41088501","duration":960,"bikeId":"10228","endDate":1423474740,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423473780,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41088628","duration":360,"bikeId":"1793","endDate":1423474320,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1423473960,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41088660","duration":720,"bikeId":"3313","endDate":1423474800,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1423474080,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41088747","duration":300,"bikeId":"7619","endDate":1423474560,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1423474260,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41088793","duration":720,"bikeId":"1556","endDate":1423475160,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1423474440,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"41088847","duration":1020,"bikeId":"4843","endDate":1423475580,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1423474560,"startStationId":"468","startStationName":"Cantrell Road, Bow"}, +{"_id":"41088935","duration":600,"bikeId":"1209","endDate":1423475340,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1423474740,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"41088999","duration":360,"bikeId":"5575","endDate":1423475280,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1423474920,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41089072","duration":900,"bikeId":"11464","endDate":1423475940,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423475040,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41089132","duration":900,"bikeId":"2520","endDate":1423476120,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1423475220,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41089206","duration":1620,"bikeId":"9226","endDate":1423477020,"endStationId":"366","endStationName":"Millennium Hotel, Mayfair","startDate":1423475400,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41089284","duration":1200,"bikeId":"6861","endDate":1423476840,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1423475640,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"41089363","duration":300,"bikeId":"11128","endDate":1423476180,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1423475880,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"41089402","duration":1320,"bikeId":"318","endDate":1423477380,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423476060,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41089483","duration":900,"bikeId":"912","endDate":1423477260,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1423476360,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41089554","duration":780,"bikeId":"7947","endDate":1423477440,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423476660,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41089627","duration":360,"bikeId":"5256","endDate":1423477260,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1423476900,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"41089688","duration":420,"bikeId":"2586","endDate":1423477620,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1423477200,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"41089764","duration":240,"bikeId":"11827","endDate":1423477800,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1423477560,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41089834","duration":720,"bikeId":"3593","endDate":1423478580,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1423477860,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41089902","duration":180,"bikeId":"1778","endDate":1423478400,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1423478220,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"41089975","duration":360,"bikeId":"5771","endDate":1423478880,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1423478520,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41090048","duration":360,"bikeId":"3042","endDate":1423479240,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423478880,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"41090093","duration":780,"bikeId":"12717","endDate":1423479900,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423479120,"startStationId":"521","startStationName":"Driffield Road, Old Ford"}, +{"_id":"41090171","duration":840,"bikeId":"6186","endDate":1423480260,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423479420,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"41090240","duration":2280,"bikeId":"799","endDate":1423481940,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423479660,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"41090323","duration":480,"bikeId":"4695","endDate":1423480440,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1423479960,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"41090397","duration":180,"bikeId":"7613","endDate":1423480500,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1423480320,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41090459","duration":480,"bikeId":"5718","endDate":1423481100,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1423480620,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41090515","duration":900,"bikeId":"3051","endDate":1423481760,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423480860,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41090591","duration":720,"bikeId":"8466","endDate":1423481940,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1423481220,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41090671","duration":360,"bikeId":"9287","endDate":1423481940,"endStationId":"117","endStationName":"Lollard Street, Vauxhall","startDate":1423481580,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41090733","duration":1860,"bikeId":"3716","endDate":1423483740,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1423481880,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41090793","duration":960,"bikeId":"1294","endDate":1423483140,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1423482180,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"41090876","duration":660,"bikeId":"8989","endDate":1423483200,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1423482540,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41090929","duration":2220,"bikeId":"8959","endDate":1423485060,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1423482840,"startStationId":"151","startStationName":"Chepstow Villas, Notting Hill"}, +{"_id":"41091002","duration":1860,"bikeId":"6053","endDate":1423485000,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1423483140,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41091068","duration":540,"bikeId":"12450","endDate":1423483980,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1423483440,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41091160","duration":660,"bikeId":"6460","endDate":1423484280,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423483620,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41091210","duration":1620,"bikeId":"12816","endDate":1423485420,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1423483800,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41091292","duration":180,"bikeId":"8769","endDate":1423484280,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1423484100,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"41091363","duration":540,"bikeId":"10036","endDate":1423484820,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423484280,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41091433","duration":1140,"bikeId":"8907","endDate":1423485660,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1423484520,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41091483","duration":1800,"bikeId":"2419","endDate":1423486560,"endStationId":"611","endStationName":"Princedale Road , Holland Park","startDate":1423484760,"startStationId":"667","startStationName":"Shepherd's Bush Road North, Shepherd's Bush"}, +{"_id":"41091561","duration":360,"bikeId":"9187","endDate":1423485420,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1423485060,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41091628","duration":4320,"bikeId":"3343","endDate":1423489620,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1423485300,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41091693","duration":660,"bikeId":"10321","endDate":1423486260,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1423485600,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"41091770","duration":600,"bikeId":"3402","endDate":1423486440,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1423485840,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"41091828","duration":720,"bikeId":"789","endDate":1423486740,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1423486020,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41091910","duration":420,"bikeId":"9235","endDate":1423486620,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1423486200,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"41091982","duration":120,"bikeId":"8178","endDate":1423486560,"endStationId":"771","endStationName":"Rifle Place, Avondale","startDate":1423486440,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"41092040","duration":540,"bikeId":"8737","endDate":1423487220,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1423486680,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"41092102","duration":780,"bikeId":"9372","endDate":1423487700,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1423486920,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41092184","duration":300,"bikeId":"7269","endDate":1423487460,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1423487160,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41092241","duration":420,"bikeId":"8970","endDate":1423487760,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1423487340,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41092297","duration":5460,"bikeId":"1138","endDate":1423492980,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423487520,"startStationId":"222","startStationName":"Knightsbridge, Hyde Park"}, +{"_id":"41092366","duration":660,"bikeId":"2344","endDate":1423488420,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423487760,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41092443","duration":1920,"bikeId":"6344","endDate":1423489860,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1423487940,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41092496","duration":780,"bikeId":"7546","endDate":1423488960,"endStationId":"776","endStationName":"Abyssinia Close, Clapham Junction","startDate":1423488180,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"41092586","duration":300,"bikeId":"3379","endDate":1423488720,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1423488420,"startStationId":"384","startStationName":"Marloes Road, Kensington"}, +{"_id":"41092645","duration":540,"bikeId":"3496","endDate":1423489200,"endStationId":"181","endStationName":"Belgrave Square, Belgravia","startDate":1423488660,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"41092719","duration":300,"bikeId":"7323","endDate":1423489200,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1423488900,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41092783","duration":660,"bikeId":"3806","endDate":1423489800,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1423489140,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41092857","duration":120,"bikeId":"4452","endDate":1423489560,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1423489440,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41092905","duration":420,"bikeId":"6591","endDate":1423490040,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423489620,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41092978","duration":420,"bikeId":"12760","endDate":1423490280,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1423489860,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41093041","duration":480,"bikeId":"2248","endDate":1423490580,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1423490100,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"41093121","duration":300,"bikeId":"12470","endDate":1423490640,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1423490340,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41093177","duration":900,"bikeId":"12760","endDate":1423491420,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423490520,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41093242","duration":840,"bikeId":"2745","endDate":1423491660,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1423490820,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41093325","duration":1020,"bikeId":"662","endDate":1423492020,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1423491000,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41093390","duration":1260,"bikeId":"10505","endDate":1423492500,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1423491240,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41093463","duration":2640,"bikeId":"1545","endDate":1423494060,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1423491420,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41093545","duration":420,"bikeId":"6293","endDate":1423492140,"endStationId":"310","endStationName":"Black Prince Road, Vauxhall","startDate":1423491720,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41093608","duration":5220,"bikeId":"9580","endDate":1423497180,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1423491960,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41093688","duration":180,"bikeId":"5912","endDate":1423492500,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1423492320,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"41093758","duration":300,"bikeId":"9879","endDate":1423492860,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1423492560,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"41093814","duration":1800,"bikeId":"9366","endDate":1423494600,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1423492800,"startStationId":"430","startStationName":"South Parade, Chelsea"}, +{"_id":"41093874","duration":2880,"bikeId":"9052","endDate":1423495920,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423493040,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"41093952","duration":1740,"bikeId":"3817","endDate":1423495020,"endStationId":"640","endStationName":"Silverthorne Road, Battersea","startDate":1423493280,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41094039","duration":480,"bikeId":"5683","endDate":1423494060,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423493580,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41094094","duration":1320,"bikeId":"7430","endDate":1423495080,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1423493760,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41094170","duration":1680,"bikeId":"4011","endDate":1423495740,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423494060,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41094220","duration":1920,"bikeId":"5638","endDate":1423496220,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1423494300,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41094310","duration":600,"bikeId":"4666","endDate":1423495200,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1423494600,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"41094371","duration":840,"bikeId":"7983","endDate":1423495680,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1423494840,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41094458","duration":1380,"bikeId":"8969","endDate":1423496460,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423495080,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41094529","duration":420,"bikeId":"9490","endDate":1423495740,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1423495320,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41094581","duration":600,"bikeId":"12587","endDate":1423496160,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1423495560,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"41094663","duration":1140,"bikeId":"11810","endDate":1423496880,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1423495740,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"41094727","duration":1200,"bikeId":"12793","endDate":1423497180,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423495980,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"41094795","duration":1440,"bikeId":"172","endDate":1423497660,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1423496220,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41094861","duration":1620,"bikeId":"7100","endDate":1423498080,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423496460,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"41094934","duration":660,"bikeId":"871","endDate":1423497360,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1423496700,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"41095009","duration":720,"bikeId":"7454","endDate":1423497660,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423496940,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41095072","duration":300,"bikeId":"7093","endDate":1423497420,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423497120,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41095138","duration":1140,"bikeId":"12179","endDate":1423498500,"endStationId":"257","endStationName":"Westminster University, Marylebone","startDate":1423497360,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41095222","duration":600,"bikeId":"7456","endDate":1423498200,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423497600,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41095273","duration":600,"bikeId":"3517","endDate":1423498380,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423497780,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"41095347","duration":540,"bikeId":"12234","endDate":1423498500,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1423497960,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41095429","duration":480,"bikeId":"2413","endDate":1423498620,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423498140,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41095495","duration":1380,"bikeId":"5989","endDate":1423499640,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423498260,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41095565","duration":780,"bikeId":"2294","endDate":1423499220,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423498440,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41095636","duration":240,"bikeId":"8151","endDate":1423498860,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423498620,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"41095677","duration":1740,"bikeId":"6811","endDate":1423500540,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1423498800,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41095741","duration":1200,"bikeId":"12668","endDate":1423500180,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423498980,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41095827","duration":660,"bikeId":"6328","endDate":1423499820,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423499160,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41095887","duration":480,"bikeId":"10640","endDate":1423499820,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423499340,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41095961","duration":900,"bikeId":"9306","endDate":1423500360,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1423499460,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41096033","duration":480,"bikeId":"9390","endDate":1423500120,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1423499640,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41096083","duration":360,"bikeId":"10732","endDate":1423500120,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423499760,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41096155","duration":720,"bikeId":"4290","endDate":1423500600,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423499880,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41096219","duration":1380,"bikeId":"1734","endDate":1423501380,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1423500000,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41096299","duration":660,"bikeId":"3000","endDate":1423500840,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1423500180,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41096351","duration":360,"bikeId":"2295","endDate":1423500720,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1423500360,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41096419","duration":480,"bikeId":"10345","endDate":1423501020,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423500540,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"41096473","duration":1080,"bikeId":"4197","endDate":1423501740,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1423500660,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41096578","duration":360,"bikeId":"3570","endDate":1423501200,"endStationId":"523","endStationName":"Langdon Park, Poplar","startDate":1423500840,"startStationId":"525","startStationName":"Churchill Place, Canary Wharf"}, +{"_id":"41096661","duration":240,"bikeId":"3919","endDate":1423501260,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423501020,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41096696","duration":540,"bikeId":"11854","endDate":1423501680,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1423501140,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41096790","duration":960,"bikeId":"4038","endDate":1423502220,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1423501260,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41096845","duration":300,"bikeId":"7474","endDate":1423501680,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1423501380,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41096893","duration":600,"bikeId":"717","endDate":1423502040,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423501440,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41096963","duration":1140,"bikeId":"3544","endDate":1423502640,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1423501500,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"41097026","duration":720,"bikeId":"9938","endDate":1423502340,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1423501620,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41097087","duration":1500,"bikeId":"3193","endDate":1423503180,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1423501680,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41097201","duration":480,"bikeId":"7242","endDate":1423502280,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423501800,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41097225","duration":960,"bikeId":"11027","endDate":1423502820,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1423501860,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41097320","duration":360,"bikeId":"9257","endDate":1423502340,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1423501980,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41097383","duration":840,"bikeId":"6799","endDate":1423502880,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423502040,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41097448","duration":1080,"bikeId":"4001","endDate":1423503180,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423502100,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41097527","duration":420,"bikeId":"6069","endDate":1423502640,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1423502220,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41097616","duration":360,"bikeId":"7336","endDate":1423502700,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1423502340,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41097647","duration":720,"bikeId":"11102","endDate":1423503120,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423502400,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41097725","duration":960,"bikeId":"12377","endDate":1423503420,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423502460,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"41097824","duration":300,"bikeId":"10986","endDate":1423502880,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1423502580,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41097862","duration":360,"bikeId":"9358","endDate":1423503060,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423502700,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41097901","duration":2880,"bikeId":"8604","endDate":1423505640,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1423502760,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41097980","duration":660,"bikeId":"5461","endDate":1423503540,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1423502880,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41098039","duration":900,"bikeId":"11376","endDate":1423503840,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423502940,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"41098154","duration":420,"bikeId":"6115","endDate":1423503480,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1423503060,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41098202","duration":780,"bikeId":"11553","endDate":1423503900,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1423503120,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"41098219","duration":1080,"bikeId":"9363","endDate":1423504260,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1423503180,"startStationId":"49","startStationName":"Curzon Street, Mayfair"}, +{"_id":"41098320","duration":1500,"bikeId":"10245","endDate":1423504740,"endStationId":"134","endStationName":"Wapping High Street, Wapping","startDate":1423503240,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41098397","duration":360,"bikeId":"2568","endDate":1423503720,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423503360,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41098475","duration":540,"bikeId":"6463","endDate":1423503960,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423503420,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41098545","duration":420,"bikeId":"11902","endDate":1423503900,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1423503480,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"41098590","duration":600,"bikeId":"7497","endDate":1423504140,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1423503540,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"41098684","duration":660,"bikeId":"12364","endDate":1423504260,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1423503600,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"41098707","duration":780,"bikeId":"6909","endDate":1423504440,"endStationId":"297","endStationName":"Geraldine Street, Elephant & Castle","startDate":1423503660,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41098793","duration":840,"bikeId":"11108","endDate":1423504560,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1423503720,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41098872","duration":1080,"bikeId":"7429","endDate":1423504860,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423503780,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"41098967","duration":420,"bikeId":"7541","endDate":1423504320,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1423503900,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41099002","duration":840,"bikeId":"2047","endDate":1423504800,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1423503960,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41099040","duration":900,"bikeId":"9528","endDate":1423504920,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1423504020,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41099125","duration":1320,"bikeId":"11704","endDate":1423505400,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1423504080,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41099169","duration":1800,"bikeId":"5309","endDate":1423505940,"endStationId":"592","endStationName":"Bishop's Bridge Road East, Bayswater","startDate":1423504140,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41099264","duration":720,"bikeId":"6579","endDate":1423504980,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1423504260,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41099311","duration":1800,"bikeId":"12742","endDate":1423506120,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1423504320,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41099412","duration":480,"bikeId":"9970","endDate":1423504920,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1423504440,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41099444","duration":780,"bikeId":"2301","endDate":1423505280,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423504500,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41099528","duration":840,"bikeId":"5813","endDate":1423505400,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1423504560,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41099574","duration":1200,"bikeId":"7171","endDate":1423505820,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1423504620,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"41099717","duration":240,"bikeId":"2732","endDate":1423504980,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1423504740,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41099748","duration":600,"bikeId":"1261","endDate":1423505400,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423504800,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41099776","duration":1320,"bikeId":"7914","endDate":1423506180,"endStationId":"674","endStationName":"Carnegie Street, King's Cross","startDate":1423504860,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41099884","duration":180,"bikeId":"5554","endDate":1423505160,"endStationId":"588","endStationName":"Hoxton Street, Hoxton","startDate":1423504980,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41099937","duration":360,"bikeId":"9901","endDate":1423505400,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1423505040,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"41100029","duration":720,"bikeId":"3210","endDate":1423505820,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423505100,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41100039","duration":1200,"bikeId":"2006","endDate":1423506360,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1423505160,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41100142","duration":960,"bikeId":"5038","endDate":1423506180,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423505220,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41100202","duration":1200,"bikeId":"4123","endDate":1423506480,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1423505280,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41100251","duration":1740,"bikeId":"8447","endDate":1423507080,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1423505340,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"41100373","duration":360,"bikeId":"11010","endDate":1423505820,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1423505460,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"41100382","duration":540,"bikeId":"319","endDate":1423506060,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1423505520,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"41100456","duration":780,"bikeId":"7062","endDate":1423506360,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1423505580,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41100505","duration":1080,"bikeId":"11991","endDate":1423506720,"endStationId":"761","endStationName":"Humbolt Road, Fulham","startDate":1423505640,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"41100573","duration":1680,"bikeId":"10534","endDate":1423507380,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1423505700,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41100702","duration":420,"bikeId":"12045","endDate":1423506240,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1423505820,"startStationId":"161","startStationName":"Guildhouse Street, Victoria"}, +{"_id":"41100756","duration":720,"bikeId":"12201","endDate":1423506600,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1423505880,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"41100805","duration":480,"bikeId":"10461","endDate":1423506480,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423506000,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41100878","duration":660,"bikeId":"12669","endDate":1423506720,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1423506060,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41100943","duration":1380,"bikeId":"11470","endDate":1423507500,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423506120,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"41101039","duration":420,"bikeId":"6812","endDate":1423506660,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1423506240,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41101079","duration":900,"bikeId":"998","endDate":1423507200,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423506300,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41101148","duration":420,"bikeId":"9624","endDate":1423506840,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1423506420,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"41101210","duration":1200,"bikeId":"2155","endDate":1423507680,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1423506480,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"41101266","duration":660,"bikeId":"6983","endDate":1423507260,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1423506600,"startStationId":"84","startStationName":"Breams Buildings, Holborn"}, +{"_id":"41101371","duration":240,"bikeId":"307","endDate":1423506960,"endStationId":"592","endStationName":"Bishop's Bridge Road East, Bayswater","startDate":1423506720,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41101428","duration":600,"bikeId":"4630","endDate":1423507380,"endStationId":"726","endStationName":"Alfreda Street, Battersea Park","startDate":1423506780,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"41101481","duration":1200,"bikeId":"6513","endDate":1423508040,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1423506840,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"41101576","duration":780,"bikeId":"10893","endDate":1423507740,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1423506960,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41101654","duration":180,"bikeId":"6146","endDate":1423507260,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1423507080,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41101663","duration":1080,"bikeId":"318","endDate":1423508220,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1423507140,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41101764","duration":600,"bikeId":"11347","endDate":1423507860,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423507260,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41101822","duration":120,"bikeId":"11402","endDate":1423507500,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1423507380,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41101892","duration":240,"bikeId":"3295","endDate":1423507740,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1423507500,"startStationId":"439","startStationName":"Killick Street, Kings Cross"}, +{"_id":"41101973","duration":1080,"bikeId":"9049","endDate":1423508640,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423507560,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41102011","duration":600,"bikeId":"7936","endDate":1423508280,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1423507680,"startStationId":"44","startStationName":"Bruton Street, Mayfair"}, +{"_id":"41102111","duration":480,"bikeId":"11007","endDate":1423508280,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423507800,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41102159","duration":360,"bikeId":"2288","endDate":1423508280,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1423507920,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"41102248","duration":240,"bikeId":"232","endDate":1423508280,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1423508040,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"41102267","duration":7560,"bikeId":"12726","endDate":1423515660,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1423508100,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41102350","duration":1500,"bikeId":"287","endDate":1423509720,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1423508220,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41102424","duration":1380,"bikeId":"11549","endDate":1423509720,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1423508340,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41102480","duration":1140,"bikeId":"8593","endDate":1423509600,"endStationId":"642","endStationName":"Fawcett Close, Battersea","startDate":1423508460,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41102593","duration":300,"bikeId":"994","endDate":1423508940,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1423508640,"startStationId":"686","startStationName":"Beryl Road, Hammersmith"}, +{"_id":"41102628","duration":1380,"bikeId":"9573","endDate":1423510080,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423508700,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"41102724","duration":780,"bikeId":"4292","endDate":1423509600,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1423508820,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41102772","duration":1380,"bikeId":"6693","endDate":1423510320,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1423508940,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41102838","duration":540,"bikeId":"7954","endDate":1423509660,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423509120,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41102924","duration":540,"bikeId":"11074","endDate":1423509780,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1423509240,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41102996","duration":240,"bikeId":"13037","endDate":1423509660,"endStationId":"721","endStationName":"Wendon Street, Old Ford","startDate":1423509420,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"41103066","duration":720,"bikeId":"2025","endDate":1423510260,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1423509540,"startStationId":"566","startStationName":"Westfield Ariel Way, White City"}, +{"_id":"41103139","duration":480,"bikeId":"5944","endDate":1423510200,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1423509720,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"41103222","duration":300,"bikeId":"9908","endDate":1423510200,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1423509900,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"41103273","duration":480,"bikeId":"5922","endDate":1423510500,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1423510020,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41103342","duration":540,"bikeId":"3128","endDate":1423510740,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423510200,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41103399","duration":2400,"bikeId":"10198","endDate":1423512720,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1423510320,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41103472","duration":840,"bikeId":"5936","endDate":1423511340,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1423510500,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41103553","duration":600,"bikeId":"3637","endDate":1423511280,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1423510680,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"41103609","duration":600,"bikeId":"11074","endDate":1423511460,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1423510860,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"41103671","duration":660,"bikeId":"156","endDate":1423511700,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423511040,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41103747","duration":1080,"bikeId":"1991","endDate":1423512300,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1423511220,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41103832","duration":540,"bikeId":"3501","endDate":1423511940,"endStationId":"776","endStationName":"Abyssinia Close, Clapham Junction","startDate":1423511400,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"41103895","duration":600,"bikeId":"12011","endDate":1423512180,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1423511580,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41103964","duration":360,"bikeId":"1064","endDate":1423512120,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1423511760,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"41104030","duration":300,"bikeId":"945","endDate":1423512240,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1423511940,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41104107","duration":600,"bikeId":"11740","endDate":1423512720,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1423512120,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41104161","duration":960,"bikeId":"7227","endDate":1423513260,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1423512300,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41104231","duration":480,"bikeId":"11230","endDate":1423513020,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1423512540,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41104298","duration":1020,"bikeId":"7158","endDate":1423513800,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1423512780,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41104355","duration":840,"bikeId":"7103","endDate":1423513860,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1423513020,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"41104420","duration":600,"bikeId":"11321","endDate":1423513860,"endStationId":"708","endStationName":"Disraeli Road, Putney","startDate":1423513260,"startStationId":"696","startStationName":"Charing Cross Hospital, Hammersmith"}, +{"_id":"41104504","duration":0,"bikeId":"6530","endDate":1423513560,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1423513560,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41104575","duration":840,"bikeId":"5387","endDate":1423514700,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1423513860,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41104631","duration":1620,"bikeId":"5000","endDate":1423515780,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1423514160,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41104699","duration":1440,"bikeId":"7437","endDate":1423515840,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1423514400,"startStationId":"528","startStationName":"Clarges Street, West End"}, +{"_id":"41104775","duration":240,"bikeId":"7093","endDate":1423514940,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423514700,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"41104838","duration":360,"bikeId":"10867","endDate":1423515360,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1423515000,"startStationId":"90","startStationName":"Harrington Square, Camden Town"}, +{"_id":"41104916","duration":840,"bikeId":"8665","endDate":1423516080,"endStationId":"327","endStationName":"New North Road 1, Hoxton","startDate":1423515240,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"41104984","duration":420,"bikeId":"2386","endDate":1423516020,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1423515600,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"41105063","duration":300,"bikeId":"12842","endDate":1423516200,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1423515900,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41105113","duration":1140,"bikeId":"1919","endDate":1423517340,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1423516200,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41105185","duration":1260,"bikeId":"12427","endDate":1423517820,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1423516560,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"41105252","duration":720,"bikeId":"12355","endDate":1423517700,"endStationId":"726","endStationName":"Alfreda Street, Battersea Park","startDate":1423516980,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41105316","duration":960,"bikeId":"11135","endDate":1423518360,"endStationId":"688","endStationName":"Northfields, Wandsworth","startDate":1423517400,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"41105377","duration":1020,"bikeId":"6562","endDate":1423518780,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1423517760,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41105446","duration":480,"bikeId":"10976","endDate":1423518660,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1423518180,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41105508","duration":960,"bikeId":"8947","endDate":1423519560,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1423518600,"startStationId":"716","startStationName":"Stainsby Road , Poplar"}, +{"_id":"41105581","duration":420,"bikeId":"10120","endDate":1423519440,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1423519020,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"41105660","duration":240,"bikeId":"9839","endDate":1423519740,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423519500,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"41105717","duration":300,"bikeId":"1808","endDate":1423520160,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1423519860,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"41105782","duration":900,"bikeId":"724","endDate":1423521060,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1423520160,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41105844","duration":840,"bikeId":"12629","endDate":1423521660,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1423520820,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41105917","duration":840,"bikeId":"8323","endDate":1423522080,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1423521240,"startStationId":"775","startStationName":"Little Brook Green, Brook Green"}, +{"_id":"41105987","duration":600,"bikeId":"689","endDate":1423522680,"endStationId":"339","endStationName":"Risinghill Street, Angel","startDate":1423522080,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41106056","duration":660,"bikeId":"689","endDate":1423523640,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1423522980,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"41106137","duration":2700,"bikeId":"10058","endDate":1423526520,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1423523820,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"41106214","duration":240,"bikeId":"2666","endDate":1423525200,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1423524960,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"41106281","duration":420,"bikeId":"9511","endDate":1423526580,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1423526160,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"41106353","duration":300,"bikeId":"255","endDate":1423527840,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1423527540,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41106420","duration":10500,"bikeId":"7648","endDate":1423540080,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1423529580,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41106490","duration":840,"bikeId":"5053","endDate":1423534320,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423533480,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"41106559","duration":1740,"bikeId":"8209","endDate":1423541700,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1423539960,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41106627","duration":420,"bikeId":"6560","endDate":1423546140,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423545720,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"41106693","duration":300,"bikeId":"11329","endDate":1423547940,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1423547640,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"41106754","duration":600,"bikeId":"1090","endDate":1423549260,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423548660,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"41106823","duration":840,"bikeId":"9048","endDate":1423550100,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1423549260,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"41106892","duration":540,"bikeId":"560","endDate":1423550280,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1423549740,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41106945","duration":1260,"bikeId":"3706","endDate":1423551480,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1423550220,"startStationId":"766","startStationName":"Ram Street, Wandsworth"}, +{"_id":"41107027","duration":480,"bikeId":"12507","endDate":1423551060,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1423550580,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41107104","duration":300,"bikeId":"2116","endDate":1423551120,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1423550820,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41107165","duration":360,"bikeId":"7827","endDate":1423551480,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1423551120,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41107224","duration":540,"bikeId":"2564","endDate":1423551900,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1423551360,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"41107288","duration":1380,"bikeId":"10918","endDate":1423552980,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1423551600,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41107362","duration":480,"bikeId":"1290","endDate":1423552320,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423551840,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41107417","duration":900,"bikeId":"112","endDate":1423552920,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423552020,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41107498","duration":360,"bikeId":"12660","endDate":1423552620,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1423552260,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"41107562","duration":720,"bikeId":"9074","endDate":1423553160,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423552440,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41107618","duration":960,"bikeId":"1308","endDate":1423553580,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423552620,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41107684","duration":780,"bikeId":"11335","endDate":1423553580,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1423552800,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41107735","duration":900,"bikeId":"3792","endDate":1423553820,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423552920,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41107814","duration":1560,"bikeId":"7514","endDate":1423554600,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1423553040,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41107877","duration":1080,"bikeId":"12145","endDate":1423554240,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423553160,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41107937","duration":1200,"bikeId":"8372","endDate":1423554480,"endStationId":"283","endStationName":"Kingsway, Covent Garden","startDate":1423553280,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"41108023","duration":1440,"bikeId":"5367","endDate":1423554840,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1423553400,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"41108078","duration":660,"bikeId":"9630","endDate":1423554180,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1423553520,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41108181","duration":360,"bikeId":"11344","endDate":1423554000,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1423553640,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"41108216","duration":240,"bikeId":"11375","endDate":1423554000,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1423553760,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"41108285","duration":1140,"bikeId":"3407","endDate":1423554960,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423553820,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41108385","duration":240,"bikeId":"944","endDate":1423554180,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423553940,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41108424","duration":600,"bikeId":"1161","endDate":1423554600,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1423554000,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41108495","duration":480,"bikeId":"10091","endDate":1423554600,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1423554120,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41108521","duration":1680,"bikeId":"5414","endDate":1423555860,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1423554180,"startStationId":"629","startStationName":"Morie Street, Wandsworth"}, +{"_id":"41108606","duration":780,"bikeId":"2807","endDate":1423555080,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1423554300,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"41108711","duration":120,"bikeId":"12952","endDate":1423554540,"endStationId":"384","endStationName":"Marloes Road, Kensington","startDate":1423554420,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41108770","duration":600,"bikeId":"911","endDate":1423555080,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1423554480,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41108781","duration":1200,"bikeId":"425","endDate":1423555740,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423554540,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"41108841","duration":1620,"bikeId":"6746","endDate":1423556220,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1423554600,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"41108957","duration":660,"bikeId":"7532","endDate":1423555380,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1423554720,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41109032","duration":0,"bikeId":"12739","endDate":1423554840,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1423554840,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41109067","duration":1320,"bikeId":"9364","endDate":1423556220,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1423554900,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41112648","duration":720,"bikeId":"8690","endDate":1423555740,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1423555020,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41109172","duration":1560,"bikeId":"1592","endDate":1423556640,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1423555080,"startStationId":"165","startStationName":"Orsett Terrace, Bayswater"}, +{"_id":"41109259","duration":600,"bikeId":"8642","endDate":1423555800,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1423555200,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41109326","duration":1140,"bikeId":"12465","endDate":1423556400,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1423555260,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"41109446","duration":240,"bikeId":"8069","endDate":1423555620,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1423555380,"startStationId":"36","startStationName":"De Vere Gardens, Kensington"}, +{"_id":"41109464","duration":540,"bikeId":"7071","endDate":1423555980,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423555440,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41109520","duration":780,"bikeId":"12995","endDate":1423556280,"endStationId":"172","endStationName":"Sumner Place, South Kensington","startDate":1423555500,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"41109585","duration":1920,"bikeId":"12766","endDate":1423557480,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423555560,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41109629","duration":1560,"bikeId":"11441","endDate":1423557180,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1423555620,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41109735","duration":1560,"bikeId":"4094","endDate":1423557240,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1423555680,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"41109774","duration":2040,"bikeId":"10354","endDate":1423557780,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1423555740,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41109866","duration":1620,"bikeId":"6894","endDate":1423557420,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423555800,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41109925","duration":420,"bikeId":"3946","endDate":1423556340,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1423555920,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41109970","duration":840,"bikeId":"12397","endDate":1423556820,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423555980,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41110045","duration":1080,"bikeId":"5419","endDate":1423557120,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423556040,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41110106","duration":1260,"bikeId":"6631","endDate":1423557360,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423556100,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41110181","duration":1380,"bikeId":"9984","endDate":1423557540,"endStationId":"549","endStationName":"Gaywood Street, Elephant & Castle","startDate":1423556160,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"41110214","duration":1380,"bikeId":"11118","endDate":1423557600,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1423556220,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"41110295","duration":1800,"bikeId":"2002","endDate":1423558080,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1423556280,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"41110379","duration":1440,"bikeId":"10955","endDate":1423557780,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1423556340,"startStationId":"623","startStationName":"Nantes Close, Wandsworth"}, +{"_id":"41110483","duration":420,"bikeId":"2412","endDate":1423556880,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423556460,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41110537","duration":660,"bikeId":"11751","endDate":1423557180,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1423556520,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41110629","duration":780,"bikeId":"307","endDate":1423557360,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1423556580,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"41110685","duration":840,"bikeId":"78","endDate":1423557480,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423556640,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41110757","duration":840,"bikeId":"9469","endDate":1423557540,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1423556700,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41110773","duration":720,"bikeId":"9206","endDate":1423557480,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423556760,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41110878","duration":720,"bikeId":"8642","endDate":1423557540,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1423556820,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"41110939","duration":600,"bikeId":"12003","endDate":1423557480,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423556880,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41110992","duration":480,"bikeId":"2386","endDate":1423557420,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1423556940,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41111079","duration":420,"bikeId":"12877","endDate":1423557420,"endStationId":"247","endStationName":"St. John's Wood Church, Regent's Park","startDate":1423557000,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"41111070","duration":5460,"bikeId":"2485","endDate":1423562460,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1423557000,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"41111201","duration":240,"bikeId":"11206","endDate":1423557360,"endStationId":"410","endStationName":"Edgware Road Station, Paddington","startDate":1423557120,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"41111316","duration":300,"bikeId":"2311","endDate":1423557480,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1423557180,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"41111339","duration":1440,"bikeId":"8233","endDate":1423558620,"endStationId":"174","endStationName":"Strand, Strand","startDate":1423557180,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"41111365","duration":1500,"bikeId":"12440","endDate":1423558740,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423557240,"startStationId":"692","startStationName":"Cadogan Close, Victoria Park"}, +{"_id":"41111470","duration":1140,"bikeId":"1873","endDate":1423558440,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1423557300,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41111536","duration":720,"bikeId":"3585","endDate":1423558080,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1423557360,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"41111600","duration":420,"bikeId":"6040","endDate":1423557840,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1423557420,"startStationId":"577","startStationName":"Globe Town Market, Bethnal Green"}, +{"_id":"41111639","duration":2520,"bikeId":"2925","endDate":1423559940,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423557420,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"41111711","duration":1140,"bikeId":"9301","endDate":1423558620,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423557480,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41111764","duration":1080,"bikeId":"10072","endDate":1423558620,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423557540,"startStationId":"507","startStationName":"Clarkson Street, Bethnal Green"}, +{"_id":"41111836","duration":960,"bikeId":"6704","endDate":1423558560,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1423557600,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41111890","duration":660,"bikeId":"8473","endDate":1423558320,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1423557660,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41112001","duration":660,"bikeId":"1162","endDate":1423558380,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1423557720,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41112108","duration":420,"bikeId":"2396","endDate":1423558200,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1423557780,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41112200","duration":180,"bikeId":"2311","endDate":1423558020,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1423557840,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41112140","duration":1140,"bikeId":"386","endDate":1423558980,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1423557840,"startStationId":"490","startStationName":"Pennington Street, Wapping"}, +{"_id":"41112301","duration":660,"bikeId":"5328","endDate":1423558560,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1423557900,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41112321","duration":540,"bikeId":"9314","endDate":1423558500,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1423557960,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41112396","duration":480,"bikeId":"10025","endDate":1423558500,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1423558020,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41112455","duration":420,"bikeId":"7225","endDate":1423558500,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1423558080,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"41112528","duration":360,"bikeId":"1056","endDate":1423558500,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1423558140,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41112608","duration":240,"bikeId":"7132","endDate":1423558440,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1423558200,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41112715","duration":120,"bikeId":"4305","endDate":1423558380,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1423558260,"startStationId":"507","startStationName":"Clarkson Street, Bethnal Green"}, +{"_id":"41112683","duration":1320,"bikeId":"10036","endDate":1423559580,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423558260,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41112847","duration":240,"bikeId":"6635","endDate":1423558620,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1423558380,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"41112869","duration":420,"bikeId":"142","endDate":1423558860,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1423558440,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"41112965","duration":420,"bikeId":"1231","endDate":1423558920,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1423558500,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41112992","duration":600,"bikeId":"10568","endDate":1423559160,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1423558560,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41113074","duration":540,"bikeId":"7060","endDate":1423559160,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423558620,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41113157","duration":900,"bikeId":"2774","endDate":1423559580,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423558680,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41113252","duration":240,"bikeId":"6323","endDate":1423559040,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423558800,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"41113285","duration":360,"bikeId":"10000","endDate":1423559220,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423558860,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"41113324","duration":780,"bikeId":"6244","endDate":1423559700,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1423558920,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41113371","duration":1140,"bikeId":"4103","endDate":1423560120,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1423558980,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41113522","duration":240,"bikeId":"2227","endDate":1423559340,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1423559100,"startStationId":"774","startStationName":"Hurlingham Park, Parsons Green"}, +{"_id":"41113577","duration":360,"bikeId":"11219","endDate":1423559520,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1423559160,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41113598","duration":540,"bikeId":"9335","endDate":1423559760,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1423559220,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"41113648","duration":1440,"bikeId":"1833","endDate":1423560720,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1423559280,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41113732","duration":900,"bikeId":"8605","endDate":1423560300,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1423559400,"startStationId":"441","startStationName":"Sail Street, Vauxhall"}, +{"_id":"41113830","duration":600,"bikeId":"4265","endDate":1423560120,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1423559520,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"41113875","duration":1080,"bikeId":"12522","endDate":1423560660,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1423559580,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41113938","duration":480,"bikeId":"6585","endDate":1423560180,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423559700,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41114007","duration":1140,"bikeId":"10825","endDate":1423560900,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1423559760,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41114064","duration":660,"bikeId":"7181","endDate":1423560540,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1423559880,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41114137","duration":780,"bikeId":"8515","endDate":1423560780,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423560000,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"41114188","duration":1140,"bikeId":"11212","endDate":1423561260,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1423560120,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"41114271","duration":1200,"bikeId":"3148","endDate":1423561440,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423560240,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"41114339","duration":1140,"bikeId":"4832","endDate":1423561500,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1423560360,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"41114400","duration":840,"bikeId":"9736","endDate":1423561320,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423560480,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41114483","duration":840,"bikeId":"9828","endDate":1423561440,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1423560600,"startStationId":"538","startStationName":"Naval Row, Blackwall"}, +{"_id":"41114549","duration":0,"bikeId":"10526","endDate":1423560780,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1423560780,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"41114615","duration":540,"bikeId":"10343","endDate":1423561440,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1423560900,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41114673","duration":840,"bikeId":"12138","endDate":1423561860,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1423561020,"startStationId":"517","startStationName":"Ford Road, Old Ford"}, +{"_id":"41114747","duration":900,"bikeId":"9833","endDate":1423562040,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423561140,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41114808","duration":1740,"bikeId":"11119","endDate":1423563000,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423561260,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41114887","duration":540,"bikeId":"12966","endDate":1423561980,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1423561440,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41114946","duration":480,"bikeId":"12511","endDate":1423562100,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423561620,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"41115011","duration":780,"bikeId":"3974","endDate":1423562520,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1423561740,"startStationId":"90","startStationName":"Harrington Square, Camden Town"}, +{"_id":"41115082","duration":840,"bikeId":"10549","endDate":1423562760,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423561920,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41115159","duration":360,"bikeId":"12660","endDate":1423562520,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423562160,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"41115218","duration":540,"bikeId":"7223","endDate":1423562940,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1423562400,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41115288","duration":780,"bikeId":"5533","endDate":1423563420,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1423562640,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41115356","duration":1320,"bikeId":"12452","endDate":1423564200,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1423562880,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"41115434","duration":540,"bikeId":"7673","endDate":1423563720,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1423563180,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41115483","duration":300,"bikeId":"9405","endDate":1423563720,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1423563420,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"41115549","duration":660,"bikeId":"12743","endDate":1423564320,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1423563660,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"41115624","duration":120,"bikeId":"2413","endDate":1423564080,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1423563960,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"41115679","duration":1500,"bikeId":"8416","endDate":1423565700,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1423564200,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41115753","duration":660,"bikeId":"4521","endDate":1423565220,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1423564560,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"41115828","duration":1200,"bikeId":"8018","endDate":1423566000,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423564800,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41115898","duration":600,"bikeId":"6782","endDate":1423565700,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423565100,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41115969","duration":360,"bikeId":"11810","endDate":1423565760,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1423565400,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41116034","duration":1500,"bikeId":"4632","endDate":1423567140,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423565640,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41116101","duration":540,"bikeId":"4033","endDate":1423566420,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1423565880,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41116169","duration":1140,"bikeId":"4128","endDate":1423567380,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1423566240,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41116237","duration":1140,"bikeId":"12485","endDate":1423567680,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1423566540,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"41116305","duration":480,"bikeId":"9906","endDate":1423567380,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423566900,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"41116378","duration":180,"bikeId":"12843","endDate":1423567440,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1423567260,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41116441","duration":420,"bikeId":"12128","endDate":1423567980,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1423567560,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"41116512","duration":420,"bikeId":"12000","endDate":1423568400,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1423567980,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"41116596","duration":420,"bikeId":"12524","endDate":1423568760,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1423568340,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"41116645","duration":900,"bikeId":"1718","endDate":1423569480,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1423568580,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41116710","duration":480,"bikeId":"7770","endDate":1423569360,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1423568880,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41116788","duration":480,"bikeId":"9820","endDate":1423569660,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423569180,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41116851","duration":1140,"bikeId":"7607","endDate":1423570560,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1423569420,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41116921","duration":300,"bikeId":"8800","endDate":1423570020,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1423569720,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41116990","duration":1080,"bikeId":"10233","endDate":1423571040,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1423569960,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"41117060","duration":540,"bikeId":"12803","endDate":1423570800,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1423570260,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"41117126","duration":540,"bikeId":"707","endDate":1423571100,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1423570560,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41117204","duration":300,"bikeId":"2995","endDate":1423571160,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1423570860,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"41117253","duration":660,"bikeId":"1617","endDate":1423571700,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1423571040,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41117326","duration":360,"bikeId":"8783","endDate":1423571640,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423571280,"startStationId":"317","startStationName":"Dickens Square, Borough"}, +{"_id":"41117384","duration":1980,"bikeId":"6395","endDate":1423573440,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1423571460,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41117455","duration":900,"bikeId":"1351","endDate":1423572660,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423571760,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"41117541","duration":180,"bikeId":"11122","endDate":1423572180,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1423572000,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"41117586","duration":1380,"bikeId":"5141","endDate":1423573560,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1423572180,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41117663","duration":900,"bikeId":"2619","endDate":1423573320,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423572420,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41117735","duration":420,"bikeId":"12082","endDate":1423573080,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1423572660,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"41117807","duration":1500,"bikeId":"759","endDate":1423574340,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1423572840,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41117878","duration":540,"bikeId":"12660","endDate":1423573680,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1423573140,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41117933","duration":780,"bikeId":"11147","endDate":1423574160,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1423573380,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41118024","duration":420,"bikeId":"9711","endDate":1423574040,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423573620,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"41118084","duration":1980,"bikeId":"2692","endDate":1423575780,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1423573800,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41118157","duration":180,"bikeId":"694","endDate":1423574340,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423574160,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41118220","duration":540,"bikeId":"797","endDate":1423574880,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1423574340,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41118297","duration":840,"bikeId":"10382","endDate":1423575420,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423574580,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41118349","duration":3240,"bikeId":"12240","endDate":1423578060,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1423574820,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41118433","duration":300,"bikeId":"3760","endDate":1423575360,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1423575060,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41118510","duration":660,"bikeId":"8409","endDate":1423576020,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1423575360,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"41118588","duration":420,"bikeId":"4933","endDate":1423576020,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1423575600,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"41118645","duration":480,"bikeId":"6077","endDate":1423576320,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423575840,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41118720","duration":300,"bikeId":"4458","endDate":1423576380,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1423576080,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41118785","duration":300,"bikeId":"12630","endDate":1423576620,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1423576320,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41118841","duration":780,"bikeId":"12752","endDate":1423577280,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1423576500,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41118930","duration":60,"bikeId":"3548","endDate":1423576860,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1423576800,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41118991","duration":240,"bikeId":"1950","endDate":1423577280,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1423577040,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41119043","duration":1140,"bikeId":"427","endDate":1423578360,"endStationId":"103","endStationName":"Vicarage Gate, Kensington","startDate":1423577220,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41119121","duration":480,"bikeId":"6352","endDate":1423578000,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1423577520,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41119181","duration":900,"bikeId":"5929","endDate":1423578660,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1423577760,"startStationId":"776","startStationName":"Abyssinia Close, Clapham Junction"}, +{"_id":"41119260","duration":1020,"bikeId":"12909","endDate":1423579140,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1423578120,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41119330","duration":720,"bikeId":"12952","endDate":1423579080,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1423578360,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41119403","duration":420,"bikeId":"9177","endDate":1423579080,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1423578660,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41119467","duration":300,"bikeId":"2380","endDate":1423579200,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1423578900,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"41119538","duration":360,"bikeId":"8823","endDate":1423579500,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1423579140,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41119609","duration":600,"bikeId":"7502","endDate":1423579980,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1423579380,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41119676","duration":1260,"bikeId":"11319","endDate":1423580880,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1423579620,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41119748","duration":540,"bikeId":"6851","endDate":1423580460,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1423579920,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41119810","duration":1380,"bikeId":"9098","endDate":1423581540,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1423580160,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41119889","duration":360,"bikeId":"8233","endDate":1423580820,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423580460,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41119949","duration":660,"bikeId":"8550","endDate":1423581420,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1423580760,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41120018","duration":780,"bikeId":"3684","endDate":1423581780,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1423581000,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41120078","duration":840,"bikeId":"317","endDate":1423582080,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1423581240,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"41120157","duration":1260,"bikeId":"10573","endDate":1423582740,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1423581480,"startStationId":"134","startStationName":"Wapping High Street, Wapping"}, +{"_id":"41120222","duration":1320,"bikeId":"7306","endDate":1423582980,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1423581660,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41120291","duration":480,"bikeId":"6407","endDate":1423582440,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1423581960,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"41120362","duration":480,"bikeId":"11272","endDate":1423582680,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1423582200,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41120416","duration":600,"bikeId":"554","endDate":1423583100,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423582500,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41120508","duration":720,"bikeId":"9633","endDate":1423583460,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1423582740,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41120571","duration":900,"bikeId":"11437","endDate":1423583820,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1423582920,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41120641","duration":780,"bikeId":"6604","endDate":1423583940,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1423583160,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"41120694","duration":1380,"bikeId":"8841","endDate":1423584780,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1423583400,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"41120771","duration":540,"bikeId":"4106","endDate":1423584180,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1423583640,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41120838","duration":180,"bikeId":"8360","endDate":1423584060,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1423583880,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41120917","duration":180,"bikeId":"10031","endDate":1423584240,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1423584060,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41120964","duration":960,"bikeId":"6057","endDate":1423585200,"endStationId":"149","endStationName":"Kennington Road Post Office, Oval","startDate":1423584240,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"41121042","duration":4980,"bikeId":"1549","endDate":1423589400,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423584420,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41121089","duration":1500,"bikeId":"12217","endDate":1423586100,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1423584600,"startStationId":"591","startStationName":"Westfield Library Corner, Shepherd's Bush"}, +{"_id":"41121172","duration":660,"bikeId":"8893","endDate":1423585500,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423584840,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41121251","duration":780,"bikeId":"6655","endDate":1423585800,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1423585020,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41121311","duration":540,"bikeId":"4152","endDate":1423585740,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1423585200,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41121361","duration":900,"bikeId":"7647","endDate":1423586280,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1423585380,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41121437","duration":3720,"bikeId":"5718","endDate":1423589280,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1423585560,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"41121488","duration":1020,"bikeId":"12014","endDate":1423586760,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1423585740,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41121581","duration":420,"bikeId":"10713","endDate":1423586400,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1423585980,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"41121667","duration":360,"bikeId":"5677","endDate":1423586460,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423586100,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41121713","duration":780,"bikeId":"5150","endDate":1423587000,"endStationId":"143","endStationName":"Pont Street, Knightsbridge","startDate":1423586220,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"41121777","duration":600,"bikeId":"12905","endDate":1423587000,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1423586400,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41121827","duration":1500,"bikeId":"3552","endDate":1423588020,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1423586520,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41121901","duration":720,"bikeId":"1557","endDate":1423587420,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1423586700,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41121963","duration":360,"bikeId":"6625","endDate":1423587240,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1423586880,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41122010","duration":1920,"bikeId":"3480","endDate":1423588920,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1423587000,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41122095","duration":540,"bikeId":"12670","endDate":1423587720,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1423587180,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41122157","duration":900,"bikeId":"5185","endDate":1423588200,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423587300,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41122215","duration":540,"bikeId":"7960","endDate":1423587960,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423587420,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41122306","duration":840,"bikeId":"9534","endDate":1423588380,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423587540,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"41122358","duration":840,"bikeId":"7121","endDate":1423588500,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1423587660,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41122439","duration":660,"bikeId":"7421","endDate":1423588440,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1423587780,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"41122487","duration":300,"bikeId":"12260","endDate":1423588200,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423587900,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"41122594","duration":120,"bikeId":"3231","endDate":1423588140,"endStationId":"384","endStationName":"Marloes Road, Kensington","startDate":1423588020,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41122636","duration":480,"bikeId":"7327","endDate":1423588560,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423588080,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41122726","duration":420,"bikeId":"5901","endDate":1423588620,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1423588200,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"41122760","duration":720,"bikeId":"4145","endDate":1423588980,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423588260,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41122827","duration":240,"bikeId":"36","endDate":1423588620,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423588380,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41122856","duration":3720,"bikeId":"6951","endDate":1423592160,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1423588440,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41122927","duration":900,"bikeId":"7651","endDate":1423589460,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1423588560,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41123003","duration":600,"bikeId":"7933","endDate":1423589280,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1423588680,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41123087","duration":1260,"bikeId":"2108","endDate":1423590000,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1423588740,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"41123145","duration":600,"bikeId":"12650","endDate":1423589460,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423588860,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41123212","duration":1080,"bikeId":"10558","endDate":1423590000,"endStationId":"571","endStationName":"Westfield Southern Terrace ,Shepherd's Bush","startDate":1423588920,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41123287","duration":420,"bikeId":"7634","endDate":1423589460,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1423589040,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"41123315","duration":1140,"bikeId":"7005","endDate":1423590240,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1423589100,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41123426","duration":1020,"bikeId":"8067","endDate":1423590240,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1423589220,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41123513","duration":300,"bikeId":"3193","endDate":1423589640,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423589340,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41123536","duration":1020,"bikeId":"11391","endDate":1423590420,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1423589400,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41123608","duration":480,"bikeId":"5080","endDate":1423590000,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1423589520,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41123651","duration":1200,"bikeId":"6734","endDate":1423590780,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1423589580,"startStationId":"556","startStationName":"Heron Quays DLR, Canary Wharf"}, +{"_id":"41123728","duration":1380,"bikeId":"5649","endDate":1423591020,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1423589640,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"41123816","duration":420,"bikeId":"10488","endDate":1423590180,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423589760,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41123901","duration":720,"bikeId":"12200","endDate":1423590540,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1423589820,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"41123929","duration":720,"bikeId":"11992","endDate":1423590600,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1423589880,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"41123990","duration":1200,"bikeId":"3262","endDate":1423591140,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423589940,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41124063","duration":1680,"bikeId":"11809","endDate":1423591680,"endStationId":"454","endStationName":"Napier Avenue, Millwall","startDate":1423590000,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41124100","duration":1920,"bikeId":"9239","endDate":1423591980,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1423590060,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41124177","duration":1740,"bikeId":"829","endDate":1423591860,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1423590120,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41124316","duration":360,"bikeId":"12133","endDate":1423590600,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423590240,"startStationId":"762","startStationName":"Storey's Gate, Westminster"}, +{"_id":"41124335","duration":480,"bikeId":"11230","endDate":1423590780,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423590300,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41124376","duration":780,"bikeId":"11456","endDate":1423591140,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1423590360,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41124463","duration":1320,"bikeId":"5984","endDate":1423591740,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1423590420,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41124532","duration":1440,"bikeId":"12854","endDate":1423591920,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1423590480,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41124599","duration":540,"bikeId":"7645","endDate":1423591140,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1423590600,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41124650","duration":1020,"bikeId":"10726","endDate":1423591680,"endStationId":"317","endStationName":"Dickens Square, Borough","startDate":1423590660,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41124725","duration":1740,"bikeId":"11027","endDate":1423592460,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1423590720,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41124805","duration":480,"bikeId":"7505","endDate":1423591320,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423590840,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41124861","duration":960,"bikeId":"2804","endDate":1423591860,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1423590900,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41124935","duration":360,"bikeId":"8462","endDate":1423591380,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1423591020,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"41125010","duration":780,"bikeId":"7625","endDate":1423591860,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1423591080,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"41125094","duration":120,"bikeId":"2553","endDate":1423591320,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1423591200,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41125148","duration":540,"bikeId":"12389","endDate":1423591800,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423591260,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"41125189","duration":960,"bikeId":"7095","endDate":1423592280,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423591320,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41125227","duration":1200,"bikeId":"3370","endDate":1423592580,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1423591380,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41125333","duration":300,"bikeId":"1698","endDate":1423591800,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1423591500,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"41125423","duration":540,"bikeId":"1384","endDate":1423592100,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1423591560,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"41125488","duration":660,"bikeId":"12795","endDate":1423592280,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423591620,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"41125524","duration":600,"bikeId":"11343","endDate":1423592280,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1423591680,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41125604","duration":1020,"bikeId":"9011","endDate":1423592760,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1423591740,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41125713","duration":120,"bikeId":"4392","endDate":1423591980,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423591860,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"41125760","duration":180,"bikeId":"413","endDate":1423592100,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1423591920,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41125800","duration":600,"bikeId":"12045","endDate":1423592580,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1423591980,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41125857","duration":720,"bikeId":"7399","endDate":1423592760,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423592040,"startStationId":"276","startStationName":"Lower Thames Street, Monument"}, +{"_id":"41125945","duration":1680,"bikeId":"5516","endDate":1423593780,"endStationId":"339","endStationName":"Risinghill Street, Angel","startDate":1423592100,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41126031","duration":480,"bikeId":"10450","endDate":1423592700,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423592220,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"41126068","duration":840,"bikeId":"759","endDate":1423593120,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1423592280,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41126120","duration":1440,"bikeId":"2377","endDate":1423593780,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1423592340,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"41126192","duration":720,"bikeId":"9257","endDate":1423593180,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423592460,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"41126294","duration":420,"bikeId":"8762","endDate":1423593000,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1423592580,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"41126338","duration":1140,"bikeId":"12677","endDate":1423593780,"endStationId":"665","endStationName":"Smugglers Way, Wandsworth","startDate":1423592640,"startStationId":"693","startStationName":"Felsham Road, Putney"}, +{"_id":"41126399","duration":420,"bikeId":"2197","endDate":1423593180,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1423592760,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41126445","duration":900,"bikeId":"10606","endDate":1423593720,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1423592820,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41126560","duration":360,"bikeId":"4818","endDate":1423593300,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423592940,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41126620","duration":1020,"bikeId":"6846","endDate":1423594020,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1423593000,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"41126638","duration":1080,"bikeId":"1163","endDate":1423594140,"endStationId":"627","endStationName":"Holden Street, Battersea","startDate":1423593060,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"41126765","duration":300,"bikeId":"4680","endDate":1423593480,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423593180,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"41126784","duration":900,"bikeId":"11222","endDate":1423594140,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423593240,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41126846","duration":1980,"bikeId":"8176","endDate":1423595280,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1423593300,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"41126978","duration":600,"bikeId":"3534","endDate":1423594020,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1423593420,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41127050","duration":240,"bikeId":"5933","endDate":1423593780,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1423593540,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41127063","duration":2220,"bikeId":"8742","endDate":1423595820,"endStationId":"566","endStationName":"Westfield Ariel Way, White City","startDate":1423593600,"startStationId":"566","startStationName":"Westfield Ariel Way, White City"}, +{"_id":"41127176","duration":120,"bikeId":"8239","endDate":1423593840,"endStationId":"527","endStationName":"Hansard Mews, Shepherds Bush","startDate":1423593720,"startStationId":"515","startStationName":"Russell Gardens, Holland Park"}, +{"_id":"41127227","duration":1320,"bikeId":"12408","endDate":1423595100,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423593780,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"41127293","duration":660,"bikeId":"8119","endDate":1423594560,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1423593900,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41127361","duration":480,"bikeId":"9317","endDate":1423594500,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1423594020,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41127411","duration":840,"bikeId":"6569","endDate":1423594980,"endStationId":"771","endStationName":"Rifle Place, Avondale","startDate":1423594140,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"41127500","duration":360,"bikeId":"9206","endDate":1423594620,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1423594260,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41127566","duration":420,"bikeId":"4058","endDate":1423594800,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1423594380,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41127661","duration":300,"bikeId":"9430","endDate":1423594800,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1423594500,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41127700","duration":480,"bikeId":"7716","endDate":1423595100,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1423594620,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41127777","duration":480,"bikeId":"7881","endDate":1423595220,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423594740,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41127821","duration":480,"bikeId":"1641","endDate":1423595340,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423594860,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41127871","duration":420,"bikeId":"11887","endDate":1423595400,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1423594980,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41127995","duration":360,"bikeId":"311","endDate":1423595460,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1423595100,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41128035","duration":420,"bikeId":"190","endDate":1423595640,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423595220,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"41128117","duration":720,"bikeId":"10534","endDate":1423596060,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1423595340,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"41128182","duration":540,"bikeId":"6548","endDate":1423596000,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1423595460,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41128249","duration":780,"bikeId":"4968","endDate":1423596360,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1423595580,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41128305","duration":1440,"bikeId":"8169","endDate":1423597140,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1423595700,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41128401","duration":540,"bikeId":"12581","endDate":1423596420,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1423595880,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"41128447","duration":660,"bikeId":"2130","endDate":1423596660,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1423596000,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41128510","duration":1860,"bikeId":"623","endDate":1423597980,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1423596120,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41128586","duration":780,"bikeId":"5212","endDate":1423597080,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1423596300,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41128659","duration":540,"bikeId":"1330","endDate":1423597020,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423596480,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41128695","duration":1860,"bikeId":"11188","endDate":1423598460,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1423596600,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"41128782","duration":8220,"bikeId":"4599","endDate":1423605000,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423596780,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41128870","duration":540,"bikeId":"9719","endDate":1423597560,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1423597020,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41128929","duration":660,"bikeId":"7426","endDate":1423597860,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423597200,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41128990","duration":960,"bikeId":"9619","endDate":1423598340,"endStationId":"683","endStationName":"Dorothy Road, Clapham Junction","startDate":1423597380,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"41129085","duration":360,"bikeId":"3446","endDate":1423597980,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1423597620,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"41129128","duration":960,"bikeId":"4712","endDate":1423598700,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1423597740,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"41129180","duration":840,"bikeId":"11393","endDate":1423598760,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1423597920,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41129260","duration":480,"bikeId":"11696","endDate":1423598640,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1423598160,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"41129314","duration":900,"bikeId":"3037","endDate":1423599240,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1423598340,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41129391","duration":600,"bikeId":"12465","endDate":1423599180,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1423598580,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41129469","duration":480,"bikeId":"1214","endDate":1423599300,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1423598820,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"41129524","duration":240,"bikeId":"3452","endDate":1423599300,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1423599060,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41129610","duration":660,"bikeId":"11769","endDate":1423599900,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1423599240,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41129665","duration":1140,"bikeId":"10992","endDate":1423600560,"endStationId":"365","endStationName":"City Road, Angel","startDate":1423599420,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41129727","duration":5700,"bikeId":"436","endDate":1423605360,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1423599660,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"41129792","duration":900,"bikeId":"5463","endDate":1423600800,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1423599900,"startStationId":"656","startStationName":"Broomhouse Lane, Parsons Green"}, +{"_id":"41129874","duration":780,"bikeId":"12481","endDate":1423600980,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423600200,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41129940","duration":300,"bikeId":"6574","endDate":1423600800,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423600500,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41130016","duration":600,"bikeId":"10900","endDate":1423601400,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1423600800,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41130075","duration":360,"bikeId":"4693","endDate":1423601400,"endStationId":"515","endStationName":"Russell Gardens, Holland Park","startDate":1423601040,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"41130130","duration":1380,"bikeId":"9482","endDate":1423602720,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1423601340,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"41130200","duration":300,"bikeId":"6281","endDate":1423602060,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1423601760,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41130278","duration":360,"bikeId":"8838","endDate":1423602480,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1423602120,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"41130339","duration":540,"bikeId":"10775","endDate":1423602960,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1423602420,"startStationId":"696","startStationName":"Charing Cross Hospital, Hammersmith"}, +{"_id":"41130402","duration":840,"bikeId":"4918","endDate":1423603620,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1423602780,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41130465","duration":1200,"bikeId":"12320","endDate":1423604220,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1423603020,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41130538","duration":180,"bikeId":"12181","endDate":1423603560,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1423603380,"startStationId":"549","startStationName":"Gaywood Street, Elephant & Castle"}, +{"_id":"41130599","duration":840,"bikeId":"12376","endDate":1423604580,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1423603740,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41130664","duration":720,"bikeId":"10749","endDate":1423604820,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1423604100,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"41130738","duration":420,"bikeId":"368","endDate":1423604940,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1423604520,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"41130792","duration":900,"bikeId":"7100","endDate":1423605780,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1423604880,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41130869","duration":300,"bikeId":"10703","endDate":1423605600,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1423605300,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41130936","duration":420,"bikeId":"6856","endDate":1423606140,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1423605720,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41130998","duration":1320,"bikeId":"2695","endDate":1423607340,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1423606020,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"41131074","duration":420,"bikeId":"8270","endDate":1423606800,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1423606380,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41131147","duration":360,"bikeId":"10263","endDate":1423607220,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1423606860,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41131204","duration":420,"bikeId":"994","endDate":1423607880,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1423607460,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41131271","duration":420,"bikeId":"6469","endDate":1423608480,"endStationId":"297","endStationName":"Geraldine Street, Elephant & Castle","startDate":1423608060,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41131337","duration":300,"bikeId":"9641","endDate":1423608900,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1423608600,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41131408","duration":0,"bikeId":"8165","endDate":1423609200,"endStationId":"708","endStationName":"Disraeli Road, Putney","startDate":1423609200,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"41131470","duration":1560,"bikeId":"11722","endDate":1423611360,"endStationId":"521","endStationName":"Driffield Road, Old Ford","startDate":1423609800,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"41131537","duration":420,"bikeId":"9028","endDate":1423610820,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1423610400,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41131611","duration":600,"bikeId":"7055","endDate":1423611900,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1423611300,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41131675","duration":540,"bikeId":"10348","endDate":1423612860,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1423612320,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41131741","duration":720,"bikeId":"5903","endDate":1423614120,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423613400,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41131813","duration":1080,"bikeId":"2430","endDate":1423616340,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1423615260,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"41131888","duration":660,"bikeId":"2253","endDate":1423618680,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1423618020,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"41131965","duration":420,"bikeId":"11291","endDate":1423622700,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1423622280,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"41132033","duration":360,"bikeId":"1886","endDate":1423629720,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423629360,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"41132099","duration":480,"bikeId":"2673","endDate":1423634100,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1423633620,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"41132174","duration":780,"bikeId":"2652","endDate":1423635840,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1423635060,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"41132248","duration":360,"bikeId":"1964","endDate":1423636080,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423635720,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41132307","duration":900,"bikeId":"746","endDate":1423637100,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423636200,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41132378","duration":180,"bikeId":"9319","endDate":1423636860,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1423636680,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"41132431","duration":1380,"bikeId":"4491","endDate":1423638300,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1423636920,"startStationId":"766","startStationName":"Ram Street, Wandsworth"}, +{"_id":"41132509","duration":840,"bikeId":"2056","endDate":1423638120,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1423637280,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41132575","duration":480,"bikeId":"8339","endDate":1423638060,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1423637580,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"41132646","duration":180,"bikeId":"7460","endDate":1423638060,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1423637880,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"41132710","duration":1200,"bikeId":"4195","endDate":1423639260,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1423638060,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41132775","duration":240,"bikeId":"9380","endDate":1423638540,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423638300,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41132825","duration":600,"bikeId":"8071","endDate":1423639080,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1423638480,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41132908","duration":1140,"bikeId":"890","endDate":1423639800,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423638660,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41132960","duration":960,"bikeId":"4337","endDate":1423639800,"endStationId":"181","endStationName":"Belgrave Square, Belgravia","startDate":1423638840,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41133036","duration":1740,"bikeId":"1091","endDate":1423640760,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1423639020,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41133088","duration":660,"bikeId":"11216","endDate":1423639860,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1423639200,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"41133160","duration":1140,"bikeId":"7358","endDate":1423640520,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1423639380,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"41133212","duration":1260,"bikeId":"12283","endDate":1423640760,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1423639500,"startStationId":"675","startStationName":"Usk Road, Battersea"}, +{"_id":"41133317","duration":300,"bikeId":"9849","endDate":1423639980,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423639680,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41133351","duration":1320,"bikeId":"7398","endDate":1423641120,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1423639800,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41133461","duration":240,"bikeId":"7477","endDate":1423640220,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1423639980,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41133483","duration":1560,"bikeId":"12106","endDate":1423641600,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1423640040,"startStationId":"704","startStationName":"Mexfield Road, East Putney"}, +{"_id":"41133549","duration":1200,"bikeId":"10105","endDate":1423641360,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1423640160,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41133611","duration":720,"bikeId":"9497","endDate":1423641000,"endStationId":"637","endStationName":"Spencer Park, Wandsworth Common","startDate":1423640280,"startStationId":"690","startStationName":"Stanley Grove, Battersea"}, +{"_id":"41133664","duration":1680,"bikeId":"2210","endDate":1423642020,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423640340,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"41133778","duration":780,"bikeId":"11707","endDate":1423641240,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1423640460,"startStationId":"713","startStationName":"Hawley Crescent, Camden Town"}, +{"_id":"41133820","duration":420,"bikeId":"11217","endDate":1423641000,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1423640580,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"41133904","duration":1020,"bikeId":"4972","endDate":1423641660,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423640640,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41133980","duration":180,"bikeId":"9133","endDate":1423640940,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1423640760,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"41134017","duration":1260,"bikeId":"2751","endDate":1423642080,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1423640820,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41134097","duration":720,"bikeId":"10403","endDate":1423641660,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1423640940,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41134167","duration":480,"bikeId":"3340","endDate":1423641540,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423641060,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41134220","duration":1860,"bikeId":"3242","endDate":1423642980,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1423641120,"startStationId":"734","startStationName":"Plough Terrace, Clapham Junction"}, +{"_id":"41134311","duration":720,"bikeId":"12930","endDate":1423641960,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1423641240,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41134381","duration":180,"bikeId":"7055","endDate":1423641540,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1423641360,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"41134400","duration":1140,"bikeId":"11353","endDate":1423642560,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1423641420,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41134524","duration":540,"bikeId":"10500","endDate":1423642080,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423641540,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41134583","duration":720,"bikeId":"1879","endDate":1423642320,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1423641600,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41134630","duration":1080,"bikeId":"6629","endDate":1423642740,"endStationId":"276","endStationName":"Lower Thames Street, Monument","startDate":1423641660,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41134675","duration":1560,"bikeId":"10814","endDate":1423643280,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1423641720,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"41134779","duration":960,"bikeId":"1035","endDate":1423642800,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1423641840,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41134848","duration":240,"bikeId":"7716","endDate":1423642200,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1423641960,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41134944","duration":360,"bikeId":"3278","endDate":1423642380,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1423642020,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41135010","duration":420,"bikeId":"5151","endDate":1423642500,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423642080,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41135059","duration":660,"bikeId":"5795","endDate":1423642800,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1423642140,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"41135092","duration":840,"bikeId":"1672","endDate":1423643040,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1423642200,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41135166","duration":1020,"bikeId":"7134","endDate":1423643280,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423642260,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41135220","duration":1320,"bikeId":"11975","endDate":1423643640,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1423642320,"startStationId":"768","startStationName":"Clapham Common Northside, Clapham Common"}, +{"_id":"41135252","duration":1980,"bikeId":"6959","endDate":1423644360,"endStationId":"654","endStationName":"Ashmole Estate, Oval","startDate":1423642380,"startStationId":"724","startStationName":"Alma Road, Wandsworth"}, +{"_id":"41135391","duration":240,"bikeId":"9845","endDate":1423642740,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1423642500,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41135434","duration":540,"bikeId":"6580","endDate":1423643100,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423642560,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41135483","duration":480,"bikeId":"10812","endDate":1423643100,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1423642620,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41135593","duration":660,"bikeId":"9235","endDate":1423643340,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1423642680,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41135603","duration":900,"bikeId":"8446","endDate":1423643640,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1423642740,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41135673","duration":960,"bikeId":"11340","endDate":1423643760,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1423642800,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41135745","duration":840,"bikeId":"9522","endDate":1423643700,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423642860,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41135840","duration":960,"bikeId":"10489","endDate":1423643880,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1423642920,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41135861","duration":1020,"bikeId":"3751","endDate":1423644000,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1423642980,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41135965","duration":1140,"bikeId":"2793","endDate":1423644180,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1423643040,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41135982","duration":1800,"bikeId":"1405","endDate":1423644900,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1423643100,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41136041","duration":1140,"bikeId":"4218","endDate":1423644300,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1423643160,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41136143","duration":900,"bikeId":"347","endDate":1423644120,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1423643220,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41136220","duration":900,"bikeId":"11163","endDate":1423644180,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1423643280,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41136273","duration":780,"bikeId":"7654","endDate":1423644120,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1423643340,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41136364","duration":1020,"bikeId":"2245","endDate":1423644420,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1423643400,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41136408","duration":1080,"bikeId":"4715","endDate":1423644540,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1423643460,"startStationId":"337","startStationName":"Pembridge Villas, Notting Hill"}, +{"_id":"41136446","duration":1080,"bikeId":"5635","endDate":1423644600,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423643520,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41136514","duration":1200,"bikeId":"12240","endDate":1423644780,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1423643580,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"41136644","duration":1020,"bikeId":"2753","endDate":1423644660,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423643640,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"41136696","duration":840,"bikeId":"10063","endDate":1423644540,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1423643700,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"41136735","duration":780,"bikeId":"1351","endDate":1423644540,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1423643760,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41136865","duration":420,"bikeId":"6848","endDate":1423644240,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1423643820,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41136897","duration":300,"bikeId":"5795","endDate":1423644180,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1423643880,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"41136975","duration":240,"bikeId":"3503","endDate":1423644180,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423643940,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"41137049","duration":480,"bikeId":"3008","endDate":1423644480,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423644000,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"41137146","duration":420,"bikeId":"5210","endDate":1423644480,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423644060,"startStationId":"565","startStationName":"Selby Street, Whitechapel"}, +{"_id":"41137180","duration":0,"bikeId":"3061","endDate":1423644120,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1423644120,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"41137240","duration":900,"bikeId":"730","endDate":1423645020,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1423644120,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41137276","duration":840,"bikeId":"5256","endDate":1423645020,"endStationId":"366","endStationName":"Millennium Hotel, Mayfair","startDate":1423644180,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"41137376","duration":720,"bikeId":"7258","endDate":1423644960,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423644240,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"41137424","duration":600,"bikeId":"12804","endDate":1423644900,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1423644300,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41137512","duration":360,"bikeId":"2232","endDate":1423644720,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1423644360,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"41137598","duration":420,"bikeId":"581","endDate":1423644840,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423644420,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41137694","duration":480,"bikeId":"7754","endDate":1423644960,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1423644480,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41137640","duration":1860,"bikeId":"2534","endDate":1423646340,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1423644480,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"41137745","duration":1320,"bikeId":"3283","endDate":1423645860,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1423644540,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41137780","duration":1560,"bikeId":"6884","endDate":1423646160,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423644600,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41137868","duration":1440,"bikeId":"5294","endDate":1423646100,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423644660,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41137989","duration":360,"bikeId":"10592","endDate":1423645140,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1423644780,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41138025","duration":420,"bikeId":"4556","endDate":1423645260,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1423644840,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41138092","duration":540,"bikeId":"7593","endDate":1423645440,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1423644900,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41138150","duration":780,"bikeId":"12106","endDate":1423645740,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1423644960,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41138219","duration":960,"bikeId":"3305","endDate":1423645980,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1423645020,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"41138285","duration":1080,"bikeId":"10708","endDate":1423646160,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1423645080,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41138373","duration":180,"bikeId":"7092","endDate":1423645380,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423645200,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"41138467","duration":540,"bikeId":"12742","endDate":1423645800,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1423645260,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41138523","duration":840,"bikeId":"6246","endDate":1423646160,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423645320,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41138578","duration":300,"bikeId":"3996","endDate":1423645740,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1423645440,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41138639","duration":420,"bikeId":"6133","endDate":1423645920,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1423645500,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41138716","duration":660,"bikeId":"2402","endDate":1423646220,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1423645560,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"41138822","duration":240,"bikeId":"2840","endDate":1423645920,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1423645680,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"41138838","duration":720,"bikeId":"1966","endDate":1423646460,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1423645740,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41138915","duration":480,"bikeId":"7730","endDate":1423646340,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1423645860,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41138981","duration":540,"bikeId":"489","endDate":1423646520,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1423645980,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41139083","duration":240,"bikeId":"9891","endDate":1423646340,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1423646100,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"41139116","duration":600,"bikeId":"10031","endDate":1423646760,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1423646160,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"41139187","duration":480,"bikeId":"10829","endDate":1423646760,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423646280,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41139231","duration":1500,"bikeId":"6318","endDate":1423647840,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423646340,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41139335","duration":840,"bikeId":"9436","endDate":1423647300,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1423646460,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"41139386","duration":540,"bikeId":"5960","endDate":1423647120,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1423646580,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"41139473","duration":780,"bikeId":"8088","endDate":1423647480,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1423646700,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41139527","duration":1200,"bikeId":"2638","endDate":1423648020,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423646820,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"41139591","duration":1740,"bikeId":"12874","endDate":1423648680,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1423646940,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41139685","duration":240,"bikeId":"7380","endDate":1423647420,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1423647180,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41139737","duration":840,"bikeId":"4415","endDate":1423648080,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423647240,"startStationId":"412","startStationName":"Cleaver Street, Kennington"}, +{"_id":"41139808","duration":960,"bikeId":"10013","endDate":1423648320,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1423647360,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41139871","duration":300,"bikeId":"1635","endDate":1423647840,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1423647540,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41139942","duration":300,"bikeId":"166","endDate":1423648020,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423647720,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"41140007","duration":240,"bikeId":"8381","endDate":1423648140,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423647900,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"41140099","duration":420,"bikeId":"12081","endDate":1423648500,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1423648080,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41140169","duration":180,"bikeId":"9820","endDate":1423648500,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1423648320,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"41140206","duration":1080,"bikeId":"5115","endDate":1423649520,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423648440,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"41140275","duration":600,"bikeId":"11276","endDate":1423649220,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1423648620,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"41140359","duration":360,"bikeId":"8379","endDate":1423649220,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1423648860,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"41140423","duration":240,"bikeId":"724","endDate":1423649400,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423649160,"startStationId":"328","startStationName":"New North Road 2, Hoxton"}, +{"_id":"41140495","duration":360,"bikeId":"3780","endDate":1423649760,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423649400,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"41140560","duration":360,"bikeId":"6302","endDate":1423650060,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423649700,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41140630","duration":0,"bikeId":"10814","endDate":1423650000,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1423650000,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41140689","duration":960,"bikeId":"7460","endDate":1423651260,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1423650300,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41140753","duration":600,"bikeId":"12655","endDate":1423651200,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1423650600,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"41140818","duration":1260,"bikeId":"1037","endDate":1423652100,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1423650840,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41140906","duration":360,"bikeId":"11909","endDate":1423651500,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1423651140,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"41140968","duration":660,"bikeId":"9301","endDate":1423652040,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1423651380,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41141033","duration":240,"bikeId":"8960","endDate":1423651860,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1423651620,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41141095","duration":780,"bikeId":"4346","endDate":1423652640,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1423651860,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"41141161","duration":1020,"bikeId":"4236","endDate":1423653120,"endStationId":"688","endStationName":"Northfields, Wandsworth","startDate":1423652100,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41141243","duration":300,"bikeId":"483","endDate":1423652760,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1423652460,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"41141302","duration":540,"bikeId":"7987","endDate":1423653300,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1423652760,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41141363","duration":1080,"bikeId":"1552","endDate":1423654140,"endStationId":"283","endStationName":"Kingsway, Covent Garden","startDate":1423653060,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41141452","duration":240,"bikeId":"2139","endDate":1423653660,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1423653420,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41141503","duration":1800,"bikeId":"1051","endDate":1423655580,"endStationId":"692","endStationName":"Cadogan Close, Victoria Park","startDate":1423653780,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41141571","duration":1500,"bikeId":"2535","endDate":1423655640,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423654140,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"41141645","duration":420,"bikeId":"4319","endDate":1423654980,"endStationId":"740","endStationName":"Sirdar Road, Avondale","startDate":1423654560,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"41141712","duration":900,"bikeId":"12152","endDate":1423655700,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1423654800,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41141774","duration":840,"bikeId":"9215","endDate":1423655940,"endStationId":"550","endStationName":"Harford Street, Mile End","startDate":1423655100,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"41141854","duration":300,"bikeId":"8897","endDate":1423655700,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1423655400,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41141908","duration":660,"bikeId":"10996","endDate":1423656300,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423655640,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41141971","duration":1140,"bikeId":"3233","endDate":1423657200,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1423656060,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41142059","duration":240,"bikeId":"9049","endDate":1423656600,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1423656360,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"41142120","duration":1140,"bikeId":"9243","endDate":1423657680,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423656540,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41142183","duration":780,"bikeId":"6669","endDate":1423657560,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423656780,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41142246","duration":660,"bikeId":"7157","endDate":1423657680,"endStationId":"693","endStationName":"Felsham Road, Putney","startDate":1423657020,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41142311","duration":660,"bikeId":"6498","endDate":1423657920,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1423657260,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41142382","duration":3300,"bikeId":"12014","endDate":1423660740,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1423657440,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"41142448","duration":660,"bikeId":"8877","endDate":1423658400,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1423657740,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41142515","duration":660,"bikeId":"4315","endDate":1423658700,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423658040,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41142588","duration":300,"bikeId":"8007","endDate":1423658580,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1423658280,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"41142633","duration":600,"bikeId":"3455","endDate":1423659120,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423658520,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"41142701","duration":1740,"bikeId":"3028","endDate":1423660440,"endStationId":"611","endStationName":"Princedale Road , Holland Park","startDate":1423658700,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"41142784","duration":180,"bikeId":"12951","endDate":1423659180,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1423659000,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41142852","duration":360,"bikeId":"458","endDate":1423659600,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1423659240,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41142916","duration":300,"bikeId":"403","endDate":1423659840,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1423659540,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41142971","duration":1140,"bikeId":"765","endDate":1423660860,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1423659720,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"41143047","duration":720,"bikeId":"2925","endDate":1423660680,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1423659960,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41143122","duration":300,"bikeId":"11119","endDate":1423660500,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1423660200,"startStationId":"315","startStationName":"The Tennis Courts, Regent's Park"}, +{"_id":"41143186","duration":780,"bikeId":"7369","endDate":1423661220,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1423660440,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"41143252","duration":1200,"bikeId":"2244","endDate":1423661880,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1423660680,"startStationId":"648","startStationName":"Peterborough Road, Sands End"}, +{"_id":"41143325","duration":720,"bikeId":"10870","endDate":1423661700,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423660980,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41143392","duration":240,"bikeId":"5715","endDate":1423661520,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1423661280,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41143471","duration":300,"bikeId":"12494","endDate":1423661820,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423661520,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"41143522","duration":900,"bikeId":"12907","endDate":1423662660,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1423661760,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41143591","duration":960,"bikeId":"7723","endDate":1423662960,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423662000,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41143677","duration":900,"bikeId":"10289","endDate":1423663200,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1423662300,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"41143747","duration":600,"bikeId":"3736","endDate":1423663200,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423662600,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41143801","duration":3540,"bikeId":"12589","endDate":1423666380,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1423662840,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41143884","duration":480,"bikeId":"4851","endDate":1423663620,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1423663140,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41143935","duration":1560,"bikeId":"10658","endDate":1423665000,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423663440,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41143996","duration":1500,"bikeId":"10095","endDate":1423665180,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1423663680,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"41144075","duration":240,"bikeId":"12028","endDate":1423664220,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423663980,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41144144","duration":360,"bikeId":"40","endDate":1423664640,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1423664280,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"41144199","duration":660,"bikeId":"7153","endDate":1423665180,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423664520,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41144277","duration":120,"bikeId":"1941","endDate":1423664940,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1423664820,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41144336","duration":360,"bikeId":"6518","endDate":1423665480,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1423665120,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41144410","duration":420,"bikeId":"9701","endDate":1423665900,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1423665480,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41144466","duration":1380,"bikeId":"12691","endDate":1423667160,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423665780,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41144542","duration":1440,"bikeId":"5116","endDate":1423667460,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423666020,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41144605","duration":540,"bikeId":"1406","endDate":1423666860,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1423666320,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41144676","duration":600,"bikeId":"8909","endDate":1423667160,"endStationId":"774","endStationName":"Hurlingham Park, Parsons Green","startDate":1423666560,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41144750","duration":240,"bikeId":"12811","endDate":1423667100,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1423666860,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"41144827","duration":240,"bikeId":"7715","endDate":1423667400,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1423667160,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41144887","duration":1080,"bikeId":"10829","endDate":1423668480,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1423667400,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41144944","duration":1020,"bikeId":"2668","endDate":1423668720,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1423667700,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41145017","duration":660,"bikeId":"11220","endDate":1423668600,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1423667940,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"41145088","duration":1080,"bikeId":"11229","endDate":1423669260,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1423668180,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41145152","duration":720,"bikeId":"9916","endDate":1423669200,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1423668480,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41145219","duration":720,"bikeId":"9703","endDate":1423669440,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1423668720,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41145296","duration":840,"bikeId":"11400","endDate":1423669800,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1423668960,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41145346","duration":660,"bikeId":"10466","endDate":1423669860,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1423669200,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41145427","duration":300,"bikeId":"2133","endDate":1423669800,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423669500,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41145481","duration":2280,"bikeId":"5164","endDate":1423671960,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1423669680,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41145555","duration":1800,"bikeId":"7974","endDate":1423671720,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423669920,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41145622","duration":480,"bikeId":"8598","endDate":1423670700,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423670220,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"41145693","duration":660,"bikeId":"3324","endDate":1423671060,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1423670400,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41145762","duration":660,"bikeId":"12402","endDate":1423671240,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423670580,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"41145839","duration":660,"bikeId":"9417","endDate":1423671420,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423670760,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"41145900","duration":540,"bikeId":"2459","endDate":1423671480,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423670940,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41145956","duration":780,"bikeId":"5300","endDate":1423671840,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423671060,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41146037","duration":180,"bikeId":"3901","endDate":1423671480,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423671300,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41146100","duration":600,"bikeId":"3637","endDate":1423672080,"endStationId":"257","endStationName":"Westminster University, Marylebone","startDate":1423671480,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"41146183","duration":600,"bikeId":"5814","endDate":1423672260,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423671660,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41146233","duration":1200,"bikeId":"8156","endDate":1423673040,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1423671840,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41146320","duration":300,"bikeId":"12351","endDate":1423672380,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1423672080,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41146383","duration":480,"bikeId":"1249","endDate":1423672740,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423672260,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41146447","duration":240,"bikeId":"8446","endDate":1423672680,"endStationId":"86","endStationName":"Sancroft Street, Vauxhall","startDate":1423672440,"startStationId":"435","startStationName":"Kennington Station, Kennington"}, +{"_id":"41146509","duration":720,"bikeId":"4315","endDate":1423673280,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423672560,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"41146569","duration":780,"bikeId":"7375","endDate":1423673460,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1423672680,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"41146653","duration":660,"bikeId":"12983","endDate":1423673520,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423672860,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41146700","duration":1140,"bikeId":"12340","endDate":1423674120,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423672980,"startStationId":"598","startStationName":"Southerton Road, Hammersmith"}, +{"_id":"41146784","duration":240,"bikeId":"1572","endDate":1423673400,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423673160,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"41146835","duration":1680,"bikeId":"2418","endDate":1423674960,"endStationId":"100","endStationName":"Albert Embankment, Vauxhall","startDate":1423673280,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41146916","duration":360,"bikeId":"4753","endDate":1423673880,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1423673520,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41146979","duration":420,"bikeId":"5469","endDate":1423674120,"endStationId":"563","endStationName":"Preston's Road, Cubitt Town","startDate":1423673700,"startStationId":"547","startStationName":"East India DLR, Blackwall"}, +{"_id":"41147023","duration":960,"bikeId":"10056","endDate":1423674780,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423673820,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"41147127","duration":480,"bikeId":"8930","endDate":1423674480,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423674000,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"41147172","duration":660,"bikeId":"10934","endDate":1423674780,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1423674120,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41147231","duration":780,"bikeId":"8576","endDate":1423675020,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423674240,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41147337","duration":540,"bikeId":"1723","endDate":1423674900,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1423674360,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41147354","duration":960,"bikeId":"12452","endDate":1423675380,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1423674420,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41147470","duration":360,"bikeId":"10480","endDate":1423674900,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423674540,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41147505","duration":780,"bikeId":"7881","endDate":1423675380,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423674600,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41147577","duration":660,"bikeId":"4889","endDate":1423675380,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423674720,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"41147639","duration":2340,"bikeId":"1281","endDate":1423677120,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1423674780,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"41147727","duration":360,"bikeId":"9786","endDate":1423675320,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423674960,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41147759","duration":960,"bikeId":"12104","endDate":1423675980,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423675020,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41147859","duration":480,"bikeId":"11537","endDate":1423675620,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1423675140,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41147942","duration":420,"bikeId":"1586","endDate":1423675680,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423675260,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41147956","duration":1020,"bikeId":"12928","endDate":1423676340,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1423675320,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41148050","duration":420,"bikeId":"9926","endDate":1423675860,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1423675440,"startStationId":"525","startStationName":"Churchill Place, Canary Wharf"}, +{"_id":"41148091","duration":1560,"bikeId":"4742","endDate":1423677060,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423675500,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41148157","duration":900,"bikeId":"2537","endDate":1423676520,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1423675620,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"41148224","duration":780,"bikeId":"2376","endDate":1423676520,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1423675740,"startStationId":"505","startStationName":"Ackroyd Drive, Bow"}, +{"_id":"41148330","duration":300,"bikeId":"12959","endDate":1423676160,"endStationId":"775","endStationName":"Little Brook Green, Brook Green","startDate":1423675860,"startStationId":"591","startStationName":"Westfield Library Corner, Shepherd's Bush"}, +{"_id":"41148392","duration":540,"bikeId":"9716","endDate":1423676460,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423675920,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41148424","duration":840,"bikeId":"4884","endDate":1423676820,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423675980,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41148520","duration":360,"bikeId":"3375","endDate":1423676460,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423676100,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41148576","duration":420,"bikeId":"7197","endDate":1423676580,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1423676160,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"41148650","duration":600,"bikeId":"4711","endDate":1423676820,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1423676220,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41148690","duration":1140,"bikeId":"5867","endDate":1423677420,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1423676280,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"41148809","duration":180,"bikeId":"7467","endDate":1423676580,"endStationId":"766","endStationName":"Ram Street, Wandsworth","startDate":1423676400,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"41148886","duration":300,"bikeId":"5542","endDate":1423676760,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1423676460,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41148945","duration":660,"bikeId":"942","endDate":1423677180,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423676520,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41148990","duration":720,"bikeId":"4163","endDate":1423677300,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1423676580,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"41149028","duration":900,"bikeId":"4240","endDate":1423677540,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1423676640,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"41149078","duration":1740,"bikeId":"8817","endDate":1423678440,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1423676700,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41149189","duration":540,"bikeId":"7095","endDate":1423677360,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423676820,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41149252","duration":960,"bikeId":"2072","endDate":1423677840,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1423676880,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"41149326","duration":300,"bikeId":"3578","endDate":1423677300,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423677000,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"41149364","duration":1140,"bikeId":"11028","endDate":1423678200,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1423677060,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"41149445","duration":300,"bikeId":"8188","endDate":1423677480,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1423677180,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41149507","duration":1200,"bikeId":"4806","endDate":1423678440,"endStationId":"668","endStationName":"Ravenscourt Park Station, Hammersmith","startDate":1423677240,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"41149613","duration":300,"bikeId":"9366","endDate":1423677660,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423677360,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41149666","duration":480,"bikeId":"4222","endDate":1423677900,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1423677420,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"41149713","duration":720,"bikeId":"7628","endDate":1423678200,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1423677480,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41149781","duration":1380,"bikeId":"12588","endDate":1423678920,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1423677540,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41149854","duration":600,"bikeId":"5844","endDate":1423678260,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423677660,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41149898","duration":1560,"bikeId":"568","endDate":1423679280,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1423677720,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41149988","duration":360,"bikeId":"685","endDate":1423678200,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1423677840,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41150064","duration":660,"bikeId":"12276","endDate":1423678560,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1423677900,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41150078","duration":1200,"bikeId":"4994","endDate":1423679160,"endStationId":"768","endStationName":"Clapham Common Northside, Clapham Common","startDate":1423677960,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"41150190","duration":420,"bikeId":"8858","endDate":1423678500,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1423678080,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41150237","duration":840,"bikeId":"3015","endDate":1423678980,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1423678140,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41150308","duration":900,"bikeId":"8449","endDate":1423679100,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1423678200,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41150364","duration":1080,"bikeId":"294","endDate":1423679340,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1423678260,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41150403","duration":1980,"bikeId":"2995","endDate":1423680300,"endStationId":"222","endStationName":"Knightsbridge, Hyde Park","startDate":1423678320,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41150521","duration":840,"bikeId":"4307","endDate":1423679280,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1423678440,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41150554","duration":1440,"bikeId":"4024","endDate":1423679940,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423678500,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41150640","duration":300,"bikeId":"9334","endDate":1423678920,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1423678620,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41150702","duration":1020,"bikeId":"7339","endDate":1423679700,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423678680,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41150795","duration":300,"bikeId":"2485","endDate":1423679100,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423678800,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"41150831","duration":780,"bikeId":"2342","endDate":1423679640,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1423678860,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41150945","duration":120,"bikeId":"6926","endDate":1423679100,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1423678980,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"41150968","duration":540,"bikeId":"13036","endDate":1423679580,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1423679040,"startStationId":"608","startStationName":"Colet Gardens, Hammersmith"}, +{"_id":"41151067","duration":480,"bikeId":"11824","endDate":1423679640,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1423679160,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41151129","duration":120,"bikeId":"469","endDate":1423679400,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1423679280,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41151196","duration":300,"bikeId":"12059","endDate":1423679700,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423679400,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"41151246","duration":1620,"bikeId":"923","endDate":1423681080,"endStationId":"672","endStationName":"Grant Road Central, Clapham Junction","startDate":1423679460,"startStationId":"652","startStationName":"Evesham Street, Avondale"}, +{"_id":"41151339","duration":300,"bikeId":"1072","endDate":1423679940,"endStationId":"505","endStationName":"Ackroyd Drive, Bow","startDate":1423679640,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41151380","duration":780,"bikeId":"9815","endDate":1423680480,"endStationId":"549","endStationName":"Gaywood Street, Elephant & Castle","startDate":1423679700,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41151467","duration":300,"bikeId":"6814","endDate":1423680120,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1423679820,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41151537","duration":480,"bikeId":"11726","endDate":1423680360,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1423679880,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41151567","duration":1800,"bikeId":"7755","endDate":1423681740,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1423679940,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41151647","duration":840,"bikeId":"5385","endDate":1423680900,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1423680060,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41151753","duration":360,"bikeId":"1873","endDate":1423680540,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1423680180,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41151783","duration":900,"bikeId":"12466","endDate":1423681140,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423680240,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41151882","duration":480,"bikeId":"7226","endDate":1423680840,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1423680360,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41151905","duration":720,"bikeId":"190","endDate":1423681140,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1423680420,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41151971","duration":1020,"bikeId":"12503","endDate":1423681560,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1423680540,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41152052","duration":1680,"bikeId":"11951","endDate":1423682340,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1423680660,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41152128","duration":1140,"bikeId":"5461","endDate":1423681920,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1423680780,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41152179","duration":600,"bikeId":"9243","endDate":1423681500,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1423680900,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41152238","duration":540,"bikeId":"10560","endDate":1423681560,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1423681020,"startStationId":"696","startStationName":"Charing Cross Hospital, Hammersmith"}, +{"_id":"41152315","duration":480,"bikeId":"8986","endDate":1423681620,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1423681140,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41152380","duration":1080,"bikeId":"11010","endDate":1423682340,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423681260,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41152462","duration":780,"bikeId":"1715","endDate":1423682160,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1423681380,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41152520","duration":780,"bikeId":"10426","endDate":1423682280,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1423681500,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41152608","duration":180,"bikeId":"11949","endDate":1423681860,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1423681680,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41152663","duration":240,"bikeId":"7674","endDate":1423682040,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1423681800,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"41152739","duration":660,"bikeId":"7842","endDate":1423682580,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1423681920,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"41152795","duration":1020,"bikeId":"3027","endDate":1423683060,"endStationId":"339","endStationName":"Risinghill Street, Angel","startDate":1423682040,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"41152875","duration":240,"bikeId":"8361","endDate":1423682460,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1423682220,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"41152946","duration":540,"bikeId":"45","endDate":1423682880,"endStationId":"709","endStationName":"Montserrat Road , Putney","startDate":1423682340,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"41152995","duration":780,"bikeId":"7579","endDate":1423683300,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1423682520,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41153101","duration":360,"bikeId":"560","endDate":1423683060,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1423682700,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41153160","duration":600,"bikeId":"12967","endDate":1423683420,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1423682820,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41153213","duration":720,"bikeId":"5543","endDate":1423683720,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423683000,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41153267","duration":600,"bikeId":"4547","endDate":1423683780,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1423683180,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"41153346","duration":2100,"bikeId":"8276","endDate":1423685400,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1423683300,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41153424","duration":480,"bikeId":"3578","endDate":1423683960,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1423683480,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41153466","duration":960,"bikeId":"2300","endDate":1423684560,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1423683600,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"41153541","duration":1260,"bikeId":"9778","endDate":1423685040,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1423683780,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41153621","duration":240,"bikeId":"11788","endDate":1423684260,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1423684020,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41153673","duration":7980,"bikeId":"46","endDate":1423692120,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1423684140,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41153740","duration":1200,"bikeId":"4505","endDate":1423685520,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1423684320,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"41153820","duration":1560,"bikeId":"3909","endDate":1423686060,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1423684500,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"41153906","duration":240,"bikeId":"9291","endDate":1423684980,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1423684740,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"41153958","duration":600,"bikeId":"6661","endDate":1423685520,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1423684920,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"41154035","duration":600,"bikeId":"5726","endDate":1423685700,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1423685100,"startStationId":"611","startStationName":"Princedale Road , Holland Park"}, +{"_id":"41154094","duration":1020,"bikeId":"10898","endDate":1423686300,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1423685280,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41154144","duration":900,"bikeId":"7330","endDate":1423686420,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1423685520,"startStationId":"528","startStationName":"Clarges Street, West End"}, +{"_id":"41154237","duration":540,"bikeId":"12218","endDate":1423686360,"endStationId":"702","endStationName":"Durant Street, Bethnal Green","startDate":1423685820,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"41154292","duration":660,"bikeId":"6241","endDate":1423686720,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423686060,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"41154370","duration":360,"bikeId":"11180","endDate":1423686720,"endStationId":"247","endStationName":"St. John's Wood Church, Regent's Park","startDate":1423686360,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"41154425","duration":1140,"bikeId":"5287","endDate":1423687740,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1423686600,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41154482","duration":1020,"bikeId":"11801","endDate":1423687860,"endStationId":"699","endStationName":"Belford House, Haggerston","startDate":1423686840,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41154558","duration":780,"bikeId":"8846","endDate":1423687860,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1423687080,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41154618","duration":1380,"bikeId":"12595","endDate":1423688760,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1423687380,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41154680","duration":1200,"bikeId":"10789","endDate":1423688940,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1423687740,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"41154755","duration":240,"bikeId":"11520","endDate":1423688280,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1423688040,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41154824","duration":720,"bikeId":"9452","endDate":1423689060,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1423688340,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41154880","duration":1500,"bikeId":"4465","endDate":1423690080,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1423688580,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41154954","duration":240,"bikeId":"3835","endDate":1423689120,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1423688880,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41155001","duration":2220,"bikeId":"12225","endDate":1423691400,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1423689180,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"41155079","duration":1320,"bikeId":"9340","endDate":1423690860,"endStationId":"286","endStationName":"St. John's Wood Road, St. John's Wood","startDate":1423689540,"startStationId":"8","startStationName":"Lodge Road, St. John's Wood"}, +{"_id":"41155142","duration":1740,"bikeId":"798","endDate":1423691580,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1423689840,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41155222","duration":360,"bikeId":"6448","endDate":1423690560,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1423690200,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41155292","duration":480,"bikeId":"9529","endDate":1423691100,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1423690620,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"41155357","duration":840,"bikeId":"12861","endDate":1423691760,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1423690920,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"41155422","duration":840,"bikeId":"5413","endDate":1423692060,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1423691220,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"41155485","duration":1440,"bikeId":"6856","endDate":1423692900,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1423691460,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41155554","duration":300,"bikeId":"7835","endDate":1423692060,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1423691760,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"41155613","duration":1020,"bikeId":"3662","endDate":1423693080,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1423692060,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41155685","duration":660,"bikeId":"9873","endDate":1423693080,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1423692420,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"41155752","duration":2640,"bikeId":"12835","endDate":1423695300,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1423692660,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41155839","duration":180,"bikeId":"10046","endDate":1423693200,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1423693020,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41155899","duration":300,"bikeId":"5471","endDate":1423693680,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1423693380,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41155960","duration":300,"bikeId":"3030","endDate":1423694160,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1423693860,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41156027","duration":720,"bikeId":"1627","endDate":1423695000,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1423694280,"startStationId":"616","startStationName":"Aintree Street, Fulham"}, +{"_id":"41156099","duration":420,"bikeId":"3981","endDate":1423695120,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1423694700,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41156155","duration":1680,"bikeId":"4918","endDate":1423696800,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1423695120,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"41156240","duration":960,"bikeId":"167","endDate":1423696500,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1423695540,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"41156311","duration":420,"bikeId":"3679","endDate":1423696560,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1423696140,"startStationId":"766","startStationName":"Ram Street, Wandsworth"}, +{"_id":"41156375","duration":180,"bikeId":"6428","endDate":1423696800,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1423696620,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41156447","duration":180,"bikeId":"12853","endDate":1423697400,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1423697220,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41156513","duration":1740,"bikeId":"3632","endDate":1423699680,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1423697940,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"41156583","duration":840,"bikeId":"328","endDate":1423699620,"endStationId":"761","endStationName":"Humbolt Road, Fulham","startDate":1423698780,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41156647","duration":2160,"bikeId":"5964","endDate":1423701840,"endStationId":"412","endStationName":"Cleaver Street, Kennington","startDate":1423699680,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41156723","duration":960,"bikeId":"11467","endDate":1423701540,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1423700580,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41156795","duration":540,"bikeId":"831","endDate":1423702440,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1423701900,"startStationId":"564","startStationName":"Somerset House, Strand"}, +{"_id":"41156862","duration":300,"bikeId":"8345","endDate":1423703940,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1423703640,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41156927","duration":900,"bikeId":"10158","endDate":1423707300,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1423706400,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41156998","duration":240,"bikeId":"3209","endDate":1423710420,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1423710180,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"41157059","duration":40380,"bikeId":"8410","endDate":1423755840,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1423715460,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"41157129","duration":300,"bikeId":"4195","endDate":1423719420,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423719120,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41157195","duration":240,"bikeId":"4552","endDate":1423721040,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423720800,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41157259","duration":540,"bikeId":"13046","endDate":1423722300,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423721760,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41157327","duration":300,"bikeId":"2455","endDate":1423722600,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1423722300,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41157392","duration":1200,"bikeId":"12651","endDate":1423723980,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1423722780,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41157459","duration":780,"bikeId":"10916","endDate":1423723920,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1423723140,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41157526","duration":240,"bikeId":"10076","endDate":1423723800,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423723560,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41157592","duration":480,"bikeId":"8215","endDate":1423724280,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1423723800,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"41157646","duration":1140,"bikeId":"3305","endDate":1423725180,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1423724040,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"41157712","duration":1500,"bikeId":"12505","endDate":1423725780,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423724280,"startStationId":"642","startStationName":"Fawcett Close, Battersea"}, +{"_id":"41157783","duration":420,"bikeId":"10615","endDate":1423725000,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423724580,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41157839","duration":1440,"bikeId":"3479","endDate":1423726260,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423724820,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"41157930","duration":660,"bikeId":"10766","endDate":1423725660,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1423725000,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41157969","duration":1260,"bikeId":"12696","endDate":1423726380,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1423725120,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41158048","duration":1800,"bikeId":"4987","endDate":1423727100,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1423725300,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41158117","duration":120,"bikeId":"9285","endDate":1423725660,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423725540,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41158191","duration":780,"bikeId":"3988","endDate":1423726440,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1423725660,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"41158237","duration":720,"bikeId":"6890","endDate":1423726560,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1423725840,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41158315","duration":240,"bikeId":"10905","endDate":1423726260,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423726020,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41158388","duration":180,"bikeId":"2544","endDate":1423726320,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423726140,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41158460","duration":120,"bikeId":"4468","endDate":1423726380,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1423726260,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41158503","duration":1560,"bikeId":"3685","endDate":1423727880,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423726320,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41158571","duration":720,"bikeId":"2155","endDate":1423727220,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423726500,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"41158646","duration":840,"bikeId":"10040","endDate":1423727460,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1423726620,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41158728","duration":600,"bikeId":"11270","endDate":1423727340,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1423726740,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41158826","duration":180,"bikeId":"10581","endDate":1423727040,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1423726860,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"41158823","duration":600,"bikeId":"4081","endDate":1423727520,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1423726920,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41158916","duration":1500,"bikeId":"1889","endDate":1423728480,"endStationId":"652","endStationName":"Evesham Street, Avondale","startDate":1423726980,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"41158976","duration":420,"bikeId":"1792","endDate":1423727520,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423727100,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41159044","duration":1200,"bikeId":"9159","endDate":1423728360,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1423727160,"startStationId":"776","startStationName":"Abyssinia Close, Clapham Junction"}, +{"_id":"41159093","duration":780,"bikeId":"4703","endDate":1423728060,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1423727280,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41159202","duration":300,"bikeId":"1480","endDate":1423727700,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1423727400,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41159217","duration":840,"bikeId":"6458","endDate":1423728300,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423727460,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41159315","duration":420,"bikeId":"10512","endDate":1423728000,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1423727580,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41159360","duration":720,"bikeId":"12904","endDate":1423728360,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423727640,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41159455","duration":120,"bikeId":"12362","endDate":1423727880,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423727760,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41159486","duration":960,"bikeId":"11827","endDate":1423728780,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1423727820,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41159570","duration":360,"bikeId":"3508","endDate":1423728300,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1423727940,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41159645","duration":780,"bikeId":"3769","endDate":1423728780,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423728000,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"41159682","duration":1080,"bikeId":"3138","endDate":1423729140,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423728060,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41159779","duration":420,"bikeId":"11451","endDate":1423728600,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1423728180,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41159869","duration":900,"bikeId":"145","endDate":1423729140,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1423728240,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41159920","duration":1200,"bikeId":"9649","endDate":1423729500,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1423728300,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"41160006","duration":720,"bikeId":"2907","endDate":1423729140,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1423728420,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41160063","duration":900,"bikeId":"7877","endDate":1423729380,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423728480,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"41160127","duration":1260,"bikeId":"12862","endDate":1423729800,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1423728540,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41160231","duration":300,"bikeId":"10028","endDate":1423728960,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1423728660,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41160276","duration":360,"bikeId":"8775","endDate":1423729080,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423728720,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41160311","duration":780,"bikeId":"12402","endDate":1423729560,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423728780,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41160367","duration":600,"bikeId":"7601","endDate":1423729440,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1423728840,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"41160484","duration":660,"bikeId":"5304","endDate":1423729560,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423728900,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41160532","duration":540,"bikeId":"6554","endDate":1423729500,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1423728960,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"41160574","duration":600,"bikeId":"9384","endDate":1423729620,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1423729020,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41160658","duration":720,"bikeId":"2396","endDate":1423729800,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1423729080,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41160708","duration":780,"bikeId":"6184","endDate":1423729920,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423729140,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41160803","duration":660,"bikeId":"1884","endDate":1423729860,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1423729200,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41160849","duration":780,"bikeId":"8320","endDate":1423730040,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1423729260,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41160931","duration":900,"bikeId":"11819","endDate":1423730220,"endStationId":"8","endStationName":"Lodge Road, St. John's Wood","startDate":1423729320,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41160977","duration":960,"bikeId":"2354","endDate":1423730340,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423729380,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"41161016","duration":1020,"bikeId":"1127","endDate":1423730460,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1423729440,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41161089","duration":1080,"bikeId":"3987","endDate":1423730580,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1423729500,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41161155","duration":1500,"bikeId":"7923","endDate":1423731060,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1423729560,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41161240","duration":1140,"bikeId":"2977","endDate":1423730760,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1423729620,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41161280","duration":1020,"bikeId":"12677","endDate":1423730700,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1423729680,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41161361","duration":1440,"bikeId":"9719","endDate":1423731180,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1423729740,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41161412","duration":1320,"bikeId":"5746","endDate":1423731120,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1423729800,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41161530","duration":1020,"bikeId":"6320","endDate":1423730880,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423729860,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41161607","duration":720,"bikeId":"1302","endDate":1423730640,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423729920,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"41161665","duration":540,"bikeId":"6657","endDate":1423730520,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423729980,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41161693","duration":480,"bikeId":"4934","endDate":1423730520,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423730040,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41161785","duration":420,"bikeId":"3787","endDate":1423730520,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1423730100,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"41161879","duration":540,"bikeId":"3225","endDate":1423730700,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423730160,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41161958","duration":180,"bikeId":"11061","endDate":1423730400,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423730220,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"41161957","duration":1440,"bikeId":"2157","endDate":1423731660,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1423730220,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"41162079","duration":360,"bikeId":"2277","endDate":1423730700,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1423730340,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"41162140","duration":540,"bikeId":"5367","endDate":1423730940,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423730400,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41162187","duration":360,"bikeId":"6502","endDate":1423730820,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1423730460,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41162193","duration":1500,"bikeId":"12810","endDate":1423731960,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1423730460,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"41162303","duration":1080,"bikeId":"4364","endDate":1423731600,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1423730520,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41162403","duration":900,"bikeId":"6179","endDate":1423731480,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1423730580,"startStationId":"482","startStationName":"Thornfield House, Poplar"}, +{"_id":"41162416","duration":840,"bikeId":"6455","endDate":1423731480,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1423730640,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41162514","duration":480,"bikeId":"10579","endDate":1423731180,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1423730700,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41162590","duration":120,"bikeId":"8916","endDate":1423730880,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423730760,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41162655","duration":1560,"bikeId":"10881","endDate":1423732320,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1423730760,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41162679","duration":1140,"bikeId":"10079","endDate":1423731960,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1423730820,"startStationId":"716","startStationName":"Stainsby Road , Poplar"}, +{"_id":"41162775","duration":900,"bikeId":"3619","endDate":1423731780,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1423730880,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41162869","duration":900,"bikeId":"8475","endDate":1423731840,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423730940,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41162929","duration":780,"bikeId":"6508","endDate":1423731780,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1423731000,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41162977","duration":900,"bikeId":"7821","endDate":1423731960,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1423731060,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41163020","duration":1080,"bikeId":"8454","endDate":1423732200,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1423731120,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"41163256","duration":1320,"bikeId":"7467","endDate":1423732500,"endStationId":"766","endStationName":"Ram Street, Wandsworth","startDate":1423731180,"startStationId":"659","startStationName":"Grant Road West, Clapham Junction"}, +{"_id":"41163143","duration":1200,"bikeId":"6285","endDate":1423732440,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1423731240,"startStationId":"521","startStationName":"Driffield Road, Old Ford"}, +{"_id":"41163224","duration":1020,"bikeId":"9206","endDate":1423732320,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1423731300,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"41163287","duration":1260,"bikeId":"9120","endDate":1423732620,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1423731360,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41163452","duration":300,"bikeId":"10921","endDate":1423731780,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1423731480,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41163530","duration":180,"bikeId":"7140","endDate":1423731720,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423731540,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41163566","duration":240,"bikeId":"504","endDate":1423731840,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1423731600,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41163585","duration":420,"bikeId":"1054","endDate":1423732080,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423731660,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"41163638","duration":1260,"bikeId":"1926","endDate":1423732980,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1423731720,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41163765","duration":480,"bikeId":"12775","endDate":1423732320,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1423731840,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41163786","duration":1020,"bikeId":"5718","endDate":1423732920,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423731900,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41163865","duration":420,"bikeId":"1051","endDate":1423732440,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423732020,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"41163940","duration":180,"bikeId":"7729","endDate":1423732320,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1423732140,"startStationId":"774","startStationName":"Hurlingham Park, Parsons Green"}, +{"_id":"41163994","duration":480,"bikeId":"11230","endDate":1423732680,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423732200,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41164033","duration":960,"bikeId":"11989","endDate":1423733220,"endStationId":"556","endStationName":"Heron Quays DLR, Canary Wharf","startDate":1423732260,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"41164123","duration":900,"bikeId":"8224","endDate":1423733280,"endStationId":"174","endStationName":"Strand, Strand","startDate":1423732380,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"41164226","duration":300,"bikeId":"110","endDate":1423732800,"endStationId":"365","endStationName":"City Road, Angel","startDate":1423732500,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41164253","duration":900,"bikeId":"2221","endDate":1423733460,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1423732560,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"41164332","duration":780,"bikeId":"1395","endDate":1423733460,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1423732680,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"41164398","duration":840,"bikeId":"767","endDate":1423733640,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1423732800,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"41164469","duration":720,"bikeId":"4986","endDate":1423733640,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423732920,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41164540","duration":300,"bikeId":"7120","endDate":1423733400,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1423733100,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41164572","duration":1740,"bikeId":"9088","endDate":1423734900,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423733160,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41164659","duration":1380,"bikeId":"3202","endDate":1423734660,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1423733280,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"41164733","duration":480,"bikeId":"4291","endDate":1423733940,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1423733460,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41164811","duration":780,"bikeId":"5432","endDate":1423734360,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1423733580,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41164889","duration":240,"bikeId":"949","endDate":1423734000,"endStationId":"280","endStationName":"Royal Avenue 2, Chelsea","startDate":1423733760,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"41164949","duration":120,"bikeId":"8823","endDate":1423734000,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1423733880,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41165015","duration":600,"bikeId":"2662","endDate":1423734600,"endStationId":"530","endStationName":"Newby Place, Poplar","startDate":1423734000,"startStationId":"496","startStationName":"Devons Road, Bow"}, +{"_id":"41165059","duration":780,"bikeId":"11799","endDate":1423734900,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1423734120,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"41165139","duration":5280,"bikeId":"9625","endDate":1423739520,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1423734240,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41165221","duration":540,"bikeId":"7602","endDate":1423734960,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1423734420,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"41165290","duration":480,"bikeId":"6739","endDate":1423735080,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1423734600,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41165337","duration":480,"bikeId":"7336","endDate":1423735260,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423734780,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41165424","duration":360,"bikeId":"10739","endDate":1423735380,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1423735020,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41165483","duration":600,"bikeId":"1954","endDate":1423735800,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1423735200,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41165656","duration":840,"bikeId":"10985","endDate":1423736280,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1423735440,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41165616","duration":660,"bikeId":"6348","endDate":1423736400,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1423735740,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41165691","duration":300,"bikeId":"10630","endDate":1423736340,"endStationId":"637","endStationName":"Spencer Park, Wandsworth Common","startDate":1423736040,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"41165761","duration":480,"bikeId":"6459","endDate":1423736820,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1423736340,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"41165811","duration":3300,"bikeId":"2107","endDate":1423739880,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1423736580,"startStationId":"624","startStationName":"Courland Grove, Wandsworth Road"}, +{"_id":"41165883","duration":1200,"bikeId":"10427","endDate":1423738140,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1423736940,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41165943","duration":1080,"bikeId":"10606","endDate":1423738320,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423737240,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41166007","duration":1620,"bikeId":"8683","endDate":1423739160,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1423737540,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41166087","duration":120,"bikeId":"6703","endDate":1423738020,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423737900,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41166160","duration":180,"bikeId":"2666","endDate":1423738320,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1423738140,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41166221","duration":840,"bikeId":"432","endDate":1423739280,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1423738440,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"41166288","duration":1140,"bikeId":"1896","endDate":1423739880,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1423738740,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41166368","duration":360,"bikeId":"1035","endDate":1423739520,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423739160,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41166429","duration":1140,"bikeId":"5823","endDate":1423740600,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1423739460,"startStationId":"315","startStationName":"The Tennis Courts, Regent's Park"}, +{"_id":"41166497","duration":2880,"bikeId":"9074","endDate":1423742580,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1423739700,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41166563","duration":1680,"bikeId":"10089","endDate":1423741680,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1423740000,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41166627","duration":1800,"bikeId":"8361","endDate":1423742100,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423740300,"startStationId":"692","startStationName":"Cadogan Close, Victoria Park"}, +{"_id":"41166700","duration":1380,"bikeId":"11171","endDate":1423742160,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1423740780,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41166774","duration":1620,"bikeId":"7017","endDate":1423742700,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1423741080,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"41166846","duration":240,"bikeId":"4901","endDate":1423741740,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1423741500,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41166906","duration":1380,"bikeId":"1006","endDate":1423743120,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1423741740,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41166976","duration":2340,"bikeId":"6560","endDate":1423744440,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1423742100,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"41167045","duration":480,"bikeId":"1881","endDate":1423742880,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1423742400,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41167116","duration":2820,"bikeId":"1972","endDate":1423745460,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423742640,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41167192","duration":660,"bikeId":"2200","endDate":1423743600,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1423742940,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"41167245","duration":840,"bikeId":"4354","endDate":1423744080,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1423743240,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41167330","duration":360,"bikeId":"3622","endDate":1423743900,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1423743540,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41167391","duration":360,"bikeId":"2169","endDate":1423744200,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1423743840,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"41167472","duration":420,"bikeId":"11536","endDate":1423744560,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423744140,"startStationId":"762","startStationName":"Storey's Gate, Westminster"}, +{"_id":"41167530","duration":960,"bikeId":"12520","endDate":1423745340,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1423744380,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41167605","duration":420,"bikeId":"6000","endDate":1423745100,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1423744680,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41167659","duration":540,"bikeId":"3589","endDate":1423745460,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1423744920,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41167728","duration":600,"bikeId":"4911","endDate":1423745760,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1423745160,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41167810","duration":420,"bikeId":"7084","endDate":1423745760,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1423745340,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41167888","duration":300,"bikeId":"689","endDate":1423745880,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1423745580,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"41167933","duration":1140,"bikeId":"11096","endDate":1423746900,"endStationId":"765","endStationName":"Ranelagh Gardens, Fulham","startDate":1423745760,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"41168011","duration":900,"bikeId":"3688","endDate":1423746900,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1423746000,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41168074","duration":420,"bikeId":"6118","endDate":1423746660,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1423746240,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41168152","duration":420,"bikeId":"3215","endDate":1423746900,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423746480,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41168212","duration":600,"bikeId":"7694","endDate":1423747320,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1423746720,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"41168280","duration":300,"bikeId":"2723","endDate":1423747320,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1423747020,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"41168337","duration":480,"bikeId":"10243","endDate":1423747800,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1423747320,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"41168408","duration":600,"bikeId":"2574","endDate":1423748220,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1423747620,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41168476","duration":240,"bikeId":"7113","endDate":1423748100,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1423747860,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41168550","duration":300,"bikeId":"5190","endDate":1423748400,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1423748100,"startStationId":"49","startStationName":"Curzon Street, Mayfair"}, +{"_id":"41168605","duration":600,"bikeId":"5755","endDate":1423748940,"endStationId":"527","endStationName":"Hansard Mews, Shepherds Bush","startDate":1423748340,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"41168679","duration":480,"bikeId":"9512","endDate":1423749060,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1423748580,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41168745","duration":840,"bikeId":"7012","endDate":1423749660,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1423748820,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"41168813","duration":360,"bikeId":"10955","endDate":1423749480,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1423749120,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"41168887","duration":780,"bikeId":"10185","endDate":1423750140,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1423749360,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"41168952","duration":600,"bikeId":"12231","endDate":1423750260,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1423749660,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"41169027","duration":300,"bikeId":"2516","endDate":1423750200,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1423749900,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"41169091","duration":480,"bikeId":"11447","endDate":1423750620,"endStationId":"677","endStationName":"Heath Road, Battersea","startDate":1423750140,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"41169146","duration":1200,"bikeId":"9433","endDate":1423751640,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1423750440,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41169227","duration":360,"bikeId":"4781","endDate":1423751100,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1423750740,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41169283","duration":720,"bikeId":"4153","endDate":1423751820,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1423751100,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"41169362","duration":480,"bikeId":"4197","endDate":1423751880,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1423751400,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41169424","duration":3000,"bikeId":"3189","endDate":1423754700,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1423751700,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41169479","duration":6720,"bikeId":"11759","endDate":1423758660,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1423751940,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"41169555","duration":1020,"bikeId":"12264","endDate":1423753260,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423752240,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41169631","duration":360,"bikeId":"3453","endDate":1423752900,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1423752540,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41169687","duration":1260,"bikeId":"8433","endDate":1423753980,"endStationId":"561","endStationName":"Rectory Square, Stepney","startDate":1423752720,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41169762","duration":1080,"bikeId":"9330","endDate":1423754100,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423753020,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"41169832","duration":240,"bikeId":"4253","endDate":1423753620,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423753380,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"41169906","duration":540,"bikeId":"8232","endDate":1423754160,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1423753620,"startStationId":"209","startStationName":"Denyer Street, Knightsbridge"}, +{"_id":"41169960","duration":960,"bikeId":"3127","endDate":1423754820,"endStationId":"76","endStationName":"Longford Street, Regent's Park","startDate":1423753860,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41170045","duration":300,"bikeId":"10637","endDate":1423754580,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423754280,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"41170096","duration":660,"bikeId":"9959","endDate":1423755180,"endStationId":"576","endStationName":"Alpha Grove, Millwall","startDate":1423754520,"startStationId":"473","startStationName":"Millharbour, Millwall"}, +{"_id":"41170161","duration":840,"bikeId":"3764","endDate":1423755720,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1423754880,"startStationId":"121","startStationName":"Baker Street, Marylebone"}, +{"_id":"41170235","duration":1200,"bikeId":"6535","endDate":1423756320,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1423755120,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41170290","duration":1500,"bikeId":"10890","endDate":1423756920,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1423755420,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41170377","duration":360,"bikeId":"11553","endDate":1423756080,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1423755720,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41170440","duration":1560,"bikeId":"9529","endDate":1423757460,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1423755900,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41170505","duration":1560,"bikeId":"7036","endDate":1423757700,"endStationId":"174","endStationName":"Strand, Strand","startDate":1423756140,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41170575","duration":480,"bikeId":"889","endDate":1423756920,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423756440,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41170644","duration":1500,"bikeId":"10537","endDate":1423758180,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1423756680,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41170717","duration":240,"bikeId":"4896","endDate":1423757220,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423756980,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41170773","duration":1440,"bikeId":"5449","endDate":1423758540,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423757100,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"41170854","duration":180,"bikeId":"1801","endDate":1423757520,"endStationId":"464","endStationName":"St. Mary and St. Michael Church, Stepney","startDate":1423757340,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41170912","duration":1380,"bikeId":"6504","endDate":1423758900,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1423757520,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"41170959","duration":2520,"bikeId":"8709","endDate":1423760220,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1423757700,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41171048","duration":540,"bikeId":"2067","endDate":1423758480,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423757940,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41171108","duration":660,"bikeId":"8427","endDate":1423758780,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1423758120,"startStationId":"222","startStationName":"Knightsbridge, Hyde Park"}, +{"_id":"41171172","duration":600,"bikeId":"9315","endDate":1423758960,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1423758360,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"41171247","duration":780,"bikeId":"12425","endDate":1423759320,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1423758540,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41171318","duration":960,"bikeId":"11380","endDate":1423759680,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423758720,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"41171390","duration":660,"bikeId":"12792","endDate":1423759560,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1423758900,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41171447","duration":1740,"bikeId":"8794","endDate":1423760760,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1423759020,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"41171547","duration":480,"bikeId":"9030","endDate":1423759740,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1423759260,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41171602","duration":960,"bikeId":"12163","endDate":1423760400,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1423759440,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41171675","duration":300,"bikeId":"12102","endDate":1423759980,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1423759680,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41171739","duration":1320,"bikeId":"8239","endDate":1423761120,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1423759800,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41171797","duration":540,"bikeId":"12083","endDate":1423760520,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1423759980,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"41171862","duration":2460,"bikeId":"3855","endDate":1423762560,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1423760100,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41171936","duration":840,"bikeId":"602","endDate":1423761120,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1423760280,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"41172005","duration":420,"bikeId":"8647","endDate":1423760880,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1423760460,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41172076","duration":420,"bikeId":"2878","endDate":1423761000,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1423760580,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41172118","duration":900,"bikeId":"4612","endDate":1423761540,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1423760640,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"41172215","duration":540,"bikeId":"5841","endDate":1423761300,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1423760760,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"41172271","duration":420,"bikeId":"232","endDate":1423761300,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423760880,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41172366","duration":480,"bikeId":"11433","endDate":1423761480,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1423761000,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41172413","duration":1380,"bikeId":"11287","endDate":1423762440,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1423761060,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"41172459","duration":1020,"bikeId":"1552","endDate":1423762200,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1423761180,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41172540","duration":480,"bikeId":"4510","endDate":1423761780,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1423761300,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41172600","duration":960,"bikeId":"6256","endDate":1423762320,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423761360,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41172687","duration":600,"bikeId":"2027","endDate":1423762080,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423761480,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41172729","duration":1020,"bikeId":"9494","endDate":1423762620,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1423761600,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"41172809","duration":360,"bikeId":"6582","endDate":1423762080,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423761720,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41172881","duration":600,"bikeId":"12506","endDate":1423762440,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423761840,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41172943","duration":480,"bikeId":"6651","endDate":1423762440,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1423761960,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41173014","duration":120,"bikeId":"5045","endDate":1423762200,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423762080,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"41173067","duration":1680,"bikeId":"6410","endDate":1423763820,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423762140,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41173132","duration":900,"bikeId":"10507","endDate":1423763160,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1423762260,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41173226","duration":420,"bikeId":"31","endDate":1423762800,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423762380,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41173254","duration":900,"bikeId":"7166","endDate":1423763340,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1423762440,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41173306","duration":1680,"bikeId":"3665","endDate":1423764180,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1423762500,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"41173451","duration":240,"bikeId":"9092","endDate":1423762860,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1423762620,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41173455","duration":600,"bikeId":"9219","endDate":1423763280,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423762680,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41173532","duration":840,"bikeId":"9849","endDate":1423763580,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1423762740,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41173598","duration":1740,"bikeId":"10846","endDate":1423764540,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1423762800,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41173677","duration":480,"bikeId":"6791","endDate":1423763400,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423762920,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41173753","duration":1020,"bikeId":"4288","endDate":1423764000,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1423762980,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41173851","duration":180,"bikeId":"11743","endDate":1423763280,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1423763100,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41173874","duration":600,"bikeId":"2470","endDate":1423763760,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1423763160,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41173990","duration":120,"bikeId":"581","endDate":1423763400,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1423763280,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"41174030","duration":720,"bikeId":"8308","endDate":1423764060,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423763340,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41174089","duration":420,"bikeId":"7950","endDate":1423763880,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1423763460,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41174132","duration":840,"bikeId":"10553","endDate":1423764360,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1423763520,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"41174186","duration":1380,"bikeId":"1008","endDate":1423764960,"endStationId":"693","endStationName":"Felsham Road, Putney","startDate":1423763580,"startStationId":"172","startStationName":"Sumner Place, South Kensington"}, +{"_id":"41174294","duration":600,"bikeId":"9252","endDate":1423764300,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1423763700,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41174362","duration":720,"bikeId":"5598","endDate":1423764480,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1423763760,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41174435","duration":180,"bikeId":"10896","endDate":1423764060,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1423763880,"startStationId":"209","startStationName":"Denyer Street, Knightsbridge"}, +{"_id":"41174499","duration":600,"bikeId":"10938","endDate":1423764540,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1423763940,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41174595","duration":180,"bikeId":"10968","endDate":1423764240,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423764060,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41174625","duration":480,"bikeId":"10588","endDate":1423764600,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423764120,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41174655","duration":1560,"bikeId":"11904","endDate":1423765740,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423764180,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41174788","duration":360,"bikeId":"7505","endDate":1423764660,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1423764300,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41174796","duration":720,"bikeId":"9795","endDate":1423765080,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423764360,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"41174877","duration":900,"bikeId":"7856","endDate":1423765320,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1423764420,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41174957","duration":1020,"bikeId":"10829","endDate":1423765500,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1423764480,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41175013","duration":240,"bikeId":"7561","endDate":1423764840,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1423764600,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"41175103","duration":360,"bikeId":"9980","endDate":1423765020,"endStationId":"693","endStationName":"Felsham Road, Putney","startDate":1423764660,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"41175177","duration":540,"bikeId":"2437","endDate":1423765260,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1423764720,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41175188","duration":1140,"bikeId":"4041","endDate":1423765920,"endStationId":"339","endStationName":"Risinghill Street, Angel","startDate":1423764780,"startStationId":"60","startStationName":"Lisson Grove, St. John's Wood"}, +{"_id":"41175309","duration":300,"bikeId":"4782","endDate":1423765200,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423764900,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41175349","duration":720,"bikeId":"11087","endDate":1423765680,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1423764960,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41175449","duration":300,"bikeId":"7383","endDate":1423765380,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423765080,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"41175460","duration":600,"bikeId":"1589","endDate":1423765740,"endStationId":"750","endStationName":"Culvert Road, Battersea","startDate":1423765140,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"41175546","duration":240,"bikeId":"11294","endDate":1423765500,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1423765260,"startStationId":"139","startStationName":"Lambeth Road, Vauxhall"}, +{"_id":"41175599","duration":780,"bikeId":"6586","endDate":1423766100,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1423765320,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41175689","duration":360,"bikeId":"12843","endDate":1423765800,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1423765440,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41175728","duration":1440,"bikeId":"1503","endDate":1423766940,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423765500,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41175819","duration":480,"bikeId":"3844","endDate":1423766100,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1423765620,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41175862","duration":3840,"bikeId":"3670","endDate":1423769520,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423765680,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41175919","duration":840,"bikeId":"6011","endDate":1423766640,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423765800,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41176003","duration":480,"bikeId":"4670","endDate":1423766400,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1423765920,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"41176075","duration":60,"bikeId":"8042","endDate":1423766100,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1423766040,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"41176143","duration":480,"bikeId":"8341","endDate":1423766640,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423766160,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41176185","duration":1440,"bikeId":"799","endDate":1423767660,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1423766220,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41176285","duration":780,"bikeId":"11071","endDate":1423767120,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423766340,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"41176338","duration":660,"bikeId":"5866","endDate":1423767120,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423766460,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"41176417","duration":540,"bikeId":"10886","endDate":1423767120,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423766580,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41176483","duration":420,"bikeId":"4059","endDate":1423767120,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1423766700,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"41176559","duration":60,"bikeId":"10106","endDate":1423766880,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1423766820,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41176588","duration":1260,"bikeId":"12707","endDate":1423768140,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1423766880,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41176663","duration":780,"bikeId":"12385","endDate":1423767780,"endStationId":"375","endStationName":"Kensington Town Hall, Kensington","startDate":1423767000,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"41176776","duration":540,"bikeId":"12532","endDate":1423767660,"endStationId":"776","endStationName":"Abyssinia Close, Clapham Junction","startDate":1423767120,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"41176810","duration":1200,"bikeId":"1939","endDate":1423768380,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1423767180,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41176897","duration":540,"bikeId":"6815","endDate":1423767840,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1423767300,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41176947","duration":51420,"bikeId":"13060","endDate":1423818780,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1423767360,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41177019","duration":120,"bikeId":"4809","endDate":1423767660,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423767540,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41177084","duration":300,"bikeId":"9613","endDate":1423767960,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1423767660,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41177162","duration":660,"bikeId":"10939","endDate":1423768440,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423767780,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41177224","duration":900,"bikeId":"12389","endDate":1423768800,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1423767900,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"41177306","duration":240,"bikeId":"9475","endDate":1423768320,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1423768080,"startStationId":"371","startStationName":"King Edward Walk, Waterloo"}, +{"_id":"41177343","duration":540,"bikeId":"4125","endDate":1423768740,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1423768200,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"41177413","duration":1020,"bikeId":"8471","endDate":1423769340,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1423768320,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41177478","duration":480,"bikeId":"2830","endDate":1423768980,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1423768500,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41177549","duration":1800,"bikeId":"7984","endDate":1423770420,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1423768620,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"41177617","duration":1200,"bikeId":"172","endDate":1423770000,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423768800,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"41177706","duration":300,"bikeId":"2767","endDate":1423769280,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1423768980,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41177766","duration":540,"bikeId":"10746","endDate":1423769640,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1423769100,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41177839","duration":660,"bikeId":"6761","endDate":1423769940,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1423769280,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41177886","duration":1080,"bikeId":"6063","endDate":1423770540,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1423769460,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41177960","duration":1260,"bikeId":"12704","endDate":1423770900,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1423769640,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"41178025","duration":960,"bikeId":"4100","endDate":1423770780,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423769820,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41178082","duration":1380,"bikeId":"9595","endDate":1423771320,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1423769940,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41178162","duration":720,"bikeId":"6127","endDate":1423770900,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423770180,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41178234","duration":420,"bikeId":"3776","endDate":1423770840,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1423770420,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41178296","duration":300,"bikeId":"1551","endDate":1423770960,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1423770660,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41178370","duration":840,"bikeId":"12289","endDate":1423771680,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1423770840,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"41178433","duration":360,"bikeId":"8743","endDate":1423771440,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1423771080,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41178512","duration":780,"bikeId":"3158","endDate":1423772040,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423771260,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41178572","duration":1320,"bikeId":"759","endDate":1423772760,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1423771440,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41178648","duration":420,"bikeId":"6717","endDate":1423772100,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1423771680,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"41178708","duration":600,"bikeId":"10717","endDate":1423772460,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423771860,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"41178776","duration":900,"bikeId":"6813","endDate":1423773000,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423772100,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41178840","duration":300,"bikeId":"1523","endDate":1423772640,"endStationId":"247","endStationName":"St. John's Wood Church, Regent's Park","startDate":1423772340,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"41178897","duration":1500,"bikeId":"11392","endDate":1423774080,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1423772580,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41178959","duration":1440,"bikeId":"8835","endDate":1423774260,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1423772820,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"41179032","duration":1500,"bikeId":"6306","endDate":1423774560,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1423773060,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41179107","duration":1440,"bikeId":"11194","endDate":1423774740,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1423773300,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"41179167","duration":780,"bikeId":"12696","endDate":1423774380,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1423773600,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"41179240","duration":720,"bikeId":"6482","endDate":1423774620,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1423773900,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"41179302","duration":1140,"bikeId":"11126","endDate":1423775280,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1423774140,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41179372","duration":240,"bikeId":"6807","endDate":1423774740,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423774500,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41179445","duration":1140,"bikeId":"7970","endDate":1423775940,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1423774800,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"41179516","duration":240,"bikeId":"5385","endDate":1423775400,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423775160,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41179569","duration":1140,"bikeId":"1053","endDate":1423776540,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1423775400,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"41179645","duration":660,"bikeId":"11878","endDate":1423776360,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1423775700,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41179717","duration":0,"bikeId":"7707","endDate":1423776060,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1423776060,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"41179776","duration":1080,"bikeId":"2962","endDate":1423777440,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1423776360,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41179850","duration":1320,"bikeId":"6108","endDate":1423778100,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1423776780,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41179922","duration":600,"bikeId":"1041","endDate":1423777860,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1423777260,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41179992","duration":480,"bikeId":"8526","endDate":1423778100,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1423777620,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"41180052","duration":1020,"bikeId":"1133","endDate":1423779060,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423778040,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41180125","duration":360,"bikeId":"10658","endDate":1423778880,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1423778520,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41180192","duration":840,"bikeId":"3249","endDate":1423779720,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1423778880,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41180265","duration":900,"bikeId":"5601","endDate":1423780200,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1423779300,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41180340","duration":300,"bikeId":"7157","endDate":1423780020,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423779720,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41180400","duration":360,"bikeId":"12363","endDate":1423780560,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1423780200,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41180472","duration":180,"bikeId":"571","endDate":1423780920,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1423780740,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41180529","duration":66360,"bikeId":"1839","endDate":1423847520,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423781160,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41180603","duration":240,"bikeId":"2002","endDate":1423782000,"endStationId":"151","endStationName":"Chepstow Villas, Notting Hill","startDate":1423781760,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41180671","duration":1560,"bikeId":"4030","endDate":1423783800,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1423782240,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41180737","duration":1620,"bikeId":"3865","endDate":1423784400,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423782780,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41180810","duration":600,"bikeId":"9763","endDate":1423784100,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1423783500,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"41180868","duration":300,"bikeId":"10854","endDate":1423784340,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1423784040,"startStationId":"743","startStationName":"Oxford Road, Putney"}, +{"_id":"41180942","duration":600,"bikeId":"7444","endDate":1423785180,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1423784580,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41181007","duration":1380,"bikeId":"9789","endDate":1423786620,"endStationId":"765","endStationName":"Ranelagh Gardens, Fulham","startDate":1423785240,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41181084","duration":300,"bikeId":"1908","endDate":1423786380,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1423786080,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41181146","duration":1200,"bikeId":"10924","endDate":1423788120,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1423786920,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"41181216","duration":180,"bikeId":"184","endDate":1423788300,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1423788120,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41181284","duration":1560,"bikeId":"1245","endDate":1423791300,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1423789740,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41181351","duration":300,"bikeId":"6203","endDate":1423791900,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1423791600,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41181417","duration":1080,"bikeId":"1869","endDate":1423795080,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1423794000,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41181488","duration":360,"bikeId":"1844","endDate":1423798380,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1423798020,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41181561","duration":360,"bikeId":"6043","endDate":1423804200,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423803840,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41181628","duration":600,"bikeId":"3594","endDate":1423807380,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1423806780,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"41181696","duration":360,"bikeId":"2035","endDate":1423808400,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1423808040,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"41181759","duration":1560,"bikeId":"3604","endDate":1423810200,"endStationId":"121","endStationName":"Baker Street, Marylebone","startDate":1423808640,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41181831","duration":480,"bikeId":"1265","endDate":1423809780,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1423809300,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41181897","duration":240,"bikeId":"9532","endDate":1423810080,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1423809840,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41181961","duration":780,"bikeId":"8176","endDate":1423811040,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1423810260,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41182027","duration":1500,"bikeId":"12011","endDate":1423812060,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423810560,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41182104","duration":300,"bikeId":"6178","endDate":1423811220,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423810920,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"41182164","duration":660,"bikeId":"4337","endDate":1423811880,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1423811220,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41182223","duration":420,"bikeId":"12337","endDate":1423811880,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1423811460,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41182306","duration":480,"bikeId":"7559","endDate":1423812180,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1423811700,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41182348","duration":540,"bikeId":"12828","endDate":1423812420,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1423811880,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41182410","duration":900,"bikeId":"10579","endDate":1423812960,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423812060,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41182492","duration":360,"bikeId":"435","endDate":1423812660,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423812300,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41182561","duration":660,"bikeId":"5325","endDate":1423813140,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1423812480,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41182621","duration":1020,"bikeId":"9114","endDate":1423813620,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1423812600,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41182681","duration":540,"bikeId":"8560","endDate":1423813320,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1423812780,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41182746","duration":1140,"bikeId":"5730","endDate":1423814040,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423812900,"startStationId":"117","startStationName":"Lollard Street, Vauxhall"}, +{"_id":"41182819","duration":840,"bikeId":"3988","endDate":1423813920,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423813080,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41182887","duration":780,"bikeId":"11707","endDate":1423813980,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1423813200,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41182951","duration":480,"bikeId":"6469","endDate":1423813800,"endStationId":"143","endStationName":"Pont Street, Knightsbridge","startDate":1423813320,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41182998","duration":960,"bikeId":"9181","endDate":1423814400,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1423813440,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41183066","duration":1020,"bikeId":"8843","endDate":1423814580,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423813560,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"41183129","duration":720,"bikeId":"10088","endDate":1423814400,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423813680,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41183191","duration":1200,"bikeId":"10841","endDate":1423815000,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423813800,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41183269","duration":1020,"bikeId":"3155","endDate":1423814940,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1423813920,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"41183344","duration":840,"bikeId":"3965","endDate":1423814880,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1423814040,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41183411","duration":540,"bikeId":"12801","endDate":1423814700,"endStationId":"84","endStationName":"Breams Buildings, Holborn","startDate":1423814160,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41183452","duration":1020,"bikeId":"12609","endDate":1423815240,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1423814220,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41183536","duration":840,"bikeId":"8200","endDate":1423815180,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1423814340,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41183613","duration":1020,"bikeId":"10245","endDate":1423815480,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1423814460,"startStationId":"134","startStationName":"Wapping High Street, Wapping"}, +{"_id":"41183672","duration":540,"bikeId":"12821","endDate":1423815120,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1423814580,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41183757","duration":240,"bikeId":"10105","endDate":1423814940,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423814700,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"41183804","duration":960,"bikeId":"1920","endDate":1423815720,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1423814760,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41183919","duration":300,"bikeId":"12547","endDate":1423815180,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423814880,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41183953","duration":1020,"bikeId":"12120","endDate":1423815960,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1423814940,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41184048","duration":180,"bikeId":"11531","endDate":1423815240,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1423815060,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"41184126","duration":540,"bikeId":"4151","endDate":1423815660,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423815120,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41184164","duration":660,"bikeId":"928","endDate":1423815840,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1423815180,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41184231","duration":960,"bikeId":"1667","endDate":1423816200,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423815240,"startStationId":"139","startStationName":"Lambeth Road, Vauxhall"}, +{"_id":"41184295","duration":600,"bikeId":"4712","endDate":1423815960,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1423815360,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"41184364","duration":660,"bikeId":"3273","endDate":1423816080,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1423815420,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"41184406","duration":1200,"bikeId":"9844","endDate":1423816680,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423815480,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"41184531","duration":480,"bikeId":"6462","endDate":1423816080,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1423815600,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41184537","duration":780,"bikeId":"7023","endDate":1423816440,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1423815660,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41184598","duration":1320,"bikeId":"10787","endDate":1423817040,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1423815720,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41184670","duration":480,"bikeId":"10503","endDate":1423816320,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1423815840,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"41184744","duration":660,"bikeId":"12823","endDate":1423816560,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1423815900,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"41184820","duration":660,"bikeId":"447","endDate":1423816620,"endStationId":"384","endStationName":"Marloes Road, Kensington","startDate":1423815960,"startStationId":"591","startStationName":"Westfield Library Corner, Shepherd's Bush"}, +{"_id":"41184895","duration":1020,"bikeId":"7906","endDate":1423817040,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1423816020,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41184956","duration":300,"bikeId":"8612","endDate":1423816440,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423816140,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41185015","duration":660,"bikeId":"5630","endDate":1423816860,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423816200,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41185078","duration":1020,"bikeId":"2602","endDate":1423817280,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1423816260,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41185159","duration":960,"bikeId":"4082","endDate":1423817280,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1423816320,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"41185213","duration":1380,"bikeId":"218","endDate":1423817760,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1423816380,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"41185260","duration":1680,"bikeId":"4673","endDate":1423818120,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423816440,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41185330","duration":1080,"bikeId":"305","endDate":1423817580,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423816500,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41185417","duration":1200,"bikeId":"9378","endDate":1423817760,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1423816560,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"41185476","duration":1320,"bikeId":"7801","endDate":1423817940,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1423816620,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41185545","duration":1080,"bikeId":"9928","endDate":1423817760,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1423816680,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41185611","duration":900,"bikeId":"7569","endDate":1423817640,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1423816740,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"41185684","duration":840,"bikeId":"9253","endDate":1423817640,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1423816800,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41185707","duration":840,"bikeId":"591","endDate":1423817700,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423816860,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41185795","duration":660,"bikeId":"8112","endDate":1423817580,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423816920,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41185903","duration":600,"bikeId":"6947","endDate":1423817580,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423816980,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41185965","duration":480,"bikeId":"8360","endDate":1423817520,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423817040,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41186038","duration":360,"bikeId":"8429","endDate":1423817460,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1423817100,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41186039","duration":1500,"bikeId":"6146","endDate":1423818600,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1423817100,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41186092","duration":1020,"bikeId":"2330","endDate":1423818180,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1423817160,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41186224","duration":1200,"bikeId":"12666","endDate":1423818420,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1423817220,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"41186287","duration":900,"bikeId":"8842","endDate":1423818180,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1423817280,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41186301","duration":840,"bikeId":"11251","endDate":1423818180,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423817340,"startStationId":"464","startStationName":"St. Mary and St. Michael Church, Stepney"}, +{"_id":"41186383","duration":1140,"bikeId":"10798","endDate":1423818540,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423817400,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41186434","duration":1380,"bikeId":"7045","endDate":1423818840,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1423817460,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"41186572","duration":360,"bikeId":"11783","endDate":1423817940,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1423817580,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41186609","duration":780,"bikeId":"2187","endDate":1423818420,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1423817640,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"41186697","duration":1080,"bikeId":"8186","endDate":1423818780,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1423817700,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41186803","duration":300,"bikeId":"1006","endDate":1423818120,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1423817820,"startStationId":"208","startStationName":"Mallory Street, Marylebone"}, +{"_id":"41186830","duration":360,"bikeId":"4645","endDate":1423818240,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1423817880,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41186866","duration":720,"bikeId":"7267","endDate":1423818660,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423817940,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41186955","duration":120,"bikeId":"830","endDate":1423818180,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423818060,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41187000","duration":720,"bikeId":"5796","endDate":1423818840,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1423818120,"startStationId":"352","startStationName":"Vauxhall Street, Vauxhall"}, +{"_id":"41187076","duration":660,"bikeId":"117","endDate":1423818900,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1423818240,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"41187181","duration":240,"bikeId":"8494","endDate":1423818600,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423818360,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41187203","duration":780,"bikeId":"11281","endDate":1423819200,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1423818420,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"41187276","duration":360,"bikeId":"2548","endDate":1423818900,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1423818540,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41187387","duration":240,"bikeId":"11217","endDate":1423818900,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423818660,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41187412","duration":480,"bikeId":"5376","endDate":1423819200,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423818720,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"41187469","duration":1500,"bikeId":"8637","endDate":1423820280,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423818780,"startStationId":"466","startStationName":"Whiston Road, Haggerston"}, +{"_id":"41187524","duration":1320,"bikeId":"8500","endDate":1423820220,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423818900,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41187631","duration":720,"bikeId":"4178","endDate":1423819740,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423819020,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"41187678","duration":420,"bikeId":"1356","endDate":1423819560,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1423819140,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41187751","duration":840,"bikeId":"5924","endDate":1423820100,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423819260,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"41187834","duration":1020,"bikeId":"2438","endDate":1423820400,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1423819380,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"41187900","duration":180,"bikeId":"10225","endDate":1423819740,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1423819560,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41187963","duration":420,"bikeId":"1670","endDate":1423820100,"endStationId":"149","endStationName":"Kennington Road Post Office, Oval","startDate":1423819680,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"41188034","duration":600,"bikeId":"8011","endDate":1423820400,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1423819800,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41188104","duration":420,"bikeId":"2524","endDate":1423820400,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1423819980,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41188153","duration":1620,"bikeId":"4701","endDate":1423821720,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1423820100,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41188231","duration":660,"bikeId":"9366","endDate":1423820940,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1423820280,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"41188299","duration":420,"bikeId":"1128","endDate":1423820820,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1423820400,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"41188357","duration":960,"bikeId":"1356","endDate":1423821480,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1423820520,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41188414","duration":660,"bikeId":"9882","endDate":1423821360,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1423820700,"startStationId":"454","startStationName":"Napier Avenue, Millwall"}, +{"_id":"41188485","duration":540,"bikeId":"2512","endDate":1423821420,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1423820880,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41188567","duration":480,"bikeId":"3994","endDate":1423821540,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1423821060,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"41188624","duration":660,"bikeId":"9959","endDate":1423821960,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1423821300,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41188701","duration":660,"bikeId":"2127","endDate":1423822140,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1423821480,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"41188746","duration":840,"bikeId":"10109","endDate":1423822500,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1423821660,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"41188824","duration":480,"bikeId":"4778","endDate":1423822380,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1423821900,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41188898","duration":540,"bikeId":"9193","endDate":1423822620,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1423822080,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"41188979","duration":420,"bikeId":"839","endDate":1423822740,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1423822320,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41189034","duration":1200,"bikeId":"12153","endDate":1423823760,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1423822560,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41189110","duration":660,"bikeId":"5549","endDate":1423823580,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1423822920,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41189165","duration":420,"bikeId":"4372","endDate":1423823580,"endStationId":"410","endStationName":"Edgware Road Station, Paddington","startDate":1423823160,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"41189234","duration":300,"bikeId":"10629","endDate":1423823760,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1423823460,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"41189296","duration":420,"bikeId":"8240","endDate":1423824120,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1423823700,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41189367","duration":540,"bikeId":"2068","endDate":1423824540,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1423824000,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41189418","duration":2040,"bikeId":"6069","endDate":1423826280,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1423824240,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41189494","duration":420,"bikeId":"2080","endDate":1423825020,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1423824600,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41189566","duration":360,"bikeId":"10794","endDate":1423825260,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423824900,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41189626","duration":1500,"bikeId":"1677","endDate":1423826640,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423825140,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41189712","duration":240,"bikeId":"7817","endDate":1423825680,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1423825440,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41189776","duration":840,"bikeId":"3207","endDate":1423826520,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423825680,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41189855","duration":360,"bikeId":"3507","endDate":1423826400,"endStationId":"339","endStationName":"Risinghill Street, Angel","startDate":1423826040,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41189916","duration":2100,"bikeId":"4925","endDate":1423828380,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423826280,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41189976","duration":420,"bikeId":"6770","endDate":1423827060,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1423826640,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"41190048","duration":960,"bikeId":"2644","endDate":1423827900,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1423826940,"startStationId":"716","startStationName":"Stainsby Road , Poplar"}, +{"_id":"41190124","duration":240,"bikeId":"5766","endDate":1423827540,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1423827300,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"41190194","duration":180,"bikeId":"3554","endDate":1423827780,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1423827600,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"41190264","duration":180,"bikeId":"378","endDate":1423828080,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423827900,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"41190332","duration":360,"bikeId":"7157","endDate":1423828560,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423828200,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41190391","duration":300,"bikeId":"6808","endDate":1423828740,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1423828440,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41190465","duration":660,"bikeId":"10379","endDate":1423829400,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1423828740,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41190521","duration":720,"bikeId":"11357","endDate":1423829700,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1423828980,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"41190588","duration":1020,"bikeId":"10726","endDate":1423830240,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1423829220,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41190667","duration":600,"bikeId":"10094","endDate":1423830120,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1423829520,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41190728","duration":660,"bikeId":"1656","endDate":1423830420,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1423829760,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41190798","duration":540,"bikeId":"10078","endDate":1423830540,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1423830000,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41190852","duration":1020,"bikeId":"8521","endDate":1423831260,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1423830240,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"41190933","duration":2580,"bikeId":"10641","endDate":1423833060,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1423830480,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"41191017","duration":180,"bikeId":"6361","endDate":1423830960,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1423830780,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"41191078","duration":420,"bikeId":"3338","endDate":1423831440,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1423831020,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41191135","duration":6780,"bikeId":"4875","endDate":1423837980,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1423831200,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"41191190","duration":1080,"bikeId":"961","endDate":1423832460,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1423831380,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"41191286","duration":240,"bikeId":"4416","endDate":1423831920,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423831680,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41191330","duration":1020,"bikeId":"4040","endDate":1423832880,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1423831860,"startStationId":"164","startStationName":"Cleveland Gardens, Bayswater"}, +{"_id":"41191391","duration":780,"bikeId":"9109","endDate":1423832820,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1423832040,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41191468","duration":420,"bikeId":"7280","endDate":1423832700,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1423832280,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"41191550","duration":420,"bikeId":"10684","endDate":1423832940,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1423832520,"startStationId":"143","startStationName":"Pont Street, Knightsbridge"}, +{"_id":"41191604","duration":900,"bikeId":"7869","endDate":1423833660,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1423832760,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41191674","duration":900,"bikeId":"4060","endDate":1423833960,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1423833060,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41191755","duration":360,"bikeId":"3946","endDate":1423833720,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1423833360,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41191809","duration":660,"bikeId":"12941","endDate":1423834380,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423833720,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"41191883","duration":240,"bikeId":"399","endDate":1423834560,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1423834320,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"41191944","duration":420,"bikeId":"6768","endDate":1423835220,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1423834800,"startStationId":"771","startStationName":"Rifle Place, Avondale"}, +{"_id":"41192002","duration":1140,"bikeId":"4919","endDate":1423836300,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1423835160,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41192071","duration":420,"bikeId":"7473","endDate":1423836180,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1423835760,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41192144","duration":360,"bikeId":"6291","endDate":1423836600,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1423836240,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"41192203","duration":900,"bikeId":"3049","endDate":1423837560,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1423836660,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41192268","duration":1080,"bikeId":"1846","endDate":1423838340,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1423837260,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"41192342","duration":420,"bikeId":"6749","endDate":1423838400,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1423837980,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"41192402","duration":2100,"bikeId":"7098","endDate":1423840620,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1423838520,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"41192473","duration":600,"bikeId":"6388","endDate":1423839720,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1423839120,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41192540","duration":660,"bikeId":"4077","endDate":1423840260,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1423839600,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"41192612","duration":240,"bikeId":"7982","endDate":1423840380,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1423840140,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41192675","duration":1260,"bikeId":"1989","endDate":1423841940,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1423840680,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"41192744","duration":600,"bikeId":"12808","endDate":1423841940,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1423841340,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41192815","duration":600,"bikeId":"2035","endDate":1423842600,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1423842000,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"41192878","duration":420,"bikeId":"40","endDate":1423843020,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423842600,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41192943","duration":1260,"bikeId":"4240","endDate":1423844280,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1423843020,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"41193014","duration":1020,"bikeId":"10629","endDate":1423844400,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1423843380,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"41193076","duration":720,"bikeId":"10142","endDate":1423844460,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1423843740,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"41193153","duration":480,"bikeId":"8568","endDate":1423844580,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423844100,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41193233","duration":240,"bikeId":"12590","endDate":1423844640,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1423844400,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41193306","duration":300,"bikeId":"2869","endDate":1423844940,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423844640,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"41193346","duration":1020,"bikeId":"2638","endDate":1423845900,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423844880,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"41193425","duration":720,"bikeId":"1154","endDate":1423845840,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1423845120,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41193492","duration":1140,"bikeId":"1914","endDate":1423846440,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1423845300,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41193563","duration":300,"bikeId":"4462","endDate":1423845840,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1423845540,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"41193644","duration":300,"bikeId":"3464","endDate":1423846020,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1423845720,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41193686","duration":1200,"bikeId":"3085","endDate":1423847100,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1423845900,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"41193780","duration":240,"bikeId":"11999","endDate":1423846380,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1423846140,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"41193840","duration":480,"bikeId":"11517","endDate":1423846800,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423846320,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41193912","duration":480,"bikeId":"7766","endDate":1423846980,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423846500,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41193976","duration":480,"bikeId":"4575","endDate":1423847160,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423846680,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41194050","duration":300,"bikeId":"11825","endDate":1423847160,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423846860,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"41194095","duration":780,"bikeId":"6592","endDate":1423847760,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423846980,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41194176","duration":780,"bikeId":"3121","endDate":1423847880,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1423847100,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41194277","duration":480,"bikeId":"13040","endDate":1423847700,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1423847220,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41194324","duration":480,"bikeId":"1875","endDate":1423847820,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1423847340,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41194378","duration":720,"bikeId":"2210","endDate":1423848180,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423847460,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41194439","duration":780,"bikeId":"9616","endDate":1423848360,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423847580,"startStationId":"276","startStationName":"Lower Thames Street, Monument"}, +{"_id":"41194533","duration":540,"bikeId":"12083","endDate":1423848240,"endStationId":"471","endStationName":"Hewison Street, Old Ford","startDate":1423847700,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"41194581","duration":780,"bikeId":"9725","endDate":1423848600,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423847820,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41194659","duration":900,"bikeId":"11505","endDate":1423848840,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1423847940,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41194725","duration":480,"bikeId":"9217","endDate":1423848600,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1423848120,"startStationId":"527","startStationName":"Hansard Mews, Shepherds Bush"}, +{"_id":"41194802","duration":360,"bikeId":"13043","endDate":1423848600,"endStationId":"716","endStationName":"Stainsby Road , Poplar","startDate":1423848240,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41194865","duration":600,"bikeId":"10561","endDate":1423848960,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423848360,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41194905","duration":900,"bikeId":"5811","endDate":1423849380,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1423848480,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41194977","duration":1020,"bikeId":"9425","endDate":1423849620,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423848600,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"41195048","duration":540,"bikeId":"6172","endDate":1423849260,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423848720,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41195137","duration":300,"bikeId":"13035","endDate":1423849140,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1423848840,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"41195166","duration":1260,"bikeId":"10610","endDate":1423850160,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1423848900,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41195241","duration":1440,"bikeId":"9900","endDate":1423850460,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1423849020,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41195321","duration":480,"bikeId":"8368","endDate":1423849620,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1423849140,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41195379","duration":960,"bikeId":"7802","endDate":1423850160,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1423849200,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41195463","duration":540,"bikeId":"8144","endDate":1423849860,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1423849320,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41195529","duration":360,"bikeId":"10007","endDate":1423849800,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1423849440,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41195593","duration":420,"bikeId":"4561","endDate":1423849980,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1423849560,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41195621","duration":1260,"bikeId":"1694","endDate":1423850880,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423849620,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41195705","duration":540,"bikeId":"10062","endDate":1423850280,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1423849740,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41195762","duration":960,"bikeId":"12585","endDate":1423850760,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1423849800,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"41195863","duration":600,"bikeId":"11533","endDate":1423850520,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423849920,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"41195926","duration":420,"bikeId":"7712","endDate":1423850460,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1423850040,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"41196021","duration":240,"bikeId":"7707","endDate":1423850400,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1423850160,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"41196052","duration":1380,"bikeId":"6139","endDate":1423851600,"endStationId":"7","endStationName":"Charlbert Street, St. John's Wood","startDate":1423850220,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"41196122","duration":180,"bikeId":"3394","endDate":1423850580,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1423850400,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41196197","duration":180,"bikeId":"1945","endDate":1423850700,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423850520,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41196252","duration":240,"bikeId":"9472","endDate":1423850880,"endStationId":"442","endStationName":"Walmer Road, Notting Hill","startDate":1423850640,"startStationId":"337","startStationName":"Pembridge Villas, Notting Hill"}, +{"_id":"41196324","duration":360,"bikeId":"12603","endDate":1423851120,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1423850760,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41196370","duration":480,"bikeId":"9109","endDate":1423851360,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423850880,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41196434","duration":1140,"bikeId":"12246","endDate":1423852140,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1423851000,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41196505","duration":480,"bikeId":"4109","endDate":1423851660,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1423851180,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41196577","duration":1080,"bikeId":"10588","endDate":1423852380,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423851300,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41196669","duration":0,"bikeId":"653","endDate":1423851480,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423851480,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41196723","duration":180,"bikeId":"3132","endDate":1423851840,"endStationId":"473","endStationName":"Millharbour, Millwall","startDate":1423851660,"startStationId":"455","startStationName":"East Ferry Road, Cubitt Town"}, +{"_id":"41196770","duration":960,"bikeId":"9680","endDate":1423852740,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1423851780,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"41196850","duration":1620,"bikeId":"12714","endDate":1423853580,"endStationId":"634","endStationName":"Brook Green South, Brook Green","startDate":1423851960,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41196917","duration":300,"bikeId":"9202","endDate":1423852440,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1423852140,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"41196989","duration":660,"bikeId":"8720","endDate":1423852980,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423852320,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"41197042","duration":1980,"bikeId":"10285","endDate":1423854420,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1423852440,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"41197116","duration":600,"bikeId":"13067","endDate":1423853220,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1423852620,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41197198","duration":720,"bikeId":"11981","endDate":1423853520,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1423852800,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41197250","duration":960,"bikeId":"8443","endDate":1423853940,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423852980,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41197302","duration":1440,"bikeId":"9177","endDate":1423854600,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1423853160,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"41197383","duration":240,"bikeId":"12557","endDate":1423853760,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1423853520,"startStationId":"274","startStationName":"Warwick Road, Olympia"}, +{"_id":"41197450","duration":720,"bikeId":"3285","endDate":1423854720,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1423854000,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41197517","duration":540,"bikeId":"8665","endDate":1423854900,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1423854360,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41197583","duration":840,"bikeId":"9655","endDate":1423855500,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1423854660,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41197658","duration":360,"bikeId":"12573","endDate":1423855500,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1423855140,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41197714","duration":960,"bikeId":"562","endDate":1423856460,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1423855500,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41197793","duration":480,"bikeId":"6720","endDate":1423856400,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1423855920,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41197853","duration":360,"bikeId":"10235","endDate":1423856580,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1423856220,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41197916","duration":480,"bikeId":"10682","endDate":1423857060,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1423856580,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41197982","duration":660,"bikeId":"6632","endDate":1423857540,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1423856880,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41198051","duration":1380,"bikeId":"9994","endDate":1423858560,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1423857180,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41198128","duration":240,"bikeId":"1546","endDate":1423857780,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1423857540,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"41198183","duration":660,"bikeId":"8624","endDate":1423858440,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1423857780,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"41198249","duration":420,"bikeId":"6842","endDate":1423858560,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1423858140,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41198320","duration":660,"bikeId":"7536","endDate":1423859100,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1423858440,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"41198391","duration":240,"bikeId":"10992","endDate":1423859220,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1423858980,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41198448","duration":1680,"bikeId":"7648","endDate":1423861020,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1423859340,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"41198528","duration":240,"bikeId":"7143","endDate":1423860060,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1423859820,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41198586","duration":1800,"bikeId":"4418","endDate":1423862040,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423860240,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41198658","duration":300,"bikeId":"6966","endDate":1423861140,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1423860840,"startStationId":"517","startStationName":"Ford Road, Old Ford"}, +{"_id":"41198734","duration":120,"bikeId":"6647","endDate":1423861500,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1423861380,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"41198795","duration":1500,"bikeId":"7355","endDate":1423863480,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423861980,"startStationId":"371","startStationName":"King Edward Walk, Waterloo"}, +{"_id":"41198861","duration":1080,"bikeId":"10404","endDate":1423863540,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1423862460,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41198926","duration":360,"bikeId":"8914","endDate":1423863420,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1423863060,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41198995","duration":1440,"bikeId":"12581","endDate":1423865040,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1423863600,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41199067","duration":480,"bikeId":"1402","endDate":1423864860,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1423864380,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41199134","duration":300,"bikeId":"12905","endDate":1423865400,"endStationId":"21","endStationName":"Hampstead Road (Cartmel), Euston","startDate":1423865100,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"41199199","duration":420,"bikeId":"4245","endDate":1423866360,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1423865940,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"41199269","duration":960,"bikeId":"5286","endDate":1423867920,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1423866960,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41199333","duration":1740,"bikeId":"3443","endDate":1423869180,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423867440,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41199403","duration":420,"bikeId":"3760","endDate":1423868820,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1423868400,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41199471","duration":600,"bikeId":"11813","endDate":1423870200,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1423869600,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"41199534","duration":1080,"bikeId":"3129","endDate":1423871940,"endStationId":"609","endStationName":"Sugden Road, Battersea","startDate":1423870860,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"41199596","duration":600,"bikeId":"5598","endDate":1423872660,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1423872060,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41199667","duration":240,"bikeId":"8127","endDate":1423873440,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1423873200,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41199730","duration":1200,"bikeId":"12748","endDate":1423875720,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1423874520,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"41199805","duration":540,"bikeId":"7358","endDate":1423876680,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1423876140,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"41199871","duration":540,"bikeId":"948","endDate":1423878240,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1423877700,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41199933","duration":1020,"bikeId":"12552","endDate":1423880280,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1423879260,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41199999","duration":3360,"bikeId":"459","endDate":1423884120,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1423880760,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41200074","duration":180,"bikeId":"9645","endDate":1423882380,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1423882200,"startStationId":"543","startStationName":"Lansdowne Walk, Notting Hill"}, +{"_id":"41200139","duration":780,"bikeId":"12624","endDate":1423884360,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1423883580,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41200207","duration":5040,"bikeId":"4163","endDate":1423890840,"endStationId":"276","endStationName":"Lower Thames Street, Monument","startDate":1423885800,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41200279","duration":4320,"bikeId":"8271","endDate":1423892580,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1423888260,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41200353","duration":5640,"bikeId":"3910","endDate":1423897200,"endStationId":"617","endStationName":"Elysium Place, Fulham","startDate":1423891560,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41200422","duration":120,"bikeId":"10389","endDate":1423895580,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1423895460,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"41200492","duration":720,"bikeId":"1706","endDate":1423898580,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423897860,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41200559","duration":660,"bikeId":"1092","endDate":1423900020,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1423899360,"startStationId":"652","startStationName":"Evesham Street, Avondale"}, +{"_id":"41200624","duration":3000,"bikeId":"2809","endDate":1423903740,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1423900740,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41200703","duration":300,"bikeId":"6917","endDate":1423902120,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1423901820,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41200767","duration":1620,"bikeId":"9472","endDate":1423904040,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1423902420,"startStationId":"337","startStationName":"Pembridge Villas, Notting Hill"}, +{"_id":"41200840","duration":360,"bikeId":"3395","endDate":1423903440,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1423903080,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41200904","duration":1020,"bikeId":"9345","endDate":1423904520,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1423903500,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41200969","duration":960,"bikeId":"7142","endDate":1423904940,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1423903980,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41201034","duration":1380,"bikeId":"6004","endDate":1423905900,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1423904520,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"41201107","duration":1260,"bikeId":"10506","endDate":1423906380,"endStationId":"519","endStationName":"Teviot Street, Poplar","startDate":1423905120,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"41201183","duration":240,"bikeId":"11536","endDate":1423905840,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1423905600,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"41201248","duration":780,"bikeId":"7295","endDate":1423906740,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1423905960,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41201320","duration":300,"bikeId":"11256","endDate":1423906680,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1423906380,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41201390","duration":600,"bikeId":"8686","endDate":1423907280,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1423906680,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"41201459","duration":600,"bikeId":"56","endDate":1423907640,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1423907040,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41201517","duration":1140,"bikeId":"4664","endDate":1423908420,"endStationId":"590","endStationName":"Greenberry Street, St.John's Wood","startDate":1423907280,"startStationId":"315","startStationName":"The Tennis Courts, Regent's Park"}, +{"_id":"41201599","duration":780,"bikeId":"3514","endDate":1423908300,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1423907520,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41201676","duration":360,"bikeId":"558","endDate":1423908180,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1423907820,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41201751","duration":1500,"bikeId":"3260","endDate":1423909560,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1423908060,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41201818","duration":180,"bikeId":"9595","endDate":1423908540,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1423908360,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41201875","duration":5160,"bikeId":"401","endDate":1423913760,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1423908600,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41201955","duration":1020,"bikeId":"486","endDate":1423909920,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1423908900,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41202000","duration":2340,"bikeId":"1380","endDate":1423911420,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1423909080,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"41202091","duration":540,"bikeId":"6672","endDate":1423909860,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1423909320,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"41202163","duration":960,"bikeId":"6930","endDate":1423910580,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1423909620,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"41202232","duration":1680,"bikeId":"11185","endDate":1423911540,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1423909860,"startStationId":"704","startStationName":"Mexfield Road, East Putney"}, +{"_id":"41202310","duration":600,"bikeId":"4315","endDate":1423910760,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1423910160,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41202362","duration":1020,"bikeId":"7194","endDate":1423911360,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423910340,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"41202443","duration":360,"bikeId":"2156","endDate":1423911000,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423910640,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"41202511","duration":360,"bikeId":"12628","endDate":1423911180,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1423910820,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"41202578","duration":180,"bikeId":"6517","endDate":1423911240,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1423911060,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"41202647","duration":180,"bikeId":"10194","endDate":1423911480,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1423911300,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41202718","duration":300,"bikeId":"5408","endDate":1423911840,"endStationId":"736","endStationName":"Queensdale Road, Shepherd's Bush","startDate":1423911540,"startStationId":"560","startStationName":"Ladbroke Grove Central, Notting Hill"}, +{"_id":"41202802","duration":480,"bikeId":"7689","endDate":1423912200,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1423911720,"startStationId":"171","startStationName":"Collingham Gardens, Earl's Court"}, +{"_id":"41202846","duration":840,"bikeId":"6339","endDate":1423912740,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1423911900,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41202913","duration":1260,"bikeId":"11228","endDate":1423913400,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1423912140,"startStationId":"352","startStationName":"Vauxhall Street, Vauxhall"}, +{"_id":"41202985","duration":480,"bikeId":"8343","endDate":1423912860,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1423912380,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"41203059","duration":1080,"bikeId":"7891","endDate":1423913640,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1423912560,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"41203120","duration":1320,"bikeId":"11745","endDate":1423914120,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1423912800,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41203183","duration":1320,"bikeId":"4513","endDate":1423914300,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1423912980,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41203274","duration":300,"bikeId":"5492","endDate":1423913520,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1423913220,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41203325","duration":1560,"bikeId":"6473","endDate":1423914960,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1423913400,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"41203412","duration":240,"bikeId":"5974","endDate":1423913880,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1423913640,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41203460","duration":1860,"bikeId":"1848","endDate":1423915620,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1423913760,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"41203522","duration":1260,"bikeId":"8474","endDate":1423915200,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1423913940,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41203590","duration":840,"bikeId":"2040","endDate":1423914960,"endStationId":"365","endStationName":"City Road, Angel","startDate":1423914120,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41203667","duration":600,"bikeId":"2568","endDate":1423914900,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1423914300,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41203752","duration":540,"bikeId":"3776","endDate":1423915020,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1423914480,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41203809","duration":240,"bikeId":"7802","endDate":1423914900,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1423914660,"startStationId":"274","startStationName":"Warwick Road, Olympia"}, +{"_id":"41203871","duration":1200,"bikeId":"4542","endDate":1423915980,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1423914780,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"41203935","duration":1260,"bikeId":"9520","endDate":1423916220,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1423914960,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41203989","duration":2160,"bikeId":"11407","endDate":1423917300,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1423915140,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"41204077","duration":900,"bikeId":"5781","endDate":1423916220,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1423915320,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"41204153","duration":300,"bikeId":"6154","endDate":1423915800,"endStationId":"475","endStationName":"Lightermans Road, Millwall","startDate":1423915500,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"41204206","duration":3660,"bikeId":"2619","endDate":1423919280,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1423915620,"startStationId":"724","startStationName":"Alma Road, Wandsworth"}, +{"_id":"41204281","duration":780,"bikeId":"8658","endDate":1423916580,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423915800,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41204391","duration":600,"bikeId":"11281","endDate":1423916580,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423915980,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"41204430","duration":1560,"bikeId":"6248","endDate":1423917660,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1423916100,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"41204491","duration":1560,"bikeId":"1985","endDate":1423917840,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1423916280,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"41204586","duration":300,"bikeId":"6395","endDate":1423916760,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1423916460,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"41204672","duration":420,"bikeId":"5190","endDate":1423917000,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1423916580,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41204726","duration":900,"bikeId":"7094","endDate":1423917600,"endStationId":"588","endStationName":"Hoxton Street, Hoxton","startDate":1423916700,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"41204775","duration":6180,"bikeId":"12479","endDate":1423923000,"endStationId":"705","endStationName":"Upper Richmond Road, East Putney","startDate":1423916820,"startStationId":"743","startStationName":"Oxford Road, Putney"}, +{"_id":"41204848","duration":1620,"bikeId":"11425","endDate":1423918620,"endStationId":"692","endStationName":"Cadogan Close, Victoria Park","startDate":1423917000,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"41204953","duration":1140,"bikeId":"1345","endDate":1423918320,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423917180,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41205008","duration":720,"bikeId":"9319","endDate":1423918020,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1423917300,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"41205079","duration":300,"bikeId":"897","endDate":1423917780,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423917480,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41205132","duration":1260,"bikeId":"7115","endDate":1423918860,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1423917600,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"41205197","duration":1020,"bikeId":"3662","endDate":1423918800,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1423917780,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"41205284","duration":960,"bikeId":"8624","endDate":1423918920,"endStationId":"674","endStationName":"Carnegie Street, King's Cross","startDate":1423917960,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"41205368","duration":600,"bikeId":"735","endDate":1423918740,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1423918140,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"41205409","duration":1440,"bikeId":"8762","endDate":1423919700,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1423918260,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41205500","duration":1020,"bikeId":"10921","endDate":1423919460,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1423918440,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41205578","duration":300,"bikeId":"10602","endDate":1423918920,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1423918620,"startStationId":"430","startStationName":"South Parade, Chelsea"}, +{"_id":"41205641","duration":960,"bikeId":"8492","endDate":1423919700,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1423918740,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41205705","duration":8940,"bikeId":"10510","endDate":1423927860,"endStationId":"734","endStationName":"Plough Terrace, Clapham Junction","startDate":1423918920,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"41205783","duration":1440,"bikeId":"7787","endDate":1423920540,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1423919100,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41205839","duration":1560,"bikeId":"2967","endDate":1423920780,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1423919220,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41205934","duration":300,"bikeId":"5601","endDate":1423919700,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1423919400,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"41206010","duration":840,"bikeId":"8376","endDate":1423920360,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1423919520,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41206056","duration":1200,"bikeId":"3218","endDate":1423920840,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1423919640,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"41206161","duration":660,"bikeId":"5738","endDate":1423920480,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1423919820,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41206195","duration":1620,"bikeId":"8149","endDate":1423921560,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1423919940,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"41206289","duration":1560,"bikeId":"12128","endDate":1423921680,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1423920120,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41206352","duration":900,"bikeId":"4438","endDate":1423921200,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1423920300,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41206422","duration":1200,"bikeId":"7320","endDate":1423921620,"endStationId":"699","endStationName":"Belford House, Haggerston","startDate":1423920420,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41206514","duration":420,"bikeId":"10883","endDate":1423921020,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1423920600,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41206552","duration":1560,"bikeId":"9735","endDate":1423922280,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1423920720,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41206633","duration":900,"bikeId":"11454","endDate":1423921800,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1423920900,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"41206721","duration":240,"bikeId":"7824","endDate":1423921320,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1423921080,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41206774","duration":180,"bikeId":"7069","endDate":1423921380,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1423921200,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"41206848","duration":540,"bikeId":"2092","endDate":1423921860,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1423921320,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"41206896","duration":1260,"bikeId":"12490","endDate":1423922700,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1423921440,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41206969","duration":660,"bikeId":"2896","endDate":1423922280,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1423921620,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"41207029","duration":1260,"bikeId":"3831","endDate":1423923120,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1423921860,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41207122","duration":300,"bikeId":"10908","endDate":1423922460,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1423922160,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41207170","duration":2640,"bikeId":"39","endDate":1423925040,"endStationId":"669","endStationName":"Teversham Lane, Stockwell","startDate":1423922400,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"41207250","duration":600,"bikeId":"2035","endDate":1423923300,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1423922700,"startStationId":"247","startStationName":"St. John's Wood Church, Regent's Park"}, +{"_id":"41207320","duration":1140,"bikeId":"8918","endDate":1423924020,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1423922880,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"41207388","duration":2400,"bikeId":"3747","endDate":1423925460,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1423923060,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41207436","duration":1380,"bikeId":"10172","endDate":1423924620,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1423923240,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"41207515","duration":1380,"bikeId":"9074","endDate":1423924860,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1423923480,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41207590","duration":840,"bikeId":"1710","endDate":1423924560,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423923720,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41207657","duration":660,"bikeId":"1909","endDate":1423924620,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1423923960,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41207733","duration":1080,"bikeId":"4542","endDate":1423925220,"endStationId":"768","endStationName":"Clapham Common Northside, Clapham Common","startDate":1423924140,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"41207822","duration":540,"bikeId":"661","endDate":1423924980,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1423924440,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"41208126","duration":1140,"bikeId":"4903","endDate":1423925760,"endStationId":"640","endStationName":"Silverthorne Road, Battersea","startDate":1423924620,"startStationId":"777","startStationName":"Limburg Road, Clapham Common"}, +{"_id":"41207929","duration":1500,"bikeId":"1913","endDate":1423926240,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1423924740,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"41208020","duration":180,"bikeId":"2154","endDate":1423925160,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1423924980,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"41208096","duration":300,"bikeId":"1005","endDate":1423925460,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1423925160,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"41208151","duration":660,"bikeId":"10757","endDate":1423926000,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1423925340,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41208221","duration":900,"bikeId":"1864","endDate":1423926420,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1423925520,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41208277","duration":4020,"bikeId":"1699","endDate":1423929720,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1423925700,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41208371","duration":360,"bikeId":"2131","endDate":1423926300,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1423925940,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"41208445","duration":780,"bikeId":"1749","endDate":1423926900,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1423926120,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41208516","duration":1260,"bikeId":"6497","endDate":1423927560,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1423926300,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41208595","duration":1020,"bikeId":"9347","endDate":1423927500,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1423926480,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41208664","duration":540,"bikeId":"9670","endDate":1423927260,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1423926720,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41208729","duration":1080,"bikeId":"10751","endDate":1423927980,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1423926900,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41208802","duration":840,"bikeId":"3559","endDate":1423927920,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1423927080,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"41208880","duration":780,"bikeId":"1713","endDate":1423928040,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1423927260,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41208945","duration":540,"bikeId":"6599","endDate":1423927980,"endStationId":"134","endStationName":"Wapping High Street, Wapping","startDate":1423927440,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41209001","duration":1500,"bikeId":"4894","endDate":1423929120,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423927620,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41209068","duration":2340,"bikeId":"5256","endDate":1423930140,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1423927800,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41209146","duration":1020,"bikeId":"3557","endDate":1423929060,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1423928040,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"41209235","duration":360,"bikeId":"8048","endDate":1423928580,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1423928220,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"41209299","duration":480,"bikeId":"9876","endDate":1423928880,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1423928400,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41209370","duration":900,"bikeId":"8890","endDate":1423929480,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1423928580,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"41209434","duration":1620,"bikeId":"12659","endDate":1423930320,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1423928700,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41209509","duration":1800,"bikeId":"1752","endDate":1423930680,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1423928880,"startStationId":"518","startStationName":"Antill Road, Mile End"}, +{"_id":"41209593","duration":540,"bikeId":"8933","endDate":1423929660,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1423929120,"startStationId":"681","startStationName":"Bishop's Avenue, Fulham"}, +{"_id":"41209649","duration":600,"bikeId":"8740","endDate":1423929900,"endStationId":"96","endStationName":"Falkirk Street, Hoxton","startDate":1423929300,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41209711","duration":960,"bikeId":"1868","endDate":1423930440,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1423929480,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41209798","duration":4500,"bikeId":"4316","endDate":1423934220,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1423929720,"startStationId":"222","startStationName":"Knightsbridge, Hyde Park"}, +{"_id":"41209878","duration":360,"bikeId":"8452","endDate":1423930320,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1423929960,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41209931","duration":420,"bikeId":"4736","endDate":1423930560,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1423930140,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"41209991","duration":2640,"bikeId":"7330","endDate":1423932900,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1423930260,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41210079","duration":900,"bikeId":"8515","endDate":1423931400,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1423930500,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41210156","duration":540,"bikeId":"8871","endDate":1423931280,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1423930740,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41210224","duration":1740,"bikeId":"3617","endDate":1423932660,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1423930920,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41210294","duration":360,"bikeId":"10531","endDate":1423931520,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423931160,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41210359","duration":600,"bikeId":"13026","endDate":1423931940,"endStationId":"551","endStationName":"Montgomery Square, Canary Wharf","startDate":1423931340,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"41210433","duration":1560,"bikeId":"614","endDate":1423933080,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1423931520,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41210509","duration":360,"bikeId":"96","endDate":1423932120,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1423931760,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41210597","duration":300,"bikeId":"3159","endDate":1423932300,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1423932000,"startStationId":"176","startStationName":"Gloucester Terrace, Bayswater"}, +{"_id":"41210634","duration":1800,"bikeId":"5583","endDate":1423933920,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1423932120,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"41210720","duration":1800,"bikeId":"7227","endDate":1423934100,"endStationId":"375","endStationName":"Kensington Town Hall, Kensington","startDate":1423932300,"startStationId":"375","startStationName":"Kensington Town Hall, Kensington"}, +{"_id":"41210793","duration":1380,"bikeId":"7132","endDate":1423933860,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423932480,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41210847","duration":960,"bikeId":"8271","endDate":1423933680,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1423932720,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41210928","duration":600,"bikeId":"10376","endDate":1423933560,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1423932960,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"41210990","duration":420,"bikeId":"8982","endDate":1423933620,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1423933200,"startStationId":"728","startStationName":"Putney Bridge Road, East Putney"}, +{"_id":"41211064","duration":720,"bikeId":"12131","endDate":1423934160,"endStationId":"556","endStationName":"Heron Quays DLR, Canary Wharf","startDate":1423933440,"startStationId":"504","startStationName":"St John's Park, Cubitt Town"}, +{"_id":"41211136","duration":780,"bikeId":"1841","endDate":1423934460,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1423933680,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41211202","duration":2160,"bikeId":"3403","endDate":1423935960,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1423933800,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"41211288","duration":180,"bikeId":"7413","endDate":1423934220,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1423934040,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41211351","duration":1140,"bikeId":"2722","endDate":1423935360,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1423934220,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41211422","duration":780,"bikeId":"1042","endDate":1423935240,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1423934460,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"41211482","duration":780,"bikeId":"575","endDate":1423935480,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1423934700,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41211559","duration":1020,"bikeId":"5030","endDate":1423935900,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1423934880,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41211625","duration":960,"bikeId":"960","endDate":1423936080,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423935120,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41211688","duration":1620,"bikeId":"11867","endDate":1423936920,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1423935300,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"41211759","duration":840,"bikeId":"7102","endDate":1423936380,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1423935540,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41211828","duration":420,"bikeId":"9577","endDate":1423936200,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1423935780,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41211908","duration":1140,"bikeId":"8970","endDate":1423937160,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1423936020,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41211981","duration":240,"bikeId":"12606","endDate":1423936560,"endStationId":"705","endStationName":"Upper Richmond Road, East Putney","startDate":1423936320,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"41212060","duration":360,"bikeId":"7727","endDate":1423936860,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1423936500,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41212108","duration":480,"bikeId":"590","endDate":1423937220,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423936740,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41212186","duration":480,"bikeId":"8476","endDate":1423937400,"endStationId":"612","endStationName":"Wandsworth Rd, Isley Court, Wandsworth Road","startDate":1423936920,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"41212260","duration":540,"bikeId":"9557","endDate":1423937700,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1423937160,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41212302","duration":1440,"bikeId":"11312","endDate":1423938780,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1423937340,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41212402","duration":360,"bikeId":"6609","endDate":1423938060,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1423937700,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41212466","duration":0,"bikeId":"5960","endDate":1423937940,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1423937940,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41212518","duration":900,"bikeId":"13080","endDate":1423939080,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1423938180,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"41212585","duration":2700,"bikeId":"12479","endDate":1423941180,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1423938480,"startStationId":"705","startStationName":"Upper Richmond Road, East Putney"}, +{"_id":"41212655","duration":1200,"bikeId":"7188","endDate":1423939980,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1423938780,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41212727","duration":540,"bikeId":"6533","endDate":1423939620,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1423939080,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"41212786","duration":600,"bikeId":"4772","endDate":1423939980,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1423939380,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41212864","duration":480,"bikeId":"11212","endDate":1423940160,"endStationId":"563","endStationName":"Preston's Road, Cubitt Town","startDate":1423939680,"startStationId":"477","startStationName":"Spindrift Avenue, Millwall"}, +{"_id":"41212923","duration":720,"bikeId":"12484","endDate":1423940700,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1423939980,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"41212991","duration":1200,"bikeId":"2","endDate":1423941480,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1423940280,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"41213066","duration":1380,"bikeId":"11036","endDate":1423941900,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1423940520,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41213124","duration":2040,"bikeId":"1795","endDate":1423942860,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1423940820,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41213208","duration":420,"bikeId":"4711","endDate":1423941660,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1423941240,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41213265","duration":1140,"bikeId":"10712","endDate":1423942740,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1423941600,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41213338","duration":240,"bikeId":"9644","endDate":1423942260,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1423942020,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41213403","duration":1020,"bikeId":"2273","endDate":1423943340,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1423942320,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"41213485","duration":180,"bikeId":"7784","endDate":1423942920,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1423942740,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41213543","duration":300,"bikeId":"4925","endDate":1423943340,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1423943040,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41213601","duration":900,"bikeId":"3066","endDate":1423944300,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1423943400,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41213682","duration":1080,"bikeId":"12104","endDate":1423944960,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1423943880,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41213748","duration":960,"bikeId":"5714","endDate":1423945200,"endStationId":"208","endStationName":"Mallory Street, Marylebone","startDate":1423944240,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"41213817","duration":1740,"bikeId":"2731","endDate":1423946340,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1423944600,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41213889","duration":900,"bikeId":"10510","endDate":1423946100,"endStationId":"617","endStationName":"Elysium Place, Fulham","startDate":1423945200,"startStationId":"734","startStationName":"Plough Terrace, Clapham Junction"}, +{"_id":"41213961","duration":240,"bikeId":"290","endDate":1423946220,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1423945980,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"41214025","duration":600,"bikeId":"2541","endDate":1423947120,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1423946520,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"41214088","duration":1440,"bikeId":"3811","endDate":1423948500,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1423947060,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"41214156","duration":960,"bikeId":"6069","endDate":1423948560,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1423947600,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41214233","duration":420,"bikeId":"12761","endDate":1423948620,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1423948200,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"41214304","duration":180,"bikeId":"6943","endDate":1423949040,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1423948860,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41214373","duration":1380,"bikeId":"5812","endDate":1423950780,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1423949400,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41214451","duration":300,"bikeId":"2931","endDate":1423950540,"endStationId":"117","endStationName":"Lollard Street, Vauxhall","startDate":1423950240,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41214515","duration":960,"bikeId":"7708","endDate":1423952100,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1423951140,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41214582","duration":360,"bikeId":"10868","endDate":1423952160,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1423951800,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41214654","duration":720,"bikeId":"10771","endDate":1423953120,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1423952400,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41214718","duration":720,"bikeId":"8408","endDate":1423953660,"endStationId":"477","endStationName":"Spindrift Avenue, Millwall","startDate":1423952940,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41214791","duration":180,"bikeId":"4846","endDate":1423953720,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1423953540,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41214856","duration":960,"bikeId":"2615","endDate":1423955220,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423954260,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41214925","duration":420,"bikeId":"2007","endDate":1423955520,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1423955100,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41214993","duration":180,"bikeId":"9653","endDate":1423956000,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1423955820,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41215064","duration":120,"bikeId":"3926","endDate":1423956540,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1423956420,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"41215134","duration":360,"bikeId":"1795","endDate":1423957380,"endStationId":"142","endStationName":"West Cromwell Road, Earl's Court","startDate":1423957020,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41215207","duration":660,"bikeId":"11776","endDate":1423958160,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1423957500,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41215277","duration":660,"bikeId":"6170","endDate":1423958880,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1423958220,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41215350","duration":840,"bikeId":"3709","endDate":1423959960,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1423959120,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41215417","duration":600,"bikeId":"469","endDate":1423960560,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1423959960,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"41215476","duration":1080,"bikeId":"4976","endDate":1423961940,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1423960860,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41215558","duration":4560,"bikeId":"8163","endDate":1423966200,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1423961640,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41215622","duration":300,"bikeId":"7263","endDate":1423962840,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1423962540,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41215696","duration":1020,"bikeId":"5987","endDate":1423964520,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1423963500,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41215765","duration":900,"bikeId":"8173","endDate":1423965360,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1423964460,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41215832","duration":780,"bikeId":"2047","endDate":1423966500,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1423965720,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41215900","duration":900,"bikeId":"9806","endDate":1423967580,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1423966680,"startStationId":"660","startStationName":"West Kensington Station, West Kensington"}, +{"_id":"41215967","duration":1320,"bikeId":"280","endDate":1423968900,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1423967580,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41216035","duration":3180,"bikeId":"3701","endDate":1423972140,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1423968960,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"41216109","duration":720,"bikeId":"12879","endDate":1423971240,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1423970520,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41216180","duration":1020,"bikeId":"1356","endDate":1423972800,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1423971780,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41216249","duration":120,"bikeId":"1749","endDate":1423974960,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1423974840,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41216321","duration":360,"bikeId":"12299","endDate":1423978740,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1423978380,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41216397","duration":1380,"bikeId":"1715","endDate":1423983000,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1423981620,"startStationId":"487","startStationName":"Canton Street, Poplar"}, +{"_id":"41216463","duration":1500,"bikeId":"8252","endDate":1423985820,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1423984320,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41216528","duration":0,"bikeId":"10411","endDate":1423986900,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1423986900,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41216605","duration":480,"bikeId":"12403","endDate":1423988940,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1423988460,"startStationId":"247","startStationName":"St. John's Wood Church, Regent's Park"}, +{"_id":"41216669","duration":1320,"bikeId":"8781","endDate":1423990620,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1423989300,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41216737","duration":3540,"bikeId":"7151","endDate":1423993620,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1423990080,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41216813","duration":660,"bikeId":"9764","endDate":1423991520,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1423990860,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"41216878","duration":240,"bikeId":"2035","endDate":1423991820,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1423991580,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"41216950","duration":780,"bikeId":"7795","endDate":1423992840,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1423992060,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41217017","duration":1380,"bikeId":"11726","endDate":1423994040,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1423992660,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41217086","duration":1200,"bikeId":"1838","endDate":1423994220,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1423993020,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41217146","duration":120,"bikeId":"307","endDate":1423993500,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1423993380,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"41217221","duration":1020,"bikeId":"94","endDate":1423994760,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1423993740,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41217286","duration":1620,"bikeId":"11153","endDate":1423995720,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1423994100,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"41217362","duration":480,"bikeId":"12705","endDate":1423994880,"endStationId":"634","endStationName":"Brook Green South, Brook Green","startDate":1423994400,"startStationId":"667","startStationName":"Shepherd's Bush Road North, Shepherd's Bush"}, +{"_id":"41217440","duration":600,"bikeId":"12950","endDate":1423995300,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423994700,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41217495","duration":240,"bikeId":"393","endDate":1423995180,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1423994940,"startStationId":"740","startStationName":"Sirdar Road, Avondale"}, +{"_id":"41217590","duration":1500,"bikeId":"1658","endDate":1423996800,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1423995300,"startStationId":"156","startStationName":"New Kent Road, Borough"}, +{"_id":"41217651","duration":960,"bikeId":"12696","endDate":1423996560,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1423995600,"startStationId":"741","startStationName":"Freston Road, Avondale"}, +{"_id":"41217731","duration":540,"bikeId":"9077","endDate":1423996440,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1423995900,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41217775","duration":720,"bikeId":"8168","endDate":1423996800,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1423996080,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"41217851","duration":360,"bikeId":"11720","endDate":1423996680,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1423996320,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41217924","duration":1440,"bikeId":"8036","endDate":1423998060,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1423996620,"startStationId":"247","startStationName":"St. John's Wood Church, Regent's Park"}, +{"_id":"41217984","duration":360,"bikeId":"5418","endDate":1423997160,"endStationId":"674","endStationName":"Carnegie Street, King's Cross","startDate":1423996800,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41218046","duration":720,"bikeId":"4881","endDate":1423997760,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1423997040,"startStationId":"715","startStationName":"Aylward Street, Stepney"}, +{"_id":"41218130","duration":360,"bikeId":"11794","endDate":1423997640,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1423997280,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41218186","duration":900,"bikeId":"12766","endDate":1423998360,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1423997460,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41218279","duration":1020,"bikeId":"871","endDate":1423998720,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1423997700,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41218324","duration":1260,"bikeId":"10557","endDate":1423999200,"endStationId":"172","endStationName":"Sumner Place, South Kensington","startDate":1423997940,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41218406","duration":0,"bikeId":"11456","endDate":1423998240,"endStationId":"636","endStationName":"South Park, Sands End","startDate":1423998240,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"41218470","duration":1320,"bikeId":"12772","endDate":1423999740,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1423998420,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41218535","duration":780,"bikeId":"854","endDate":1423999440,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1423998660,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"41218605","duration":1080,"bikeId":"10363","endDate":1423999980,"endStationId":"763","endStationName":"Mile End Park Leisure Centre, Mile End","startDate":1423998900,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"41218694","duration":1080,"bikeId":"11169","endDate":1424000220,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1423999140,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41218738","duration":900,"bikeId":"11841","endDate":1424000220,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1423999320,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41218827","duration":720,"bikeId":"10835","endDate":1424000220,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1423999500,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41218895","duration":7260,"bikeId":"4615","endDate":1424006940,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1423999680,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"41218974","duration":2940,"bikeId":"11689","endDate":1424002800,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1423999860,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41219046","duration":6120,"bikeId":"11359","endDate":1424006160,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1424000040,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41219114","duration":240,"bikeId":"6251","endDate":1424000520,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1424000280,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41219182","duration":1140,"bikeId":"11305","endDate":1424001600,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1424000460,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"41219252","duration":1380,"bikeId":"7839","endDate":1424002020,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424000640,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41219317","duration":780,"bikeId":"10675","endDate":1424001540,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424000760,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41219372","duration":1980,"bikeId":"3115","endDate":1424002920,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1424000940,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41219448","duration":300,"bikeId":"10912","endDate":1424001480,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1424001180,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41219529","duration":1200,"bikeId":"16","endDate":1424002560,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1424001360,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41219588","duration":300,"bikeId":"298","endDate":1424001840,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1424001540,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"41219644","duration":1080,"bikeId":"2437","endDate":1424002800,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1424001720,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"41219750","duration":720,"bikeId":"5640","endDate":1424002620,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424001900,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41219798","duration":1380,"bikeId":"12991","endDate":1424003400,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1424002020,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"41219872","duration":5640,"bikeId":"6554","endDate":1424007840,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1424002200,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41219944","duration":1560,"bikeId":"8926","endDate":1424003940,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1424002380,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"41220030","duration":900,"bikeId":"12469","endDate":1424003520,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1424002620,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"41220071","duration":5100,"bikeId":"2733","endDate":1424007840,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1424002740,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41220155","duration":5460,"bikeId":"2693","endDate":1424008380,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1424002920,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41220226","duration":780,"bikeId":"5435","endDate":1424003880,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1424003100,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41220310","duration":720,"bikeId":"8590","endDate":1424003940,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424003220,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"41220368","duration":1380,"bikeId":"1210","endDate":1424004720,"endStationId":"543","endStationName":"Lansdowne Walk, Notting Hill","startDate":1424003340,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"41220437","duration":1500,"bikeId":"6335","endDate":1424005020,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1424003520,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41220529","duration":360,"bikeId":"9970","endDate":1424004060,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1424003700,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41220571","duration":2160,"bikeId":"6579","endDate":1424005980,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1424003820,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41220650","duration":1200,"bikeId":"10263","endDate":1424005200,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424004000,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"41220710","duration":600,"bikeId":"4772","endDate":1424004720,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1424004120,"startStationId":"762","startStationName":"Storey's Gate, Westminster"}, +{"_id":"41220789","duration":840,"bikeId":"2607","endDate":1424005080,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1424004240,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"41220889","duration":420,"bikeId":"5979","endDate":1424004840,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1424004420,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"41220908","duration":1740,"bikeId":"10896","endDate":1424006220,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1424004480,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41220991","duration":420,"bikeId":"108","endDate":1424005080,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1424004660,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"41221102","duration":1080,"bikeId":"10429","endDate":1424005920,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1424004840,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41221137","duration":1500,"bikeId":"4533","endDate":1424006460,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1424004960,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41221210","duration":1080,"bikeId":"1672","endDate":1424006220,"endStationId":"172","endStationName":"Sumner Place, South Kensington","startDate":1424005140,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"41221280","duration":3060,"bikeId":"10158","endDate":1424008320,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1424005260,"startStationId":"315","startStationName":"The Tennis Courts, Regent's Park"}, +{"_id":"41221362","duration":1080,"bikeId":"2168","endDate":1424006520,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424005440,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"41221433","duration":1740,"bikeId":"12061","endDate":1424007300,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1424005560,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"41221496","duration":960,"bikeId":"7467","endDate":1424006640,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424005680,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41221572","duration":1140,"bikeId":"5409","endDate":1424006940,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1424005800,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"41221637","duration":480,"bikeId":"12103","endDate":1424006460,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1424005980,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"41221714","duration":1500,"bikeId":"4438","endDate":1424007660,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1424006160,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41221820","duration":480,"bikeId":"5569","endDate":1424006820,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424006340,"startStationId":"164","startStationName":"Cleveland Gardens, Bayswater"}, +{"_id":"41221883","duration":720,"bikeId":"2531","endDate":1424007180,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1424006460,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41221925","duration":3960,"bikeId":"7634","endDate":1424010540,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1424006580,"startStationId":"721","startStationName":"Wendon Street, Old Ford"}, +{"_id":"41222022","duration":1020,"bikeId":"12013","endDate":1424007780,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1424006760,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"41222057","duration":1380,"bikeId":"4748","endDate":1424008260,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1424006880,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"41222145","duration":360,"bikeId":"7729","endDate":1424007420,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1424007060,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41222207","duration":1500,"bikeId":"1514","endDate":1424008680,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424007180,"startStationId":"716","startStationName":"Stainsby Road , Poplar"}, +{"_id":"41222285","duration":1080,"bikeId":"5781","endDate":1424008440,"endStationId":"693","endStationName":"Felsham Road, Putney","startDate":1424007360,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41222341","duration":420,"bikeId":"8037","endDate":1424007900,"endStationId":"763","endStationName":"Mile End Park Leisure Centre, Mile End","startDate":1424007480,"startStationId":"470","startStationName":"Mostyn Grove, Bow"}, +{"_id":"41222423","duration":660,"bikeId":"3239","endDate":1424008320,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1424007660,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41222474","duration":480,"bikeId":"5223","endDate":1424008260,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424007780,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"41222542","duration":600,"bikeId":"7955","endDate":1424008500,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1424007900,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41222630","duration":1200,"bikeId":"10843","endDate":1424009220,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1424008020,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41222707","duration":1380,"bikeId":"12527","endDate":1424009520,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1424008140,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41222778","duration":240,"bikeId":"5339","endDate":1424008560,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424008320,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41222853","duration":1200,"bikeId":"5767","endDate":1424009640,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1424008440,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41222921","duration":2400,"bikeId":"3893","endDate":1424010960,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424008560,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41222986","duration":1140,"bikeId":"2879","endDate":1424009820,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1424008680,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"41223042","duration":5640,"bikeId":"6998","endDate":1424014440,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1424008800,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"41223121","duration":2340,"bikeId":"6494","endDate":1424011260,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1424008920,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"41223192","duration":900,"bikeId":"5194","endDate":1424010000,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424009100,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41223241","duration":1560,"bikeId":"9214","endDate":1424010780,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1424009220,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"41223320","duration":1440,"bikeId":"10473","endDate":1424010780,"endStationId":"618","endStationName":"Eel Brook Common, Walham Green","startDate":1424009340,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"41223377","duration":2400,"bikeId":"5554","endDate":1424011860,"endStationId":"521","endStationName":"Driffield Road, Old Ford","startDate":1424009460,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"41223483","duration":360,"bikeId":"5135","endDate":1424010000,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1424009640,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41223530","duration":480,"bikeId":"5463","endDate":1424010180,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1424009700,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41223611","duration":7080,"bikeId":"12852","endDate":1424016960,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1424009880,"startStationId":"352","startStationName":"Vauxhall Street, Vauxhall"}, +{"_id":"41223669","duration":900,"bikeId":"11795","endDate":1424010900,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1424010000,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41223776","duration":1320,"bikeId":"9797","endDate":1424011560,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1424010240,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41223844","duration":600,"bikeId":"12197","endDate":1424010960,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1424010360,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"41223872","duration":840,"bikeId":"1557","endDate":1424011260,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1424010420,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41223948","duration":1020,"bikeId":"9067","endDate":1424011560,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424010540,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"41224055","duration":2220,"bikeId":"4160","endDate":1424012940,"endStationId":"111","endStationName":"Park Lane , Hyde Park","startDate":1424010720,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41224107","duration":1680,"bikeId":"7984","endDate":1424012520,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1424010840,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41224160","duration":420,"bikeId":"11914","endDate":1424011380,"endStationId":"776","endStationName":"Abyssinia Close, Clapham Junction","startDate":1424010960,"startStationId":"776","startStationName":"Abyssinia Close, Clapham Junction"}, +{"_id":"41224257","duration":480,"bikeId":"4889","endDate":1424011620,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1424011140,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41224323","duration":1560,"bikeId":"10912","endDate":1424012760,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1424011200,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"41224405","duration":3480,"bikeId":"12101","endDate":1424014800,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1424011320,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41224468","duration":1980,"bikeId":"8690","endDate":1424013420,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424011440,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"41224522","duration":2040,"bikeId":"11848","endDate":1424013600,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1424011560,"startStationId":"250","startStationName":"Royal Avenue 1, Chelsea"}, +{"_id":"41224603","duration":240,"bikeId":"3626","endDate":1424011920,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1424011680,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"41224693","duration":900,"bikeId":"3674","endDate":1424012760,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424011860,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41224752","duration":2220,"bikeId":"5366","endDate":1424014200,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1424011980,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41224821","duration":1740,"bikeId":"3662","endDate":1424013840,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1424012100,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41224904","duration":360,"bikeId":"2403","endDate":1424012580,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424012220,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"41224971","duration":660,"bikeId":"6792","endDate":1424013000,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1424012340,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"41225048","duration":1140,"bikeId":"3341","endDate":1424013600,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424012460,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41225091","duration":180,"bikeId":"1557","endDate":1424012760,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1424012580,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"41225183","duration":1560,"bikeId":"1395","endDate":1424014260,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1424012700,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"41225252","duration":720,"bikeId":"3752","endDate":1424013540,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1424012820,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"41225304","duration":1380,"bikeId":"10491","endDate":1424014320,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1424012940,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"41225411","duration":2400,"bikeId":"10016","endDate":1424015520,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1424013120,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"41225469","duration":840,"bikeId":"6950","endDate":1424014140,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1424013300,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41225539","duration":7440,"bikeId":"2310","endDate":1424020860,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1424013420,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"41225600","duration":6000,"bikeId":"2586","endDate":1424019540,"endStationId":"454","endStationName":"Napier Avenue, Millwall","startDate":1424013540,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"41225662","duration":420,"bikeId":"7274","endDate":1424014080,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1424013660,"startStationId":"722","startStationName":"Finnis Street, Bethnal Green"}, +{"_id":"41225730","duration":2760,"bikeId":"11350","endDate":1424016540,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1424013780,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"41225825","duration":540,"bikeId":"9846","endDate":1424014500,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1424013960,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"41225854","duration":420,"bikeId":"8802","endDate":1424014440,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424014020,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41225942","duration":300,"bikeId":"7319","endDate":1424014440,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1424014140,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41226018","duration":3480,"bikeId":"7323","endDate":1424017800,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1424014320,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"41226101","duration":6000,"bikeId":"10879","endDate":1424020380,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1424014380,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41226175","duration":180,"bikeId":"9639","endDate":1424014680,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1424014500,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"41226249","duration":480,"bikeId":"10209","endDate":1424015100,"endStationId":"698","endStationName":"Shoreditch Court, Haggerston","startDate":1424014620,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41226302","duration":840,"bikeId":"11007","endDate":1424015520,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1424014680,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41226347","duration":360,"bikeId":"4533","endDate":1424015160,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1424014800,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41226428","duration":2460,"bikeId":"1643","endDate":1424017380,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1424014920,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"41226518","duration":720,"bikeId":"6379","endDate":1424015760,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1424015040,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41226570","duration":2340,"bikeId":"7745","endDate":1424017500,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1424015160,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"41226630","duration":1800,"bikeId":"7858","endDate":1424017080,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1424015280,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"41226714","duration":1200,"bikeId":"6340","endDate":1424016600,"endStationId":"517","endStationName":"Ford Road, Old Ford","startDate":1424015400,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41226785","duration":840,"bikeId":"12687","endDate":1424016360,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424015520,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41226831","duration":840,"bikeId":"10968","endDate":1424016480,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1424015640,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"41226914","duration":4920,"bikeId":"8590","endDate":1424020680,"endStationId":"705","endStationName":"Upper Richmond Road, East Putney","startDate":1424015760,"startStationId":"693","startStationName":"Felsham Road, Putney"}, +{"_id":"41226977","duration":1260,"bikeId":"10605","endDate":1424017140,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1424015880,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"41227041","duration":1740,"bikeId":"11150","endDate":1424017740,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1424016000,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41227124","duration":1200,"bikeId":"9564","endDate":1424017320,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424016120,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41227208","duration":3000,"bikeId":"5777","endDate":1424019300,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1424016300,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41227296","duration":240,"bikeId":"1255","endDate":1424016660,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424016420,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41227365","duration":2160,"bikeId":"11353","endDate":1424018700,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1424016540,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"41227433","duration":4560,"bikeId":"4716","endDate":1424021220,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1424016660,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41227516","duration":300,"bikeId":"2131","endDate":1424017080,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1424016780,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"41227564","duration":1140,"bikeId":"3763","endDate":1424018040,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1424016900,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41227596","duration":780,"bikeId":"6872","endDate":1424017740,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1424016960,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41227693","duration":1620,"bikeId":"8298","endDate":1424018700,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1424017080,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41227798","duration":1380,"bikeId":"4609","endDate":1424018640,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424017260,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"41227829","duration":540,"bikeId":"10647","endDate":1424017860,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1424017320,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41227901","duration":1860,"bikeId":"8862","endDate":1424019300,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1424017440,"startStationId":"728","startStationName":"Putney Bridge Road, East Putney"}, +{"_id":"41228001","duration":1020,"bikeId":"8353","endDate":1424018640,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1424017620,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41228045","duration":660,"bikeId":"2904","endDate":1424018340,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1424017680,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41228148","duration":780,"bikeId":"6085","endDate":1424018640,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1424017860,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41228209","duration":1080,"bikeId":"11878","endDate":1424019060,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1424017980,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41228257","duration":1620,"bikeId":"445","endDate":1424019720,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1424018100,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"41228365","duration":480,"bikeId":"11267","endDate":1424018760,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1424018280,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41228451","duration":540,"bikeId":"1876","endDate":1424018940,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1424018400,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41228506","duration":1320,"bikeId":"6777","endDate":1424019840,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1424018520,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41228549","duration":600,"bikeId":"5812","endDate":1424019180,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1424018580,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"41228635","duration":720,"bikeId":"2529","endDate":1424019420,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1424018700,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41228691","duration":1140,"bikeId":"6209","endDate":1424019960,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1424018820,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"41228789","duration":840,"bikeId":"9204","endDate":1424019840,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1424019000,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"41228840","duration":360,"bikeId":"8280","endDate":1424019480,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424019120,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41228888","duration":3240,"bikeId":"4214","endDate":1424022480,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1424019240,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41228983","duration":1380,"bikeId":"2883","endDate":1424020740,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1424019360,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"41229051","duration":300,"bikeId":"8642","endDate":1424019840,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1424019540,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41229109","duration":1080,"bikeId":"5499","endDate":1424020740,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1424019660,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41229182","duration":2340,"bikeId":"3969","endDate":1424022120,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1424019780,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"41229262","duration":2100,"bikeId":"11271","endDate":1424022000,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1424019900,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41229328","duration":420,"bikeId":"9280","endDate":1424020440,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1424020020,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"41229396","duration":1380,"bikeId":"413","endDate":1424021520,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1424020140,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41229459","duration":900,"bikeId":"10622","endDate":1424021160,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1424020260,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41229503","duration":960,"bikeId":"10160","endDate":1424021340,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1424020380,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"41229598","duration":840,"bikeId":"9806","endDate":1424021400,"endStationId":"149","endStationName":"Kennington Road Post Office, Oval","startDate":1424020560,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"41229704","duration":780,"bikeId":"283","endDate":1424021520,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1424020740,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"41229759","duration":1560,"bikeId":"5715","endDate":1424022420,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424020860,"startStationId":"692","startStationName":"Cadogan Close, Victoria Park"}, +{"_id":"41229801","duration":3840,"bikeId":"7126","endDate":1424024820,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1424020980,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"41229868","duration":2820,"bikeId":"8261","endDate":1424023980,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1424021160,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41229946","duration":1620,"bikeId":"8104","endDate":1424023020,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1424021400,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41230019","duration":0,"bikeId":"6135","endDate":1424021580,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424021580,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41230097","duration":960,"bikeId":"12625","endDate":1424022720,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1424021760,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41230155","duration":960,"bikeId":"5079","endDate":1424022900,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1424021940,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41230224","duration":1140,"bikeId":"829","endDate":1424023260,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1424022120,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41230292","duration":840,"bikeId":"11363","endDate":1424023200,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1424022360,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41230364","duration":1440,"bikeId":"11224","endDate":1424023980,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1424022540,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41230457","duration":540,"bikeId":"5751","endDate":1424023320,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1424022780,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"41230510","duration":780,"bikeId":"6509","endDate":1424023800,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1424023020,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41230571","duration":1260,"bikeId":"5045","endDate":1424024400,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1424023140,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"41230643","duration":480,"bikeId":"5085","endDate":1424023800,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1424023320,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41230708","duration":1500,"bikeId":"11327","endDate":1424025060,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1424023560,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41230779","duration":1440,"bikeId":"1778","endDate":1424025240,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424023800,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41230850","duration":1020,"bikeId":"6496","endDate":1424025000,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1424023980,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"41230896","duration":660,"bikeId":"4152","endDate":1424024820,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1424024160,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41230980","duration":780,"bikeId":"6086","endDate":1424025180,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1424024400,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41231045","duration":480,"bikeId":"2903","endDate":1424025120,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424024640,"startStationId":"276","startStationName":"Lower Thames Street, Monument"}, +{"_id":"41231117","duration":180,"bikeId":"3989","endDate":1424025120,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1424024940,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41231192","duration":780,"bikeId":"6749","endDate":1424025960,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1424025180,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"41231264","duration":180,"bikeId":"133","endDate":1424025660,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424025480,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41231329","duration":840,"bikeId":"7103","endDate":1424026620,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1424025780,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41231418","duration":720,"bikeId":"5285","endDate":1424026800,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1424026080,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"41231460","duration":300,"bikeId":"2153","endDate":1424026560,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424026260,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"41231520","duration":1140,"bikeId":"2025","endDate":1424027640,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1424026500,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"41231611","duration":1500,"bikeId":"6209","endDate":1424028300,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1424026800,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"41231685","duration":300,"bikeId":"6421","endDate":1424027460,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1424027160,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"41231748","duration":420,"bikeId":"5904","endDate":1424027820,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1424027400,"startStationId":"725","startStationName":"Thessaly Road North, Nine Elms"}, +{"_id":"41231818","duration":240,"bikeId":"1719","endDate":1424027880,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1424027640,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"41231875","duration":1980,"bikeId":"7046","endDate":1424029920,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424027940,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41231933","duration":120,"bikeId":"8996","endDate":1424028300,"endStationId":"627","endStationName":"Holden Street, Battersea","startDate":1424028180,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41232018","duration":540,"bikeId":"8646","endDate":1424029140,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1424028600,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41232089","duration":540,"bikeId":"3776","endDate":1424029560,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1424029020,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41232161","duration":420,"bikeId":"1113","endDate":1424029800,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1424029380,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"41232225","duration":2220,"bikeId":"8860","endDate":1424031960,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424029740,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"41232293","duration":720,"bikeId":"12019","endDate":1424030880,"endStationId":"712","endStationName":"Mile End Stadium, Mile End","startDate":1424030160,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41232364","duration":1320,"bikeId":"5005","endDate":1424031840,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1424030520,"startStationId":"609","startStationName":"Sugden Road, Battersea"}, +{"_id":"41232430","duration":1320,"bikeId":"10588","endDate":1424032140,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1424030820,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41232493","duration":1440,"bikeId":"6377","endDate":1424032680,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1424031240,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41232567","duration":420,"bikeId":"10203","endDate":1424032140,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1424031720,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41232629","duration":120,"bikeId":"6987","endDate":1424032380,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1424032260,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"41232690","duration":360,"bikeId":"3557","endDate":1424033040,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1424032680,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"41232758","duration":1740,"bikeId":"6987","endDate":1424035080,"endStationId":"475","endStationName":"Lightermans Road, Millwall","startDate":1424033340,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41232833","duration":780,"bikeId":"11185","endDate":1424034780,"endStationId":"642","endStationName":"Fawcett Close, Battersea","startDate":1424034000,"startStationId":"642","startStationName":"Fawcett Close, Battersea"}, +{"_id":"41232897","duration":540,"bikeId":"2828","endDate":1424035080,"endStationId":"466","endStationName":"Whiston Road, Haggerston","startDate":1424034540,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41232970","duration":3120,"bikeId":"8614","endDate":1424038260,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424035140,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41233042","duration":480,"bikeId":"7163","endDate":1424036220,"endStationId":"164","endStationName":"Cleveland Gardens, Bayswater","startDate":1424035740,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"41233113","duration":300,"bikeId":"10885","endDate":1424036760,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1424036460,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41233170","duration":3060,"bikeId":"572","endDate":1424040060,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424037000,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41233251","duration":540,"bikeId":"2005","endDate":1424038200,"endStationId":"283","endStationName":"Kingsway, Covent Garden","startDate":1424037660,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41233318","duration":120,"bikeId":"12404","endDate":1424038440,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424038320,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41233389","duration":480,"bikeId":"8444","endDate":1424039640,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1424039160,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41233466","duration":1740,"bikeId":"9311","endDate":1424041620,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424039880,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"41233522","duration":480,"bikeId":"3247","endDate":1424041140,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1424040660,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41233596","duration":540,"bikeId":"4789","endDate":1424042100,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1424041560,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"41233663","duration":1200,"bikeId":"11861","endDate":1424043660,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1424042460,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41233733","duration":720,"bikeId":"7773","endDate":1424044260,"endStationId":"700","endStationName":"Battersea Church Road, Battersea","startDate":1424043540,"startStationId":"612","startStationName":"Wandsworth Rd, Isley Court, Wandsworth Road"}, +{"_id":"41233803","duration":720,"bikeId":"7232","endDate":1424045340,"endStationId":"402","endStationName":"Penfold Street, Marylebone","startDate":1424044620,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"41233877","duration":660,"bikeId":"7489","endDate":1424046720,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1424046060,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41233946","duration":540,"bikeId":"10596","endDate":1424048520,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1424047980,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41234017","duration":1320,"bikeId":"6888","endDate":1424053380,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1424052060,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41234088","duration":360,"bikeId":"8187","endDate":1424059860,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1424059500,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"41234162","duration":1560,"bikeId":"12380","endDate":1424066700,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424065140,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"41234230","duration":660,"bikeId":"2140","endDate":1424067360,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1424066700,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"41234295","duration":1380,"bikeId":"6430","endDate":1424069100,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424067720,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41234364","duration":600,"bikeId":"4598","endDate":1424068800,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424068200,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41234427","duration":900,"bikeId":"11449","endDate":1424069580,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424068680,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41234503","duration":480,"bikeId":"2027","endDate":1424069580,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1424069100,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"41234564","duration":240,"bikeId":"2202","endDate":1424069700,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1424069460,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41234619","duration":1260,"bikeId":"8835","endDate":1424071020,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1424069760,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41234704","duration":1140,"bikeId":"8282","endDate":1424071260,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1424070120,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41234760","duration":300,"bikeId":"12152","endDate":1424070660,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1424070360,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41234837","duration":480,"bikeId":"8212","endDate":1424071080,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424070600,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41234895","duration":780,"bikeId":"3563","endDate":1424071620,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1424070840,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41234960","duration":240,"bikeId":"11276","endDate":1424071260,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1424071020,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41235042","duration":360,"bikeId":"686","endDate":1424071620,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424071260,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41235105","duration":1020,"bikeId":"572","endDate":1424072460,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1424071440,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41235171","duration":840,"bikeId":"12417","endDate":1424072460,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1424071620,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41235214","duration":780,"bikeId":"2880","endDate":1424072520,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1424071740,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41235289","duration":1140,"bikeId":"13067","endDate":1424073060,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1424071920,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41235353","duration":480,"bikeId":"1845","endDate":1424072520,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1424072040,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41235441","duration":600,"bikeId":"3155","endDate":1424072820,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1424072220,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41235524","duration":300,"bikeId":"12690","endDate":1424072640,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424072340,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41235583","duration":1680,"bikeId":"4313","endDate":1424074140,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1424072460,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41235596","duration":600,"bikeId":"5978","endDate":1424073120,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1424072520,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41235684","duration":780,"bikeId":"7357","endDate":1424073420,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424072640,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41235762","duration":660,"bikeId":"12323","endDate":1424073420,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1424072760,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"41235853","duration":720,"bikeId":"11316","endDate":1424073600,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1424072880,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41235898","duration":360,"bikeId":"3321","endDate":1424073360,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1424073000,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"41235934","duration":600,"bikeId":"5861","endDate":1424073660,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424073060,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41236014","duration":660,"bikeId":"4290","endDate":1424073840,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424073180,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"41236084","duration":1200,"bikeId":"10103","endDate":1424074500,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1424073300,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"41236161","duration":1080,"bikeId":"3390","endDate":1424074440,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1424073360,"startStationId":"669","startStationName":"Teversham Lane, Stockwell"}, +{"_id":"41236247","duration":300,"bikeId":"4452","endDate":1424073780,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1424073480,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"41236295","duration":780,"bikeId":"10389","endDate":1424074320,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1424073540,"startStationId":"714","startStationName":"Stewart's Road, Nine Elms"}, +{"_id":"41236362","duration":900,"bikeId":"5800","endDate":1424074560,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424073660,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41236431","duration":600,"bikeId":"767","endDate":1424074320,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1424073720,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41236502","duration":420,"bikeId":"1016","endDate":1424074200,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1424073780,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41236566","duration":600,"bikeId":"11517","endDate":1424074500,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1424073900,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41236610","duration":2460,"bikeId":"12925","endDate":1424076420,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1424073960,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"41236815","duration":960,"bikeId":"5414","endDate":1424075040,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1424074080,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41236767","duration":1200,"bikeId":"404","endDate":1424075340,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1424074140,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"41236877","duration":120,"bikeId":"10970","endDate":1424074380,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1424074260,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"41236892","duration":1020,"bikeId":"8471","endDate":1424075340,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424074320,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41236931","duration":600,"bikeId":"12600","endDate":1424074980,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424074380,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41237061","duration":420,"bikeId":"2527","endDate":1424074920,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1424074500,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41237152","duration":720,"bikeId":"4394","endDate":1424075280,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1424074560,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"41237192","duration":180,"bikeId":"11800","endDate":1424074800,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1424074620,"startStationId":"139","startStationName":"Lambeth Road, Vauxhall"}, +{"_id":"41237220","duration":1860,"bikeId":"326","endDate":1424076540,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1424074680,"startStationId":"673","startStationName":"Hibbert Street, Battersea"}, +{"_id":"41237278","duration":480,"bikeId":"11188","endDate":1424075220,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1424074740,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"41237403","duration":480,"bikeId":"9741","endDate":1424075340,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1424074860,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41237437","duration":900,"bikeId":"1964","endDate":1424075820,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424074920,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"41237513","duration":720,"bikeId":"2968","endDate":1424075700,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424074980,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41237584","duration":480,"bikeId":"1694","endDate":1424075520,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424075040,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41237628","duration":360,"bikeId":"104","endDate":1424075460,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424075100,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41237735","duration":660,"bikeId":"9102","endDate":1424075820,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1424075160,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41237765","duration":660,"bikeId":"8790","endDate":1424075880,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424075220,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"41237833","duration":1320,"bikeId":"6202","endDate":1424076600,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1424075280,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41237887","duration":660,"bikeId":"4803","endDate":1424076000,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424075340,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41237948","duration":420,"bikeId":"10705","endDate":1424075820,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424075400,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41238006","duration":1020,"bikeId":"12845","endDate":1424076480,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1424075460,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41238134","duration":840,"bikeId":"11025","endDate":1424076360,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1424075520,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"41238177","duration":1680,"bikeId":"12072","endDate":1424077260,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424075580,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41238279","duration":480,"bikeId":"9026","endDate":1424076120,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1424075640,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41238300","duration":1020,"bikeId":"2157","endDate":1424076720,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1424075700,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"41238340","duration":1020,"bikeId":"11340","endDate":1424076780,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1424075760,"startStationId":"616","startStationName":"Aintree Street, Fulham"}, +{"_id":"41238467","duration":1680,"bikeId":"1506","endDate":1424077500,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1424075820,"startStationId":"684","startStationName":"Neville Gill Close, Wandsworth"}, +{"_id":"41238516","duration":1080,"bikeId":"10156","endDate":1424076960,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1424075880,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41238562","duration":300,"bikeId":"1218","endDate":1424076240,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1424075940,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41238674","duration":1140,"bikeId":"2200","endDate":1424077140,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1424076000,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41238733","duration":720,"bikeId":"12939","endDate":1424076780,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424076060,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41238764","duration":180,"bikeId":"11755","endDate":1424076300,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1424076120,"startStationId":"675","startStationName":"Usk Road, Battersea"}, +{"_id":"41238842","duration":720,"bikeId":"9648","endDate":1424076900,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1424076180,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"41238922","duration":660,"bikeId":"11361","endDate":1424076900,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1424076240,"startStationId":"274","startStationName":"Warwick Road, Olympia"}, +{"_id":"41238985","duration":600,"bikeId":"13065","endDate":1424076900,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1424076300,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41239023","duration":660,"bikeId":"4813","endDate":1424077020,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424076360,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41239107","duration":660,"bikeId":"676","endDate":1424077080,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1424076420,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41239146","duration":480,"bikeId":"3490","endDate":1424076960,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1424076480,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41239231","duration":3120,"bikeId":"3941","endDate":1424079660,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1424076540,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41239265","duration":360,"bikeId":"365","endDate":1424076960,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424076600,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41239357","duration":1140,"bikeId":"225","endDate":1424077800,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424076660,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"41239454","duration":240,"bikeId":"5635","endDate":1424077020,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1424076780,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41239543","duration":660,"bikeId":"4545","endDate":1424077500,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1424076840,"startStationId":"274","startStationName":"Warwick Road, Olympia"}, +{"_id":"41239574","duration":720,"bikeId":"12768","endDate":1424077620,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424076900,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"41239645","duration":900,"bikeId":"43","endDate":1424077860,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424076960,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41239724","duration":1200,"bikeId":"12904","endDate":1424078280,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424077080,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41239752","duration":420,"bikeId":"9923","endDate":1424077560,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1424077140,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"41239876","duration":120,"bikeId":"12555","endDate":1424077380,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1424077260,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41239935","duration":900,"bikeId":"5417","endDate":1424078220,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1424077320,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41239982","duration":300,"bikeId":"10925","endDate":1424077740,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1424077440,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"41240100","duration":240,"bikeId":"845","endDate":1424077800,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1424077560,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41240145","duration":540,"bikeId":"27","endDate":1424078160,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424077620,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41240203","duration":960,"bikeId":"5653","endDate":1424078700,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1424077740,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41240280","duration":480,"bikeId":"11049","endDate":1424078340,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1424077860,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"41240309","duration":1080,"bikeId":"4753","endDate":1424079000,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1424077920,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"41240404","duration":240,"bikeId":"9655","endDate":1424078280,"endStationId":"205","endStationName":"New Road 2, Whitechapel","startDate":1424078040,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41240442","duration":720,"bikeId":"3370","endDate":1424078820,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1424078100,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"41240532","duration":120,"bikeId":"12176","endDate":1424078340,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1424078220,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"41240595","duration":360,"bikeId":"12996","endDate":1424078700,"endStationId":"339","endStationName":"Risinghill Street, Angel","startDate":1424078340,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"41240691","duration":480,"bikeId":"4130","endDate":1424079000,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1424078520,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41240760","duration":960,"bikeId":"4380","endDate":1424079600,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1424078640,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41240812","duration":1200,"bikeId":"10214","endDate":1424079960,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424078760,"startStationId":"590","startStationName":"Greenberry Street, St.John's Wood"}, +{"_id":"41240865","duration":2040,"bikeId":"2760","endDate":1424080920,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424078880,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41240927","duration":120,"bikeId":"2731","endDate":1424079180,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1424079060,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41241001","duration":840,"bikeId":"6082","endDate":1424080080,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1424079240,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41241076","duration":1380,"bikeId":"467","endDate":1424080800,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1424079420,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41241130","duration":480,"bikeId":"2549","endDate":1424080020,"endStationId":"724","endStationName":"Alma Road, Wandsworth","startDate":1424079540,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"41241195","duration":180,"bikeId":"8682","endDate":1424079900,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1424079720,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41241282","duration":300,"bikeId":"7330","endDate":1424080260,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424079960,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41241342","duration":540,"bikeId":"3397","endDate":1424080680,"endStationId":"561","endStationName":"Rectory Square, Stepney","startDate":1424080140,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41241395","duration":1020,"bikeId":"11798","endDate":1424081340,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1424080320,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41241496","duration":600,"bikeId":"11779","endDate":1424081220,"endStationId":"145","endStationName":"Ilchester Place, Kensington","startDate":1424080620,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"41241539","duration":120,"bikeId":"2352","endDate":1424080980,"endStationId":"461","endStationName":"Aston Street, Stepney","startDate":1424080860,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41241641","duration":1440,"bikeId":"11496","endDate":1424082600,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424081160,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41241686","duration":1920,"bikeId":"1319","endDate":1424083320,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1424081400,"startStationId":"327","startStationName":"New North Road 1, Hoxton"}, +{"_id":"41241764","duration":300,"bikeId":"7842","endDate":1424082000,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1424081700,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41241835","duration":360,"bikeId":"2057","endDate":1424082300,"endStationId":"371","endStationName":"King Edward Walk, Waterloo","startDate":1424081940,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41241900","duration":360,"bikeId":"5256","endDate":1424082600,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1424082240,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"41241975","duration":780,"bikeId":"9389","endDate":1424083320,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1424082540,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41242041","duration":1560,"bikeId":"2028","endDate":1424084400,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1424082840,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"41242104","duration":3360,"bikeId":"12930","endDate":1424086500,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1424083140,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"41242191","duration":360,"bikeId":"7103","endDate":1424083800,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424083440,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41242243","duration":960,"bikeId":"7145","endDate":1424084640,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1424083680,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41242318","duration":420,"bikeId":"7632","endDate":1424084460,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1424084040,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41242388","duration":1800,"bikeId":"12736","endDate":1424086200,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1424084400,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41242453","duration":840,"bikeId":"5573","endDate":1424085600,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1424084760,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41242522","duration":780,"bikeId":"9284","endDate":1424085840,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424085060,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"41242581","duration":600,"bikeId":"3397","endDate":1424085900,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1424085300,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41242668","duration":360,"bikeId":"2781","endDate":1424086020,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1424085660,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41242737","duration":540,"bikeId":"10269","endDate":1424086560,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1424086020,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41242798","duration":600,"bikeId":"2239","endDate":1424086980,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1424086380,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41242865","duration":1560,"bikeId":"3944","endDate":1424088240,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1424086680,"startStationId":"624","startStationName":"Courland Grove, Wandsworth Road"}, +{"_id":"41242939","duration":360,"bikeId":"6106","endDate":1424087340,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424086980,"startStationId":"84","startStationName":"Breams Buildings, Holborn"}, +{"_id":"41243021","duration":360,"bikeId":"3484","endDate":1424087640,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424087280,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41243093","duration":660,"bikeId":"5411","endDate":1424088240,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1424087580,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41243158","duration":1380,"bikeId":"2733","endDate":1424089200,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1424087820,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41243235","duration":840,"bikeId":"3337","endDate":1424088900,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424088060,"startStationId":"715","startStationName":"Aylward Street, Stepney"}, +{"_id":"41243291","duration":1800,"bikeId":"5881","endDate":1424090100,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1424088300,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41243367","duration":1500,"bikeId":"11712","endDate":1424090040,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1424088540,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"41243432","duration":840,"bikeId":"12895","endDate":1424089620,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1424088780,"startStationId":"370","startStationName":"Paddington Green, Paddington"}, +{"_id":"41243500","duration":240,"bikeId":"1329","endDate":1424089320,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1424089080,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41243569","duration":1680,"bikeId":"1049","endDate":1424091060,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1424089380,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"41243634","duration":780,"bikeId":"11188","endDate":1424090460,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424089680,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"41243709","duration":1680,"bikeId":"1367","endDate":1424091660,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1424089980,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"41243785","duration":480,"bikeId":"10485","endDate":1424090700,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1424090220,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41243852","duration":240,"bikeId":"9922","endDate":1424090700,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424090460,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41243908","duration":240,"bikeId":"3920","endDate":1424090940,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424090700,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41243977","duration":2880,"bikeId":"1493","endDate":1424093820,"endStationId":"134","endStationName":"Wapping High Street, Wapping","startDate":1424090940,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"41244051","duration":420,"bikeId":"6062","endDate":1424091720,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1424091300,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"41244118","duration":360,"bikeId":"9380","endDate":1424092020,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1424091660,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41244190","duration":120,"bikeId":"929","endDate":1424092140,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1424092020,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41244251","duration":1140,"bikeId":"10860","endDate":1424093520,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424092380,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41244322","duration":780,"bikeId":"12403","endDate":1424093460,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424092680,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"41244391","duration":420,"bikeId":"2166","endDate":1424093400,"endStationId":"111","endStationName":"Park Lane , Hyde Park","startDate":1424092980,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41244453","duration":1320,"bikeId":"11717","endDate":1424094660,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1424093340,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41244539","duration":600,"bikeId":"7941","endDate":1424094420,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424093820,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41244595","duration":120,"bikeId":"10756","endDate":1424094240,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424094120,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"41244654","duration":1020,"bikeId":"11508","endDate":1424095440,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1424094420,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41244716","duration":600,"bikeId":"9747","endDate":1424095320,"endStationId":"276","endStationName":"Lower Thames Street, Monument","startDate":1424094720,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41244803","duration":360,"bikeId":"8990","endDate":1424095500,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424095140,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"41244864","duration":1320,"bikeId":"6882","endDate":1424096880,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424095560,"startStationId":"371","startStationName":"King Edward Walk, Waterloo"}, +{"_id":"41244934","duration":1080,"bikeId":"12761","endDate":1424097000,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424095920,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41244999","duration":1020,"bikeId":"8236","endDate":1424097480,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1424096460,"startStationId":"565","startStationName":"Selby Street, Whitechapel"}, +{"_id":"41245066","duration":120,"bikeId":"1188","endDate":1424097120,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1424097000,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"41245134","duration":2340,"bikeId":"1689","endDate":1424099820,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1424097480,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41245202","duration":1320,"bikeId":"8417","endDate":1424099460,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1424098140,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"41245278","duration":120,"bikeId":"5209","endDate":1424098860,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1424098740,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"41245342","duration":240,"bikeId":"10057","endDate":1424099700,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1424099460,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41245408","duration":960,"bikeId":"9282","endDate":1424101140,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1424100180,"startStationId":"598","startStationName":"Southerton Road, Hammersmith"}, +{"_id":"41245476","duration":540,"bikeId":"639","endDate":1424101560,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1424101020,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41245538","duration":780,"bikeId":"3303","endDate":1424102580,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1424101800,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41245605","duration":960,"bikeId":"8367","endDate":1424103480,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424102520,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41245678","duration":1080,"bikeId":"11249","endDate":1424104140,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1424103060,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41245740","duration":660,"bikeId":"3130","endDate":1424104260,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1424103600,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"41245808","duration":360,"bikeId":"11270","endDate":1424104440,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1424104080,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41245872","duration":480,"bikeId":"2064","endDate":1424104920,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1424104440,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41245950","duration":480,"bikeId":"8722","endDate":1424105280,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1424104800,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41246011","duration":780,"bikeId":"8408","endDate":1424105940,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1424105160,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41246076","duration":300,"bikeId":"11474","endDate":1424105700,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424105400,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41246143","duration":540,"bikeId":"10091","endDate":1424106240,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424105700,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41246197","duration":540,"bikeId":"8180","endDate":1424106480,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424105940,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41246264","duration":720,"bikeId":"3046","endDate":1424106900,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1424106180,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41246319","duration":600,"bikeId":"409","endDate":1424106900,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1424106300,"startStationId":"59","startStationName":"Rodney Street, Angel"}, +{"_id":"41246412","duration":360,"bikeId":"7262","endDate":1424106900,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1424106540,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41246475","duration":600,"bikeId":"53","endDate":1424107320,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1424106720,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41246536","duration":1140,"bikeId":"12049","endDate":1424107980,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1424106840,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41246606","duration":1260,"bikeId":"11431","endDate":1424108340,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1424107080,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41246673","duration":1320,"bikeId":"8066","endDate":1424108580,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1424107260,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41246754","duration":1260,"bikeId":"11040","endDate":1424108700,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1424107440,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41246817","duration":540,"bikeId":"8934","endDate":1424108220,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1424107680,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"41246892","duration":480,"bikeId":"3321","endDate":1424108400,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1424107920,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41246950","duration":360,"bikeId":"4696","endDate":1424108400,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1424108040,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"41247011","duration":2100,"bikeId":"9917","endDate":1424110260,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1424108160,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"41247093","duration":660,"bikeId":"12398","endDate":1424109000,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424108340,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41247128","duration":1920,"bikeId":"7235","endDate":1424110320,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1424108400,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"41247229","duration":540,"bikeId":"1946","endDate":1424109120,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424108580,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41247282","duration":420,"bikeId":"12786","endDate":1424109120,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424108700,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"41247336","duration":120,"bikeId":"6541","endDate":1424108940,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1424108820,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41247422","duration":960,"bikeId":"9283","endDate":1424109960,"endStationId":"627","endStationName":"Holden Street, Battersea","startDate":1424109000,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41247502","duration":1080,"bikeId":"10218","endDate":1424110260,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1424109180,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"41247553","duration":240,"bikeId":"6217","endDate":1424109540,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1424109300,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41247616","duration":660,"bikeId":"11411","endDate":1424110140,"endStationId":"467","endStationName":"Southern Grove, Bow","startDate":1424109480,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41247697","duration":1080,"bikeId":"6211","endDate":1424110740,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1424109660,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41247752","duration":300,"bikeId":"12338","endDate":1424110140,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424109840,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41247815","duration":900,"bikeId":"749","endDate":1424110860,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1424109960,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41247870","duration":1560,"bikeId":"8045","endDate":1424111640,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1424110080,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41247933","duration":720,"bikeId":"1923","endDate":1424110920,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1424110200,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"41248035","duration":540,"bikeId":"9098","endDate":1424110920,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424110380,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"41248073","duration":360,"bikeId":"9988","endDate":1424110860,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1424110500,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41248150","duration":420,"bikeId":"2793","endDate":1424111100,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1424110680,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41248200","duration":660,"bikeId":"2096","endDate":1424111520,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1424110860,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"41248285","duration":1020,"bikeId":"12713","endDate":1424112120,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424111100,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41248358","duration":960,"bikeId":"5491","endDate":1424112300,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1424111340,"startStationId":"283","startStationName":"Kingsway, Covent Garden"}, +{"_id":"41248409","duration":660,"bikeId":"2435","endDate":1424112180,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1424111520,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"41248484","duration":180,"bikeId":"6693","endDate":1424111940,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1424111760,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"41248542","duration":1380,"bikeId":"11551","endDate":1424113320,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1424111940,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41248605","duration":720,"bikeId":"12019","endDate":1424112840,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1424112120,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41248675","duration":900,"bikeId":"11501","endDate":1424113260,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424112360,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"41248753","duration":720,"bikeId":"3166","endDate":1424113320,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1424112600,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"41248799","duration":900,"bikeId":"3585","endDate":1424113740,"endStationId":"152","endStationName":"Hampton Street, Walworth","startDate":1424112840,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"41248881","duration":1200,"bikeId":"5853","endDate":1424114280,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1424113080,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41248945","duration":420,"bikeId":"5836","endDate":1424113740,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1424113320,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41249016","duration":180,"bikeId":"11862","endDate":1424113800,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1424113620,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"41249096","duration":780,"bikeId":"9314","endDate":1424114700,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1424113920,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41249158","duration":1020,"bikeId":"11943","endDate":1424115120,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1424114100,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"41249220","duration":360,"bikeId":"8045","endDate":1424114760,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1424114400,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41249272","duration":780,"bikeId":"12806","endDate":1424115480,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424114700,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41249345","duration":300,"bikeId":"9271","endDate":1424115360,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1424115060,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41249404","duration":1140,"bikeId":"10072","endDate":1424116440,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1424115300,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41249476","duration":540,"bikeId":"3628","endDate":1424116080,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1424115540,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41249543","duration":180,"bikeId":"647","endDate":1424116080,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1424115900,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41249605","duration":660,"bikeId":"341","endDate":1424116980,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1424116320,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41249678","duration":540,"bikeId":"3370","endDate":1424117400,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1424116860,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41249745","duration":720,"bikeId":"6525","endDate":1424117940,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1424117220,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41249805","duration":840,"bikeId":"5655","endDate":1424118420,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1424117580,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"41249874","duration":1740,"bikeId":"12620","endDate":1424119920,"endStationId":"712","endStationName":"Mile End Stadium, Mile End","startDate":1424118180,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41249939","duration":660,"bikeId":"11777","endDate":1424119440,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424118780,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41250010","duration":360,"bikeId":"8122","endDate":1424119680,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1424119320,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41250077","duration":540,"bikeId":"8221","endDate":1424120340,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424119800,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41250143","duration":360,"bikeId":"5839","endDate":1424120760,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424120400,"startStationId":"59","startStationName":"Rodney Street, Angel"}, +{"_id":"41250208","duration":540,"bikeId":"1562","endDate":1424121480,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1424120940,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"41250275","duration":240,"bikeId":"12811","endDate":1424121660,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1424121420,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41250341","duration":480,"bikeId":"6705","endDate":1424122620,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1424122140,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"41250409","duration":360,"bikeId":"12344","endDate":1424123220,"endStationId":"721","endStationName":"Wendon Street, Old Ford","startDate":1424122860,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"41250472","duration":180,"bikeId":"3412","endDate":1424123640,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1424123460,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41250549","duration":660,"bikeId":"3583","endDate":1424124780,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1424124120,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41250610","duration":900,"bikeId":"8480","endDate":1424125500,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424124600,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"41250684","duration":2580,"bikeId":"13000","endDate":1424127840,"endStationId":"286","endStationName":"St. John's Wood Road, St. John's Wood","startDate":1424125260,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"41250744","duration":900,"bikeId":"4537","endDate":1424126940,"endStationId":"545","endStationName":"Arlington Road, Camden Town","startDate":1424126040,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"41250816","duration":480,"bikeId":"11347","endDate":1424127420,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1424126940,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41250878","duration":840,"bikeId":"7612","endDate":1424128560,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424127720,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41250954","duration":1260,"bikeId":"2037","endDate":1424129880,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1424128620,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41251023","duration":1560,"bikeId":"6563","endDate":1424131140,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1424129580,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41251089","duration":1320,"bikeId":"885","endDate":1424132400,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1424131080,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"41251160","duration":540,"bikeId":"5492","endDate":1424134020,"endStationId":"461","endStationName":"Aston Street, Stepney","startDate":1424133480,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41251227","duration":660,"bikeId":"4963","endDate":1424136420,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1424135760,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"41251298","duration":1860,"bikeId":"12573","endDate":1424143320,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1424141460,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41251374","duration":2700,"bikeId":"4633","endDate":1424152140,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1424149440,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"41251436","duration":180,"bikeId":"6223","endDate":1424152320,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1424152140,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"41251502","duration":540,"bikeId":"10243","endDate":1424154000,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1424153460,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41251567","duration":540,"bikeId":"7038","endDate":1424154660,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1424154120,"startStationId":"736","startStationName":"Queensdale Road, Shepherd's Bush"}, +{"_id":"41251638","duration":660,"bikeId":"3914","endDate":1424155260,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1424154600,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41251701","duration":420,"bikeId":"5586","endDate":1424155440,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424155020,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41251758","duration":540,"bikeId":"10161","endDate":1424155860,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1424155320,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41251836","duration":420,"bikeId":"4667","endDate":1424156100,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1424155680,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41251904","duration":360,"bikeId":"2825","endDate":1424156340,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1424155980,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41251973","duration":1260,"bikeId":"4452","endDate":1424157540,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424156280,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41252039","duration":420,"bikeId":"7263","endDate":1424156940,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424156520,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41252112","duration":480,"bikeId":"12160","endDate":1424157240,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1424156760,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"41252165","duration":360,"bikeId":"9987","endDate":1424157300,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424156940,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41252225","duration":600,"bikeId":"4390","endDate":1424157720,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1424157120,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"41252290","duration":1080,"bikeId":"8548","endDate":1424158380,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1424157300,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"41252382","duration":1620,"bikeId":"371","endDate":1424159160,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1424157540,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"41252434","duration":540,"bikeId":"6631","endDate":1424158260,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424157720,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41252515","duration":660,"bikeId":"9626","endDate":1424158560,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1424157900,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41252583","duration":1140,"bikeId":"12052","endDate":1424159160,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1424158020,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41252645","duration":300,"bikeId":"180","endDate":1424158440,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1424158140,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41252704","duration":840,"bikeId":"8720","endDate":1424159100,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424158260,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41252759","duration":480,"bikeId":"13027","endDate":1424158860,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1424158380,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41252851","duration":300,"bikeId":"7322","endDate":1424158800,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1424158500,"startStationId":"36","startStationName":"De Vere Gardens, Kensington"}, +{"_id":"41252916","duration":1920,"bikeId":"10380","endDate":1424160540,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1424158620,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"41252974","duration":1080,"bikeId":"6578","endDate":1424159820,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1424158740,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41253026","duration":1080,"bikeId":"2638","endDate":1424159940,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1424158860,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"41253117","duration":960,"bikeId":"12857","endDate":1424159940,"endStationId":"207","endStationName":"Grosvenor Crescent, Belgravia","startDate":1424158980,"startStationId":"176","startStationName":"Gloucester Terrace, Bayswater"}, +{"_id":"41253154","duration":720,"bikeId":"345","endDate":1424159760,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424159040,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41253250","duration":900,"bikeId":"2288","endDate":1424160060,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1424159160,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41253286","duration":1020,"bikeId":"12525","endDate":1424160240,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1424159220,"startStationId":"604","startStationName":"St Martin's Close, Camden Town"}, +{"_id":"41253391","duration":240,"bikeId":"3638","endDate":1424159580,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1424159340,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41253439","duration":480,"bikeId":"9375","endDate":1424159940,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1424159460,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"41253484","duration":1020,"bikeId":"11028","endDate":1424160540,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424159520,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41253597","duration":600,"bikeId":"10022","endDate":1424160240,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1424159640,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"41253626","duration":540,"bikeId":"11718","endDate":1424160240,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1424159700,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41253720","duration":660,"bikeId":"1274","endDate":1424160480,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1424159820,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41253787","duration":1380,"bikeId":"2859","endDate":1424161320,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1424159940,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"41253832","duration":720,"bikeId":"4740","endDate":1424160720,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1424160000,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"41253877","duration":960,"bikeId":"2461","endDate":1424161020,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1424160060,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41253941","duration":480,"bikeId":"12824","endDate":1424160600,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1424160120,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41254037","duration":720,"bikeId":"3687","endDate":1424160960,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1424160240,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41254113","duration":180,"bikeId":"5716","endDate":1424160480,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1424160300,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41254136","duration":900,"bikeId":"12739","endDate":1424161260,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1424160360,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41254233","duration":240,"bikeId":"8669","endDate":1424160720,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1424160480,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"41254342","duration":840,"bikeId":"3155","endDate":1424161380,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1424160540,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41254366","duration":300,"bikeId":"646","endDate":1424160900,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1424160600,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41254401","duration":180,"bikeId":"12353","endDate":1424160840,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1424160660,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41254493","duration":1260,"bikeId":"2858","endDate":1424161980,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1424160720,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41254532","duration":600,"bikeId":"9738","endDate":1424161380,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1424160780,"startStationId":"505","startStationName":"Ackroyd Drive, Bow"}, +{"_id":"41254624","duration":420,"bikeId":"6663","endDate":1424161260,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1424160840,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41254658","duration":120,"bikeId":"3619","endDate":1424161020,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424160900,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"41254755","duration":360,"bikeId":"13033","endDate":1424161380,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1424161020,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41254829","duration":180,"bikeId":"12025","endDate":1424161260,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424161080,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41254876","duration":1260,"bikeId":"5055","endDate":1424162400,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1424161140,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41254983","duration":720,"bikeId":"9106","endDate":1424161920,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1424161200,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"41255028","duration":1680,"bikeId":"7882","endDate":1424162940,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1424161260,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"41255087","duration":1500,"bikeId":"5710","endDate":1424162820,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1424161320,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41255171","duration":660,"bikeId":"4355","endDate":1424162040,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1424161380,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41255228","duration":240,"bikeId":"1987","endDate":1424161680,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1424161440,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41255294","duration":240,"bikeId":"4470","endDate":1424161740,"endStationId":"370","endStationName":"Paddington Green, Paddington","startDate":1424161500,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"41255394","duration":180,"bikeId":"10285","endDate":1424161800,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1424161620,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41255444","duration":480,"bikeId":"1680","endDate":1424162100,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1424161620,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"41255522","duration":420,"bikeId":"3194","endDate":1424162160,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1424161740,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"41255535","duration":900,"bikeId":"385","endDate":1424162640,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1424161740,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"41255616","duration":1260,"bikeId":"7237","endDate":1424163060,"endStationId":"598","endStationName":"Southerton Road, Hammersmith","startDate":1424161800,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41255777","duration":420,"bikeId":"12515","endDate":1424162340,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1424161920,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"41255731","duration":840,"bikeId":"11355","endDate":1424162760,"endStationId":"207","endStationName":"Grosvenor Crescent, Belgravia","startDate":1424161920,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41255785","duration":720,"bikeId":"3939","endDate":1424162700,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424161980,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"41255901","duration":1260,"bikeId":"2137","endDate":1424163300,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1424162040,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41255956","duration":1140,"bikeId":"2188","endDate":1424163240,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1424162100,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41256041","duration":360,"bikeId":"3419","endDate":1424162520,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1424162160,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41256135","duration":1080,"bikeId":"10318","endDate":1424163300,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1424162220,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"41256195","duration":480,"bikeId":"2487","endDate":1424162760,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424162280,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41256255","duration":420,"bikeId":"12639","endDate":1424162760,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1424162340,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41256309","duration":780,"bikeId":"923","endDate":1424163180,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1424162400,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"41256418","duration":360,"bikeId":"11009","endDate":1424162820,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1424162460,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"41256478","duration":780,"bikeId":"519","endDate":1424163300,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424162520,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41256556","duration":600,"bikeId":"1822","endDate":1424163180,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1424162580,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"41256626","duration":1680,"bikeId":"2302","endDate":1424164320,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1424162640,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"41256731","duration":720,"bikeId":"12377","endDate":1424163420,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424162700,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41256737","duration":960,"bikeId":"822","endDate":1424163720,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1424162760,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41256772","duration":1800,"bikeId":"12852","endDate":1424164560,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1424162760,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41256805","duration":1020,"bikeId":"9376","endDate":1424163840,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1424162820,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41256922","duration":1560,"bikeId":"2250","endDate":1424164440,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424162880,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"41256985","duration":480,"bikeId":"10838","endDate":1424163420,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1424162940,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"41257087","duration":660,"bikeId":"3628","endDate":1424163720,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1424163060,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41257169","duration":720,"bikeId":"11552","endDate":1424163840,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1424163120,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"41257190","duration":1080,"bikeId":"13024","endDate":1424164260,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1424163180,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"41257267","duration":1080,"bikeId":"9970","endDate":1424164320,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1424163240,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41257381","duration":1140,"bikeId":"1378","endDate":1424164440,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1424163300,"startStationId":"518","startStationName":"Antill Road, Mile End"}, +{"_id":"41257433","duration":240,"bikeId":"11118","endDate":1424163600,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1424163360,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"41257455","duration":180,"bikeId":"8169","endDate":1424163600,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1424163420,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41257557","duration":240,"bikeId":"7536","endDate":1424163780,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1424163540,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"41257610","duration":600,"bikeId":"1319","endDate":1424164200,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424163600,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41257635","duration":1320,"bikeId":"11769","endDate":1424164980,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1424163660,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"41257738","duration":480,"bikeId":"1198","endDate":1424164260,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1424163780,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41257783","duration":720,"bikeId":"11417","endDate":1424164560,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1424163840,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41257865","duration":540,"bikeId":"10165","endDate":1424164500,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1424163960,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41257908","duration":3600,"bikeId":"7177","endDate":1424167620,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1424164020,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"41258022","duration":420,"bikeId":"3723","endDate":1424164560,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1424164140,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41258063","duration":600,"bikeId":"7223","endDate":1424164800,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424164200,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"41258164","duration":1020,"bikeId":"7208","endDate":1424165340,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1424164320,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"41258223","duration":540,"bikeId":"5420","endDate":1424164980,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424164440,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41258301","duration":360,"bikeId":"11380","endDate":1424164920,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424164560,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41258315","duration":420,"bikeId":"8659","endDate":1424165040,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1424164620,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41258399","duration":360,"bikeId":"12309","endDate":1424165100,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1424164740,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"41258484","duration":300,"bikeId":"748","endDate":1424165160,"endStationId":"758","endStationName":"Westbourne Park Road, Portobello","startDate":1424164860,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41258562","duration":1800,"bikeId":"9088","endDate":1424166840,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1424165040,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"41258594","duration":240,"bikeId":"6708","endDate":1424165400,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424165160,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41258675","duration":720,"bikeId":"6004","endDate":1424166060,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424165340,"startStationId":"59","startStationName":"Rodney Street, Angel"}, +{"_id":"41258751","duration":1020,"bikeId":"249","endDate":1424166540,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424165520,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"41258811","duration":480,"bikeId":"11250","endDate":1424166180,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1424165700,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41258856","duration":1620,"bikeId":"10788","endDate":1424167440,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424165820,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41258964","duration":1740,"bikeId":"11464","endDate":1424167740,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1424166000,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41259031","duration":300,"bikeId":"11346","endDate":1424166480,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424166180,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41259118","duration":360,"bikeId":"2022","endDate":1424166720,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1424166360,"startStationId":"208","startStationName":"Mallory Street, Marylebone"}, +{"_id":"41259170","duration":360,"bikeId":"11799","endDate":1424166840,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1424166480,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41259241","duration":600,"bikeId":"9197","endDate":1424167260,"endStationId":"607","endStationName":"Putney Bridge Station, Fulham","startDate":1424166660,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"41259313","duration":360,"bikeId":"2123","endDate":1424167260,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424166900,"startStationId":"398","startStationName":"Holland Park, Kensington"}, +{"_id":"41259374","duration":1200,"bikeId":"11784","endDate":1424168340,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1424167140,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41259449","duration":1080,"bikeId":"12424","endDate":1424168460,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1424167380,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41259527","duration":1020,"bikeId":"10112","endDate":1424168640,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1424167620,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41259578","duration":2400,"bikeId":"9284","endDate":1424170260,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424167860,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41259649","duration":1020,"bikeId":"12417","endDate":1424169120,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424168100,"startStationId":"577","startStationName":"Globe Town Market, Bethnal Green"}, +{"_id":"41259732","duration":420,"bikeId":"10481","endDate":1424168820,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1424168400,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41259787","duration":1560,"bikeId":"636","endDate":1424170140,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424168580,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41259852","duration":1020,"bikeId":"1491","endDate":1424169900,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1424168880,"startStationId":"577","startStationName":"Globe Town Market, Bethnal Green"}, +{"_id":"41259913","duration":1680,"bikeId":"6663","endDate":1424170800,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1424169120,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41259994","duration":660,"bikeId":"2134","endDate":1424170080,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1424169420,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41260055","duration":900,"bikeId":"10286","endDate":1424170620,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1424169720,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41260129","duration":720,"bikeId":"3481","endDate":1424170680,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424169960,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"41260184","duration":1440,"bikeId":"2036","endDate":1424171640,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1424170200,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41260256","duration":300,"bikeId":"5099","endDate":1424170740,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424170440,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41260332","duration":540,"bikeId":"7751","endDate":1424171280,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424170740,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"41260399","duration":660,"bikeId":"11073","endDate":1424171760,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1424171100,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41260484","duration":600,"bikeId":"1341","endDate":1424172000,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1424171400,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41260550","duration":1140,"bikeId":"13003","endDate":1424172780,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424171640,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"41260626","duration":300,"bikeId":"8068","endDate":1424172300,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424172000,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41260697","duration":720,"bikeId":"12716","endDate":1424173080,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424172360,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41260763","duration":1740,"bikeId":"9522","endDate":1424174340,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1424172600,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41260820","duration":1440,"bikeId":"7725","endDate":1424174280,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424172840,"startStationId":"370","startStationName":"Paddington Green, Paddington"}, +{"_id":"41260901","duration":660,"bikeId":"2046","endDate":1424173800,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424173140,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41260970","duration":420,"bikeId":"10815","endDate":1424173800,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1424173380,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41261026","duration":1620,"bikeId":"1153","endDate":1424175240,"endStationId":"692","endStationName":"Cadogan Close, Victoria Park","startDate":1424173620,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"41261107","duration":5940,"bikeId":"775","endDate":1424179800,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1424173860,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"41261176","duration":360,"bikeId":"12230","endDate":1424174460,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1424174100,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"41261237","duration":2940,"bikeId":"9550","endDate":1424177280,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1424174340,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41261310","duration":900,"bikeId":"12283","endDate":1424175540,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424174640,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41261374","duration":360,"bikeId":"817","endDate":1424175240,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424174880,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41261443","duration":780,"bikeId":"7137","endDate":1424175780,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424175000,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"41261515","duration":420,"bikeId":"11232","endDate":1424175660,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1424175240,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"41261580","duration":540,"bikeId":"8872","endDate":1424176020,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1424175480,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"41261646","duration":1080,"bikeId":"4450","endDate":1424176740,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1424175660,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41261732","duration":240,"bikeId":"12230","endDate":1424176140,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1424175900,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41261794","duration":840,"bikeId":"10247","endDate":1424176920,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1424176080,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41261848","duration":1260,"bikeId":"3225","endDate":1424177520,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424176260,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"41261942","duration":480,"bikeId":"5210","endDate":1424176980,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424176500,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41262006","duration":360,"bikeId":"439","endDate":1424177040,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1424176680,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"41262065","duration":1260,"bikeId":"1678","endDate":1424178060,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1424176800,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41262135","duration":1920,"bikeId":"892","endDate":1424178900,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1424176980,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"41262195","duration":480,"bikeId":"10516","endDate":1424177640,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1424177160,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41262278","duration":1500,"bikeId":"6834","endDate":1424178840,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1424177340,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41262330","duration":1440,"bikeId":"5854","endDate":1424178960,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1424177520,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41262400","duration":1320,"bikeId":"9411","endDate":1424179020,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1424177700,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41262476","duration":420,"bikeId":"3928","endDate":1424178360,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1424177940,"startStationId":"648","startStationName":"Peterborough Road, Sands End"}, +{"_id":"41262551","duration":420,"bikeId":"3969","endDate":1424178540,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1424178120,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41262621","duration":2340,"bikeId":"11949","endDate":1424180640,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1424178300,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41262673","duration":3360,"bikeId":"943","endDate":1424181780,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1424178420,"startStationId":"762","startStationName":"Storey's Gate, Westminster"}, +{"_id":"41262773","duration":660,"bikeId":"12725","endDate":1424179320,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1424178660,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41262841","duration":2160,"bikeId":"10457","endDate":1424181060,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1424178900,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"41262902","duration":840,"bikeId":"2969","endDate":1424179920,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1424179080,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41262963","duration":1500,"bikeId":"2742","endDate":1424180760,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1424179260,"startStationId":"315","startStationName":"The Tennis Courts, Regent's Park"}, +{"_id":"41263065","duration":240,"bikeId":"10484","endDate":1424179740,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1424179500,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"41263105","duration":660,"bikeId":"9016","endDate":1424180280,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424179620,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41263175","duration":1500,"bikeId":"1681","endDate":1424181300,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424179800,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"41263265","duration":1320,"bikeId":"4990","endDate":1424181360,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1424180040,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"41263328","duration":240,"bikeId":"5671","endDate":1424180460,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1424180220,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41263392","duration":960,"bikeId":"9145","endDate":1424181360,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1424180400,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41263477","duration":180,"bikeId":"6517","endDate":1424180820,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1424180640,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41263543","duration":240,"bikeId":"10045","endDate":1424181060,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424180820,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41263616","duration":840,"bikeId":"11975","endDate":1424181840,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424181000,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"41263686","duration":60,"bikeId":"4542","endDate":1424181240,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1424181180,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"41263749","duration":2400,"bikeId":"12496","endDate":1424183760,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1424181360,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41263813","duration":120,"bikeId":"1131","endDate":1424181720,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1424181600,"startStationId":"515","startStationName":"Russell Gardens, Holland Park"}, +{"_id":"41263895","duration":1740,"bikeId":"2831","endDate":1424183520,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1424181780,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"41263966","duration":1620,"bikeId":"8658","endDate":1424183580,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1424181960,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41264028","duration":2880,"bikeId":"11320","endDate":1424185020,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1424182140,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41264115","duration":840,"bikeId":"4654","endDate":1424183220,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424182380,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"41264192","duration":900,"bikeId":"8852","endDate":1424183520,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1424182620,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41264247","duration":240,"bikeId":"3450","endDate":1424183100,"endStationId":"776","endStationName":"Abyssinia Close, Clapham Junction","startDate":1424182860,"startStationId":"659","startStationName":"Grant Road West, Clapham Junction"}, +{"_id":"41264331","duration":360,"bikeId":"9869","endDate":1424183460,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1424183100,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41264398","duration":0,"bikeId":"3418","endDate":1424183340,"endStationId":"185","endStationName":"Alderney Street, Pimlico","startDate":1424183340,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"41264457","duration":3660,"bikeId":"11363","endDate":1424187180,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1424183520,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41264525","duration":1140,"bikeId":"10021","endDate":1424184840,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1424183700,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41264596","duration":1500,"bikeId":"9053","endDate":1424185440,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1424183940,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41264665","duration":360,"bikeId":"55","endDate":1424184540,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1424184180,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"41264744","duration":180,"bikeId":"12696","endDate":1424184540,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1424184360,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"41264808","duration":240,"bikeId":"10970","endDate":1424184840,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1424184600,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"41264881","duration":4440,"bikeId":"5200","endDate":1424189280,"endStationId":"724","endStationName":"Alma Road, Wandsworth","startDate":1424184840,"startStationId":"704","startStationName":"Mexfield Road, East Putney"}, +{"_id":"41264969","duration":780,"bikeId":"3979","endDate":1424185860,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1424185080,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41265022","duration":2760,"bikeId":"994","endDate":1424188020,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424185260,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41265091","duration":360,"bikeId":"3667","endDate":1424185860,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1424185500,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41265164","duration":3960,"bikeId":"10374","endDate":1424189700,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1424185740,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41265248","duration":360,"bikeId":"4081","endDate":1424186340,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1424185980,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"41265319","duration":2280,"bikeId":"6341","endDate":1424188500,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1424186220,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41265399","duration":1020,"bikeId":"1161","endDate":1424187420,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1424186400,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41265470","duration":300,"bikeId":"6754","endDate":1424186940,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424186640,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41265522","duration":960,"bikeId":"1041","endDate":1424187780,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1424186820,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41265594","duration":540,"bikeId":"6243","endDate":1424187540,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424187000,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41265662","duration":5100,"bikeId":"2635","endDate":1424192280,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1424187180,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41265731","duration":420,"bikeId":"11784","endDate":1424187840,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1424187420,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41265795","duration":1140,"bikeId":"4399","endDate":1424188740,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424187600,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41265869","duration":1740,"bikeId":"9686","endDate":1424189520,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1424187780,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"41265920","duration":4440,"bikeId":"6041","endDate":1424192400,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424187960,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41266004","duration":660,"bikeId":"10891","endDate":1424188800,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1424188140,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"41266082","duration":660,"bikeId":"2843","endDate":1424188980,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1424188320,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41266136","duration":360,"bikeId":"2881","endDate":1424188860,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1424188500,"startStationId":"729","startStationName":"St. Peter's Terrace, Fulham"}, +{"_id":"41266200","duration":1440,"bikeId":"4097","endDate":1424190120,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1424188680,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41266296","duration":1500,"bikeId":"4581","endDate":1424190360,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1424188860,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41266363","duration":840,"bikeId":"9868","endDate":1424189880,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1424189040,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41266408","duration":2520,"bikeId":"10796","endDate":1424191620,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1424189100,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41266491","duration":540,"bikeId":"648","endDate":1424189820,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1424189280,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41267129","duration":300,"bikeId":"1908","endDate":1424189760,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1424189460,"startStationId":"527","startStationName":"Hansard Mews, Shepherds Bush"}, +{"_id":"41266626","duration":660,"bikeId":"9419","endDate":1424190300,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424189640,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41266700","duration":2340,"bikeId":"10684","endDate":1424192100,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1424189760,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"41266764","duration":180,"bikeId":"5850","endDate":1424190120,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1424189940,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41266849","duration":660,"bikeId":"6597","endDate":1424190780,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424190120,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41266908","duration":300,"bikeId":"9300","endDate":1424190540,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424190240,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41266978","duration":840,"bikeId":"12554","endDate":1424191260,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424190420,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41267034","duration":360,"bikeId":"8429","endDate":1424190900,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1424190540,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41267133","duration":1080,"bikeId":"6167","endDate":1424191800,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1424190720,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"41267166","duration":780,"bikeId":"4581","endDate":1424191620,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424190840,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41267237","duration":1440,"bikeId":"1711","endDate":1424192400,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1424190960,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41267330","duration":900,"bikeId":"2859","endDate":1424192040,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424191140,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41267374","duration":420,"bikeId":"4390","endDate":1424191680,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1424191260,"startStationId":"363","startStationName":"Lord's, St. John's Wood"}, +{"_id":"41267454","duration":1260,"bikeId":"8317","endDate":1424192640,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1424191380,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"41267516","duration":660,"bikeId":"12049","endDate":1424192220,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1424191560,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"41267581","duration":480,"bikeId":"4794","endDate":1424192160,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1424191680,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"41267637","duration":420,"bikeId":"9450","endDate":1424192220,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424191800,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41267702","duration":720,"bikeId":"1935","endDate":1424192640,"endStationId":"412","endStationName":"Cleaver Street, Kennington","startDate":1424191920,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"41267799","duration":240,"bikeId":"9648","endDate":1424192280,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424192040,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41267835","duration":660,"bikeId":"5980","endDate":1424192820,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1424192160,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"41267908","duration":1740,"bikeId":"11808","endDate":1424194020,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1424192280,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"41267985","duration":840,"bikeId":"9311","endDate":1424193240,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424192400,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41268072","duration":780,"bikeId":"6579","endDate":1424193300,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424192520,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41268131","duration":720,"bikeId":"1883","endDate":1424193360,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424192640,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41268180","duration":480,"bikeId":"6738","endDate":1424193180,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424192700,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41268261","duration":480,"bikeId":"9766","endDate":1424193240,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1424192760,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41268348","duration":360,"bikeId":"12353","endDate":1424193240,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1424192880,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41268419","duration":900,"bikeId":"626","endDate":1424193840,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1424192940,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41268463","duration":840,"bikeId":"218","endDate":1424193900,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1424193060,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41268506","duration":1680,"bikeId":"1193","endDate":1424194800,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1424193120,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"41268602","duration":660,"bikeId":"11244","endDate":1424193900,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1424193240,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41268633","duration":480,"bikeId":"9976","endDate":1424193780,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424193300,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41268723","duration":900,"bikeId":"6665","endDate":1424194320,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1424193420,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41268814","duration":360,"bikeId":"574","endDate":1424193840,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1424193480,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41268852","duration":240,"bikeId":"2630","endDate":1424193780,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1424193540,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41268925","duration":360,"bikeId":"1697","endDate":1424194020,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424193660,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41268967","duration":240,"bikeId":"4292","endDate":1424193960,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1424193720,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41269053","duration":180,"bikeId":"5143","endDate":1424194020,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424193840,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41269101","duration":360,"bikeId":"1633","endDate":1424194260,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1424193900,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41269203","duration":600,"bikeId":"9786","endDate":1424194620,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1424194020,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41269251","duration":480,"bikeId":"11393","endDate":1424194620,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424194140,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41269326","duration":840,"bikeId":"7573","endDate":1424195100,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1424194260,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"41269436","duration":120,"bikeId":"2057","endDate":1424194500,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424194380,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41269457","duration":240,"bikeId":"4133","endDate":1424194680,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1424194440,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41269532","duration":720,"bikeId":"6042","endDate":1424195220,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1424194500,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41269567","duration":240,"bikeId":"9868","endDate":1424194800,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1424194560,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41269670","duration":720,"bikeId":"3434","endDate":1424195340,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1424194620,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41269691","duration":1200,"bikeId":"12209","endDate":1424195880,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1424194680,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41269761","duration":1860,"bikeId":"3044","endDate":1424196600,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424194740,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41269839","duration":480,"bikeId":"9665","endDate":1424195340,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1424194860,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"41269941","duration":1020,"bikeId":"8359","endDate":1424195940,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1424194920,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41269952","duration":2340,"bikeId":"5986","endDate":1424197320,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1424194980,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41270025","duration":480,"bikeId":"13010","endDate":1424195520,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1424195040,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41270103","duration":2880,"bikeId":"10057","endDate":1424197980,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1424195100,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"41270201","duration":180,"bikeId":"8903","endDate":1424195400,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1424195220,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41270278","duration":2520,"bikeId":"7702","endDate":1424197800,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1424195280,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41270300","duration":960,"bikeId":"9261","endDate":1424196300,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1424195340,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41270434","duration":300,"bikeId":"4959","endDate":1424195760,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1424195460,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41270450","duration":660,"bikeId":"12397","endDate":1424196180,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424195520,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41270525","duration":12840,"bikeId":"9978","endDate":1424208420,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1424195580,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41270547","duration":2220,"bikeId":"9179","endDate":1424197860,"endStationId":"398","endStationName":"Holland Park, Kensington","startDate":1424195640,"startStationId":"398","startStationName":"Holland Park, Kensington"}, +{"_id":"41270674","duration":780,"bikeId":"11089","endDate":1424196540,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424195760,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"41270721","duration":540,"bikeId":"6027","endDate":1424196360,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1424195820,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41270785","duration":840,"bikeId":"1048","endDate":1424196720,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424195880,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41270893","duration":780,"bikeId":"11472","endDate":1424196780,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1424196000,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"41270921","duration":840,"bikeId":"5478","endDate":1424196900,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1424196060,"startStationId":"218","startStationName":"St. Luke's Church, Chelsea"}, +{"_id":"41270972","duration":2880,"bikeId":"10056","endDate":1424199000,"endStationId":"684","endStationName":"Neville Gill Close, Wandsworth","startDate":1424196120,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41271057","duration":6240,"bikeId":"2293","endDate":1424202420,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1424196180,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41271128","duration":240,"bikeId":"5411","endDate":1424196540,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1424196300,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41271177","duration":600,"bikeId":"1049","endDate":1424196960,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1424196360,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41271247","duration":420,"bikeId":"1630","endDate":1424196840,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424196420,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41271303","duration":480,"bikeId":"7785","endDate":1424196960,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424196480,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"41271407","duration":660,"bikeId":"12979","endDate":1424197260,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424196600,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"41271446","duration":1020,"bikeId":"12364","endDate":1424197680,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1424196660,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41271500","duration":600,"bikeId":"4735","endDate":1424197320,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1424196720,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41271601","duration":480,"bikeId":"10387","endDate":1424197260,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1424196780,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41271697","duration":720,"bikeId":"6118","endDate":1424197620,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1424196900,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41271716","duration":840,"bikeId":"506","endDate":1424197800,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424196960,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"41271782","duration":1680,"bikeId":"11839","endDate":1424198700,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1424197020,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41271896","duration":480,"bikeId":"704","endDate":1424197620,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1424197140,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"41271939","duration":660,"bikeId":"3315","endDate":1424197860,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1424197200,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"41271993","duration":240,"bikeId":"5855","endDate":1424197500,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1424197260,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41272053","duration":540,"bikeId":"6509","endDate":1424197920,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1424197380,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41272103","duration":1740,"bikeId":"4761","endDate":1424199180,"endStationId":"764","endStationName":"St. John's Road, Clapham Junction","startDate":1424197440,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41272227","duration":480,"bikeId":"3238","endDate":1424198040,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1424197560,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41272244","duration":720,"bikeId":"11269","endDate":1424198340,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1424197620,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41272323","duration":2220,"bikeId":"7846","endDate":1424199960,"endStationId":"675","endStationName":"Usk Road, Battersea","startDate":1424197740,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41272365","duration":1260,"bikeId":"9738","endDate":1424199060,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424197800,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41272427","duration":240,"bikeId":"9235","endDate":1424198160,"endStationId":"571","endStationName":"Westfield Southern Terrace ,Shepherd's Bush","startDate":1424197920,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"41272525","duration":420,"bikeId":"6247","endDate":1424198460,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1424198040,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41272621","duration":60,"bikeId":"1256","endDate":1424198220,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1424198160,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41272644","duration":300,"bikeId":"11118","endDate":1424198520,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424198220,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"41272694","duration":540,"bikeId":"10018","endDate":1424198820,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1424198280,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"41272797","duration":960,"bikeId":"4731","endDate":1424199360,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1424198400,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"41272874","duration":360,"bikeId":"4391","endDate":1424198880,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1424198520,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41272929","duration":1020,"bikeId":"12268","endDate":1424199600,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1424198580,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"41272987","duration":300,"bikeId":"9049","endDate":1424199000,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1424198700,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41273055","duration":960,"bikeId":"1821","endDate":1424199780,"endStationId":"247","endStationName":"St. John's Wood Church, Regent's Park","startDate":1424198820,"startStationId":"528","startStationName":"Clarges Street, West End"}, +{"_id":"41273109","duration":780,"bikeId":"808","endDate":1424199660,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1424198880,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41277130","duration":120,"bikeId":"8418","endDate":1424199120,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1424199000,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41273272","duration":480,"bikeId":"10574","endDate":1424199600,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1424199120,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"41273329","duration":1080,"bikeId":"3831","endDate":1424200260,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424199180,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41273398","duration":420,"bikeId":"13031","endDate":1424199720,"endStationId":"654","endStationName":"Ashmole Estate, Oval","startDate":1424199300,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"41273453","duration":360,"bikeId":"7869","endDate":1424199780,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1424199420,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41273513","duration":1560,"bikeId":"4864","endDate":1424201100,"endStationId":"69","endStationName":"Euston Road, Euston","startDate":1424199540,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41273582","duration":540,"bikeId":"11214","endDate":1424200200,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1424199660,"startStationId":"353","startStationName":"Greycoat Street , Westminster"}, +{"_id":"41273675","duration":840,"bikeId":"10890","endDate":1424200620,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1424199780,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41273740","duration":600,"bikeId":"12608","endDate":1424200500,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1424199900,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41273817","duration":540,"bikeId":"3218","endDate":1424200560,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1424200020,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41273882","duration":1080,"bikeId":"2153","endDate":1424201220,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1424200140,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41273917","duration":240,"bikeId":"8473","endDate":1424200500,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1424200260,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"41273974","duration":660,"bikeId":"11745","endDate":1424201040,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1424200380,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"41274052","duration":1320,"bikeId":"5579","endDate":1424201820,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1424200500,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"41274135","duration":360,"bikeId":"5029","endDate":1424200980,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1424200620,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"41274203","duration":600,"bikeId":"8844","endDate":1424201340,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1424200740,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"41274246","duration":420,"bikeId":"3480","endDate":1424201280,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1424200860,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"41274320","duration":1380,"bikeId":"9905","endDate":1424202360,"endStationId":"138","endStationName":"Green Street, Mayfair","startDate":1424200980,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41274397","duration":360,"bikeId":"11822","endDate":1424201460,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1424201100,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"41274457","duration":780,"bikeId":"10767","endDate":1424202060,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1424201280,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41274531","duration":780,"bikeId":"2245","endDate":1424202240,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424201460,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41274602","duration":3420,"bikeId":"4152","endDate":1424205060,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1424201640,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"41274670","duration":360,"bikeId":"1713","endDate":1424202120,"endStationId":"697","endStationName":"Charlotte Terrace, Angel","startDate":1424201760,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41274744","duration":420,"bikeId":"5955","endDate":1424202360,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1424201940,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41274804","duration":1620,"bikeId":"8801","endDate":1424203740,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1424202120,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41274870","duration":1620,"bikeId":"11991","endDate":1424203920,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1424202300,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41274944","duration":240,"bikeId":"937","endDate":1424202720,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1424202480,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41275004","duration":480,"bikeId":"6535","endDate":1424203140,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1424202660,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"41275066","duration":540,"bikeId":"12509","endDate":1424203380,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1424202840,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"41275140","duration":600,"bikeId":"654","endDate":1424203620,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1424203020,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41275215","duration":2220,"bikeId":"1556","endDate":1424205480,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424203260,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41275281","duration":1320,"bikeId":"12605","endDate":1424204820,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1424203500,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41275363","duration":480,"bikeId":"11510","endDate":1424204160,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1424203680,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"41275420","duration":240,"bikeId":"10322","endDate":1424204100,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1424203860,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41275498","duration":1380,"bikeId":"4779","endDate":1424205480,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424204100,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"41275570","duration":1080,"bikeId":"6892","endDate":1424205360,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1424204280,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41275642","duration":1020,"bikeId":"12020","endDate":1424205600,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1424204580,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41275702","duration":360,"bikeId":"4354","endDate":1424205240,"endStationId":"134","endStationName":"Wapping High Street, Wapping","startDate":1424204880,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41275768","duration":420,"bikeId":"6669","endDate":1424205540,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1424205120,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41275829","duration":660,"bikeId":"1198","endDate":1424206140,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1424205480,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41275895","duration":780,"bikeId":"1370","endDate":1424206560,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1424205780,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41275974","duration":660,"bikeId":"9522","endDate":1424206800,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1424206140,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41276032","duration":300,"bikeId":"8521","endDate":1424206740,"endStationId":"563","endStationName":"Preston's Road, Cubitt Town","startDate":1424206440,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"41276112","duration":540,"bikeId":"1544","endDate":1424207280,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1424206740,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41276166","duration":1680,"bikeId":"5384","endDate":1424208780,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1424207100,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41276225","duration":660,"bikeId":"244","endDate":1424208120,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1424207460,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"41276292","duration":1020,"bikeId":"381","endDate":1424208720,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1424207700,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41276363","duration":300,"bikeId":"5742","endDate":1424208360,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1424208060,"startStationId":"771","startStationName":"Rifle Place, Avondale"}, +{"_id":"41276432","duration":1500,"bikeId":"12865","endDate":1424209980,"endStationId":"618","endStationName":"Eel Brook Common, Walham Green","startDate":1424208480,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41276496","duration":1680,"bikeId":"5493","endDate":1424210460,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1424208780,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41276574","duration":420,"bikeId":"6073","endDate":1424209560,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1424209140,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41276637","duration":300,"bikeId":"7225","endDate":1424209740,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1424209440,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41276697","duration":240,"bikeId":"3567","endDate":1424210040,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1424209800,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41276765","duration":240,"bikeId":"1969","endDate":1424210340,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1424210100,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41276824","duration":840,"bikeId":"13069","endDate":1424211360,"endStationId":"517","endStationName":"Ford Road, Old Ford","startDate":1424210520,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41276899","duration":720,"bikeId":"12449","endDate":1424211660,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424210940,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41276959","duration":600,"bikeId":"10241","endDate":1424211900,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1424211300,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"41277029","duration":1080,"bikeId":"3167","endDate":1424212740,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1424211660,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41277107","duration":300,"bikeId":"12812","endDate":1424212440,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1424212140,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41277182","duration":1200,"bikeId":"4178","endDate":1424213820,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1424212620,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"41277262","duration":420,"bikeId":"6043","endDate":1424213640,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1424213220,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41277339","duration":1020,"bikeId":"2036","endDate":1424214720,"endStationId":"667","endStationName":"Shepherd's Bush Road North, Shepherd's Bush","startDate":1424213700,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41277406","duration":900,"bikeId":"8375","endDate":1424215260,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424214360,"startStationId":"84","startStationName":"Breams Buildings, Holborn"}, +{"_id":"41277462","duration":360,"bikeId":"3933","endDate":1424215140,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1424214780,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"41277534","duration":0,"bikeId":"9456","endDate":1424215500,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1424215500,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"41277606","duration":960,"bikeId":"3562","endDate":1424217000,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1424216040,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41277672","duration":1200,"bikeId":"2397","endDate":1424217960,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1424216760,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"41277747","duration":120,"bikeId":"5281","endDate":1424218020,"endStationId":"623","endStationName":"Nantes Close, Wandsworth","startDate":1424217900,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"41277814","duration":1740,"bikeId":"2347","endDate":1424221020,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1424219280,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41277884","duration":1440,"bikeId":"10864","endDate":1424222280,"endStationId":"714","endStationName":"Stewart's Road, Nine Elms","startDate":1424220840,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"41277947","duration":1260,"bikeId":"11917","endDate":1424224200,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1424222940,"startStationId":"325","startStationName":"St. Martin's Street, West End"}, +{"_id":"41278023","duration":180,"bikeId":"2065","endDate":1424228940,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1424228760,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"41278095","duration":660,"bikeId":"9252","endDate":1424236560,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1424235900,"startStationId":"181","startStationName":"Belgrave Square, Belgravia"}, +{"_id":"41278164","duration":480,"bikeId":"12687","endDate":1424239380,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1424238900,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"41278230","duration":480,"bikeId":"7263","endDate":1424240460,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424239980,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41278298","duration":720,"bikeId":"2445","endDate":1424241300,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1424240580,"startStationId":"715","startStationName":"Aylward Street, Stepney"}, +{"_id":"41278362","duration":480,"bikeId":"11959","endDate":1424241540,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424241060,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"41278431","duration":1140,"bikeId":"10810","endDate":1424242620,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1424241480,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"41278500","duration":420,"bikeId":"1829","endDate":1424242200,"endStationId":"736","endStationName":"Queensdale Road, Shepherd's Bush","startDate":1424241780,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41278565","duration":1860,"bikeId":"13055","endDate":1424244000,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1424242140,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41278627","duration":240,"bikeId":"7858","endDate":1424242620,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1424242380,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41278697","duration":780,"bikeId":"8471","endDate":1424243520,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424242740,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41278765","duration":240,"bikeId":"5840","endDate":1424243220,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1424242980,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"41278830","duration":1140,"bikeId":"12424","endDate":1424244360,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1424243220,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41278877","duration":480,"bikeId":"9276","endDate":1424243880,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1424243400,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41278966","duration":660,"bikeId":"2574","endDate":1424244300,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424243640,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41279023","duration":780,"bikeId":"12617","endDate":1424244600,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1424243820,"startStationId":"402","startStationName":"Penfold Street, Marylebone"}, +{"_id":"41279089","duration":300,"bikeId":"1838","endDate":1424244300,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1424244000,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41279166","duration":540,"bikeId":"12597","endDate":1424244720,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1424244180,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41279224","duration":1260,"bikeId":"4406","endDate":1424245620,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424244360,"startStationId":"8","startStationName":"Lodge Road, St. John's Wood"}, +{"_id":"41279286","duration":720,"bikeId":"588","endDate":1424245260,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424244540,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41279376","duration":420,"bikeId":"2406","endDate":1424245140,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424244720,"startStationId":"451","startStationName":"Hermitage Court, Wapping"}, +{"_id":"41279434","duration":1020,"bikeId":"1284","endDate":1424245860,"endStationId":"146","endStationName":"Vauxhall Bridge , Pimlico","startDate":1424244840,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"41279502","duration":1560,"bikeId":"407","endDate":1424246520,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1424244960,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"41279589","duration":840,"bikeId":"206","endDate":1424245920,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1424245080,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41279610","duration":240,"bikeId":"9258","endDate":1424245380,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1424245140,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41279672","duration":600,"bikeId":"8189","endDate":1424245860,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1424245260,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41279784","duration":480,"bikeId":"8939","endDate":1424245860,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1424245380,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41279820","duration":180,"bikeId":"9354","endDate":1424245620,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1424245440,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41279898","duration":840,"bikeId":"10305","endDate":1424246400,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1424245560,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41279931","duration":660,"bikeId":"4959","endDate":1424246280,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424245620,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41280047","duration":960,"bikeId":"8902","endDate":1424246700,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424245740,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41280096","duration":1620,"bikeId":"10661","endDate":1424247480,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1424245860,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"41280134","duration":1260,"bikeId":"10837","endDate":1424247180,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1424245920,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41280230","duration":720,"bikeId":"10135","endDate":1424246760,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424246040,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41280313","duration":420,"bikeId":"9250","endDate":1424246520,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1424246100,"startStationId":"469","startStationName":"Lindfield Street, Poplar"}, +{"_id":"41280365","duration":840,"bikeId":"8105","endDate":1424247000,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1424246160,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"41280444","duration":420,"bikeId":"10465","endDate":1424246700,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1424246280,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41280472","duration":420,"bikeId":"12633","endDate":1424246760,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424246340,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"41280597","duration":1440,"bikeId":"6812","endDate":1424247900,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1424246460,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"41280634","duration":1140,"bikeId":"6190","endDate":1424247660,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1424246520,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41280682","duration":2040,"bikeId":"2825","endDate":1424248620,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1424246580,"startStationId":"624","startStationName":"Courland Grove, Wandsworth Road"}, +{"_id":"41280791","duration":900,"bikeId":"5141","endDate":1424247600,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424246700,"startStationId":"461","startStationName":"Aston Street, Stepney"}, +{"_id":"41280812","duration":1080,"bikeId":"3207","endDate":1424247840,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1424246760,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41280893","duration":720,"bikeId":"6960","endDate":1424247540,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424246820,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41280955","duration":1500,"bikeId":"12669","endDate":1424248380,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1424246880,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"41281060","duration":960,"bikeId":"11366","endDate":1424247960,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1424247000,"startStationId":"355","startStationName":"Oval Way, Lambeth"}, +{"_id":"41281105","duration":660,"bikeId":"188","endDate":1424247720,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424247060,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41281156","duration":1620,"bikeId":"424","endDate":1424248740,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1424247120,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"41281243","duration":420,"bikeId":"3915","endDate":1424247600,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1424247180,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41281302","duration":1020,"bikeId":"4775","endDate":1424248260,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1424247240,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41281338","duration":1080,"bikeId":"12505","endDate":1424248380,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424247300,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"41281440","duration":1200,"bikeId":"8183","endDate":1424248620,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1424247420,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41281500","duration":720,"bikeId":"8182","endDate":1424248200,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1424247480,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41281583","duration":1260,"bikeId":"11804","endDate":1424248800,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1424247540,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"41281643","duration":240,"bikeId":"12268","endDate":1424247840,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1424247600,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41281693","duration":420,"bikeId":"4439","endDate":1424248080,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1424247660,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"41281744","duration":840,"bikeId":"7894","endDate":1424248560,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1424247720,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41281839","duration":180,"bikeId":"4209","endDate":1424247960,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1424247780,"startStationId":"623","startStationName":"Nantes Close, Wandsworth"}, +{"_id":"41281875","duration":1560,"bikeId":"6759","endDate":1424249400,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424247840,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"41281948","duration":600,"bikeId":"3120","endDate":1424248500,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1424247900,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41282023","duration":1080,"bikeId":"2879","endDate":1424249040,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1424247960,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"41282060","duration":900,"bikeId":"11733","endDate":1424248920,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424248020,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41282130","duration":1260,"bikeId":"7876","endDate":1424249340,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424248080,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41282216","duration":1440,"bikeId":"3370","endDate":1424249580,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1424248140,"startStationId":"477","startStationName":"Spindrift Avenue, Millwall"}, +{"_id":"41282299","duration":1140,"bikeId":"10569","endDate":1424249340,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1424248200,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41282351","duration":1620,"bikeId":"2604","endDate":1424249880,"endStationId":"59","endStationName":"Rodney Street, Angel","startDate":1424248260,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"41282407","duration":960,"bikeId":"9204","endDate":1424249280,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424248320,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41282470","duration":2220,"bikeId":"10380","endDate":1424250600,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1424248380,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41282550","duration":540,"bikeId":"12588","endDate":1424248980,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1424248440,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"41282618","duration":420,"bikeId":"295","endDate":1424248920,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1424248500,"startStationId":"124","startStationName":"Eaton Square, Belgravia"}, +{"_id":"41282686","duration":1800,"bikeId":"7384","endDate":1424250360,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424248560,"startStationId":"538","startStationName":"Naval Row, Blackwall"}, +{"_id":"41282712","duration":840,"bikeId":"3487","endDate":1424249460,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1424248620,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"41282780","duration":1020,"bikeId":"345","endDate":1424249700,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1424248680,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"41282872","duration":660,"bikeId":"1398","endDate":1424249400,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1424248740,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"41283010","duration":240,"bikeId":"9849","endDate":1424249040,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1424248800,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"41282961","duration":1080,"bikeId":"12540","endDate":1424249880,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424248800,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"41283072","duration":960,"bikeId":"5117","endDate":1424249820,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1424248860,"startStationId":"291","startStationName":"Claverton Street, Pimlico"}, +{"_id":"41283111","duration":1620,"bikeId":"1198","endDate":1424250540,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1424248920,"startStationId":"390","startStationName":"Buxton Street 1, Shoreditch"}, +{"_id":"41283189","duration":660,"bikeId":"7624","endDate":1424249640,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1424248980,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41283246","duration":360,"bikeId":"6425","endDate":1424249400,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1424249040,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"41283327","duration":720,"bikeId":"2235","endDate":1424249820,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424249100,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"41283410","duration":960,"bikeId":"766","endDate":1424250120,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1424249160,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"41283452","duration":240,"bikeId":"726","endDate":1424249460,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1424249220,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41283511","duration":840,"bikeId":"5481","endDate":1424250120,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1424249280,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41283576","duration":540,"bikeId":"9456","endDate":1424249880,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424249340,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"41283677","duration":480,"bikeId":"7335","endDate":1424249880,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424249400,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41283759","duration":300,"bikeId":"1923","endDate":1424249760,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1424249460,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"41283800","duration":660,"bikeId":"7853","endDate":1424250180,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1424249520,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"41283884","duration":660,"bikeId":"7350","endDate":1424250240,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1424249580,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"41283936","duration":420,"bikeId":"9911","endDate":1424250060,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1424249640,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41283990","duration":840,"bikeId":"12794","endDate":1424250540,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1424249700,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41284091","duration":1320,"bikeId":"4081","endDate":1424251140,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424249820,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41284143","duration":180,"bikeId":"1950","endDate":1424250060,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1424249880,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"41284196","duration":900,"bikeId":"2440","endDate":1424250840,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1424249940,"startStationId":"164","startStationName":"Cleveland Gardens, Bayswater"}, +{"_id":"41284297","duration":660,"bikeId":"2107","endDate":1424250720,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424250060,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41284334","duration":420,"bikeId":"11017","endDate":1424250540,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1424250120,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"41284422","duration":2460,"bikeId":"5054","endDate":1424252700,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1424250240,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41284450","duration":540,"bikeId":"3281","endDate":1424250840,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1424250300,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"41284491","duration":300,"bikeId":"6851","endDate":1424250660,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1424250360,"startStationId":"518","startStationName":"Antill Road, Mile End"}, +{"_id":"41284632","duration":1200,"bikeId":"1536","endDate":1424251680,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1424250480,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"41284682","duration":720,"bikeId":"10058","endDate":1424251260,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424250540,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41284742","duration":360,"bikeId":"10512","endDate":1424250960,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424250600,"startStationId":"565","startStationName":"Selby Street, Whitechapel"}, +{"_id":"41284809","duration":180,"bikeId":"810","endDate":1424250900,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424250720,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41284904","duration":300,"bikeId":"1480","endDate":1424251140,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1424250840,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41284934","duration":120,"bikeId":"9761","endDate":1424251020,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1424250900,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"41285015","duration":420,"bikeId":"8740","endDate":1424251440,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1424251020,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41285080","duration":1680,"bikeId":"3676","endDate":1424252820,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1424251140,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"41285154","duration":780,"bikeId":"104","endDate":1424252040,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1424251260,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"41285217","duration":1020,"bikeId":"9554","endDate":1424252400,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424251380,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41285314","duration":420,"bikeId":"7021","endDate":1424251980,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1424251560,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"41285345","duration":780,"bikeId":"8231","endDate":1424252460,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424251680,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"41285432","duration":240,"bikeId":"9451","endDate":1424252100,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424251860,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41285485","duration":1440,"bikeId":"10569","endDate":1424253420,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424251980,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"41285573","duration":840,"bikeId":"11993","endDate":1424253000,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1424252160,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"41285640","duration":900,"bikeId":"3213","endDate":1424253180,"endStationId":"686","endStationName":"Beryl Road, Hammersmith","startDate":1424252280,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"41285699","duration":660,"bikeId":"4552","endDate":1424253120,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1424252460,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"41285759","duration":600,"bikeId":"2919","endDate":1424253180,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424252580,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41285846","duration":1320,"bikeId":"11873","endDate":1424254080,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1424252760,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"41285908","duration":540,"bikeId":"6086","endDate":1424253540,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1424253000,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41285986","duration":1680,"bikeId":"10625","endDate":1424254860,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424253180,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41286048","duration":1380,"bikeId":"6534","endDate":1424254740,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1424253360,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"41286117","duration":1320,"bikeId":"7104","endDate":1424254920,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1424253600,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41286183","duration":120,"bikeId":"5821","endDate":1424253960,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1424253840,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41286246","duration":1440,"bikeId":"7959","endDate":1424255520,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1424254080,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41286318","duration":3000,"bikeId":"3676","endDate":1424257320,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424254320,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41286389","duration":300,"bikeId":"6664","endDate":1424254800,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1424254500,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41286476","duration":960,"bikeId":"11855","endDate":1424255760,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1424254800,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41286542","duration":1140,"bikeId":"9761","endDate":1424256180,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1424255040,"startStationId":"171","startStationName":"Collingham Gardens, Earl's Court"}, +{"_id":"41286621","duration":1200,"bikeId":"3166","endDate":1424256480,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424255280,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"41286666","duration":1560,"bikeId":"12792","endDate":1424257020,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1424255460,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41286743","duration":660,"bikeId":"13032","endDate":1424256420,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424255760,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41286806","duration":480,"bikeId":"3160","endDate":1424256420,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1424255940,"startStationId":"496","startStationName":"Devons Road, Bow"}, +{"_id":"41286874","duration":4680,"bikeId":"10831","endDate":1424260860,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424256180,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41286939","duration":360,"bikeId":"10161","endDate":1424256780,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1424256420,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41287012","duration":720,"bikeId":"3084","endDate":1424257380,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1424256660,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"41287075","duration":180,"bikeId":"8900","endDate":1424257080,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1424256900,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"41287147","duration":4980,"bikeId":"7998","endDate":1424262120,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424257140,"startStationId":"521","startStationName":"Driffield Road, Old Ford"}, +{"_id":"41287208","duration":1080,"bikeId":"7312","endDate":1424258520,"endStationId":"744","endStationName":"Ingrave Street, Battersea","startDate":1424257440,"startStationId":"172","startStationName":"Sumner Place, South Kensington"}, +{"_id":"41287284","duration":960,"bikeId":"12829","endDate":1424258700,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1424257740,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41287355","duration":540,"bikeId":"4160","endDate":1424258580,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1424258040,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41287421","duration":840,"bikeId":"8004","endDate":1424259180,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1424258340,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"41287487","duration":1020,"bikeId":"6385","endDate":1424259600,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1424258580,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41287548","duration":300,"bikeId":"246","endDate":1424259120,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1424258820,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"41287628","duration":1140,"bikeId":"6094","endDate":1424260320,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1424259180,"startStationId":"763","startStationName":"Mile End Park Leisure Centre, Mile End"}, +{"_id":"41287685","duration":1140,"bikeId":"11331","endDate":1424260560,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1424259420,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41287756","duration":900,"bikeId":"11084","endDate":1424260620,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1424259720,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41287830","duration":1320,"bikeId":"2898","endDate":1424261280,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1424259960,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41287894","duration":660,"bikeId":"9319","endDate":1424260860,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1424260200,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41287975","duration":1740,"bikeId":"5314","endDate":1424262180,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1424260440,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41288033","duration":660,"bikeId":"5053","endDate":1424261340,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424260680,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41288096","duration":180,"bikeId":"7957","endDate":1424261100,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1424260920,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"41288157","duration":1740,"bikeId":"2737","endDate":1424262840,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424261100,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41288262","duration":360,"bikeId":"1248","endDate":1424261700,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1424261340,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41288310","duration":2100,"bikeId":"563","endDate":1424263560,"endStationId":"604","endStationName":"St Martin's Close, Camden Town","startDate":1424261460,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"41288370","duration":1560,"bikeId":"6906","endDate":1424263200,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1424261640,"startStationId":"250","startStationName":"Royal Avenue 1, Chelsea"}, +{"_id":"41288447","duration":1260,"bikeId":"2902","endDate":1424263080,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1424261820,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"41288507","duration":480,"bikeId":"10888","endDate":1424262480,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1424262000,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41288581","duration":5820,"bikeId":"3926","endDate":1424268060,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424262240,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"41288657","duration":780,"bikeId":"8894","endDate":1424263260,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1424262480,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"41288735","duration":720,"bikeId":"8795","endDate":1424263380,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424262660,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41288805","duration":300,"bikeId":"2700","endDate":1424263140,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1424262840,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"41288875","duration":480,"bikeId":"12980","endDate":1424263560,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1424263080,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41288931","duration":1200,"bikeId":"5938","endDate":1424264400,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1424263200,"startStationId":"774","startStationName":"Hurlingham Park, Parsons Green"}, +{"_id":"41289012","duration":840,"bikeId":"11231","endDate":1424264220,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1424263380,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41289058","duration":1620,"bikeId":"7330","endDate":1424265180,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1424263560,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41289152","duration":420,"bikeId":"2961","endDate":1424264160,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1424263740,"startStationId":"353","startStationName":"Greycoat Street , Westminster"}, +{"_id":"41289218","duration":240,"bikeId":"1244","endDate":1424264160,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1424263920,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41289285","duration":1980,"bikeId":"5417","endDate":1424266080,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1424264100,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41289344","duration":1320,"bikeId":"11522","endDate":1424265600,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1424264280,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"41289419","duration":600,"bikeId":"13075","endDate":1424265120,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424264520,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41289492","duration":1320,"bikeId":"6512","endDate":1424266080,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1424264760,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41289572","duration":1680,"bikeId":"5219","endDate":1424266620,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1424264940,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41289624","duration":300,"bikeId":"10277","endDate":1424265420,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1424265120,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"41289707","duration":540,"bikeId":"6949","endDate":1424265900,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1424265360,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41289784","duration":180,"bikeId":"12743","endDate":1424265780,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1424265600,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41289824","duration":11400,"bikeId":"1599","endDate":1424277120,"endStationId":"257","endStationName":"Westminster University, Marylebone","startDate":1424265720,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41289913","duration":840,"bikeId":"4377","endDate":1424266800,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424265960,"startStationId":"565","startStationName":"Selby Street, Whitechapel"}, +{"_id":"41289979","duration":1620,"bikeId":"1655","endDate":1424267700,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1424266080,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41290055","duration":660,"bikeId":"8594","endDate":1424266980,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1424266320,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"41290099","duration":2580,"bikeId":"5277","endDate":1424269020,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1424266440,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41290170","duration":720,"bikeId":"297","endDate":1424267340,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424266620,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41290256","duration":2160,"bikeId":"10935","endDate":1424269020,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424266860,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41290311","duration":840,"bikeId":"9444","endDate":1424267880,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1424267040,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41290382","duration":1980,"bikeId":"12682","endDate":1424269200,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1424267220,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41290467","duration":240,"bikeId":"6582","endDate":1424267700,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1424267460,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"41290525","duration":420,"bikeId":"1336","endDate":1424268060,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1424267640,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"41290616","duration":420,"bikeId":"4026","endDate":1424268240,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1424267820,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"41290657","duration":1020,"bikeId":"10308","endDate":1424269020,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1424268000,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41290733","duration":600,"bikeId":"2761","endDate":1424268780,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1424268180,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"41290826","duration":300,"bikeId":"1709","endDate":1424268660,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1424268360,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41290866","duration":2940,"bikeId":"11875","endDate":1424271420,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1424268480,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"41290949","duration":540,"bikeId":"2732","endDate":1424269260,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1424268720,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41291013","duration":480,"bikeId":"7531","endDate":1424269380,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1424268900,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"41291083","duration":480,"bikeId":"11009","endDate":1424269620,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424269140,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41291141","duration":1020,"bikeId":"6216","endDate":1424270340,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424269320,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41291223","duration":600,"bikeId":"11906","endDate":1424270160,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1424269560,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41291288","duration":1020,"bikeId":"3640","endDate":1424270820,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1424269800,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41291354","duration":540,"bikeId":"9651","endDate":1424270580,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1424270040,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"41291431","duration":1080,"bikeId":"1520","endDate":1424271300,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1424270220,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41291504","duration":2220,"bikeId":"10088","endDate":1424272620,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1424270400,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41291590","duration":600,"bikeId":"2261","endDate":1424271180,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1424270580,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41291653","duration":720,"bikeId":"10974","endDate":1424271480,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1424270760,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41291731","duration":360,"bikeId":"2608","endDate":1424271300,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1424270940,"startStationId":"729","startStationName":"St. Peter's Terrace, Fulham"}, +{"_id":"41291774","duration":1680,"bikeId":"6128","endDate":1424272800,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1424271120,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41291855","duration":1080,"bikeId":"1857","endDate":1424272380,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1424271300,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41291919","duration":180,"bikeId":"6670","endDate":1424271720,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1424271540,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41292012","duration":600,"bikeId":"2604","endDate":1424272380,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1424271780,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41292079","duration":540,"bikeId":"12301","endDate":1424272500,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1424271960,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41292126","duration":3840,"bikeId":"6525","endDate":1424275980,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424272140,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41292206","duration":1440,"bikeId":"5445","endDate":1424273820,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1424272380,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41292270","duration":1320,"bikeId":"12315","endDate":1424273880,"endStationId":"454","endStationName":"Napier Avenue, Millwall","startDate":1424272560,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"41292353","duration":300,"bikeId":"1812","endDate":1424273100,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1424272800,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"41292423","duration":1200,"bikeId":"5653","endDate":1424274180,"endStationId":"280","endStationName":"Royal Avenue 2, Chelsea","startDate":1424272980,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"41292481","duration":840,"bikeId":"13071","endDate":1424274000,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1424273160,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"41292561","duration":840,"bikeId":"1537","endDate":1424274180,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1424273340,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41292633","duration":720,"bikeId":"10975","endDate":1424274300,"endStationId":"","endStationName":"","startDate":1424273580,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41292705","duration":1140,"bikeId":"8108","endDate":1424274900,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1424273760,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41292764","duration":660,"bikeId":"1923","endDate":1424274600,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424273940,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41292833","duration":480,"bikeId":"8634","endDate":1424274600,"endStationId":"86","endStationName":"Sancroft Street, Vauxhall","startDate":1424274120,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41292898","duration":4320,"bikeId":"5656","endDate":1424278620,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1424274300,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"41292974","duration":960,"bikeId":"117","endDate":1424275440,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1424274480,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41293038","duration":900,"bikeId":"1175","endDate":1424275560,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1424274660,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41293129","duration":1320,"bikeId":"12070","endDate":1424276160,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1424274840,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41293200","duration":24660,"bikeId":"6517","endDate":1424299740,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1424275080,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"41293255","duration":240,"bikeId":"8683","endDate":1424275440,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1424275200,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41293316","duration":1200,"bikeId":"7472","endDate":1424276580,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1424275380,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"41293403","duration":480,"bikeId":"12762","endDate":1424276040,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1424275560,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41293455","duration":1260,"bikeId":"9143","endDate":1424276940,"endStationId":"222","endStationName":"Knightsbridge, Hyde Park","startDate":1424275680,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41293518","duration":1500,"bikeId":"5232","endDate":1424277360,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1424275860,"startStationId":"564","startStationName":"Somerset House, Strand"}, +{"_id":"41293622","duration":840,"bikeId":"12107","endDate":1424276880,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1424276040,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41293680","duration":420,"bikeId":"9558","endDate":1424276640,"endStationId":"412","endStationName":"Cleaver Street, Kennington","startDate":1424276220,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"41293730","duration":840,"bikeId":"6328","endDate":1424277180,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424276340,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"41293831","duration":600,"bikeId":"9378","endDate":1424277120,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1424276520,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41293872","duration":2880,"bikeId":"12798","endDate":1424279580,"endStationId":"713","endStationName":"Hawley Crescent, Camden Town","startDate":1424276700,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"41293973","duration":720,"bikeId":"11753","endDate":1424277600,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1424276880,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"41293998","duration":3480,"bikeId":"11952","endDate":1424280480,"endStationId":"549","endStationName":"Gaywood Street, Elephant & Castle","startDate":1424277000,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41294088","duration":840,"bikeId":"11860","endDate":1424278020,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1424277180,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41294152","duration":2220,"bikeId":"6089","endDate":1424279520,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1424277300,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41294217","duration":660,"bikeId":"8787","endDate":1424278080,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1424277420,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41294279","duration":1020,"bikeId":"1812","endDate":1424278560,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1424277540,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41294351","duration":420,"bikeId":"845","endDate":1424278140,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424277720,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41294419","duration":780,"bikeId":"8316","endDate":1424278620,"endStationId":"111","endStationName":"Park Lane , Hyde Park","startDate":1424277840,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41294492","duration":1500,"bikeId":"4915","endDate":1424279460,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1424277960,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41294546","duration":1320,"bikeId":"12705","endDate":1424279460,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1424278140,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"41294634","duration":1260,"bikeId":"1848","endDate":1424279520,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1424278260,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41294687","duration":1200,"bikeId":"4250","endDate":1424279580,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1424278380,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"41294786","duration":660,"bikeId":"3453","endDate":1424279220,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1424278560,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41294821","duration":420,"bikeId":"5635","endDate":1424279040,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1424278620,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41294911","duration":960,"bikeId":"6915","endDate":1424279760,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1424278800,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"41294951","duration":840,"bikeId":"6746","endDate":1424279760,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424278920,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41294997","duration":1620,"bikeId":"916","endDate":1424280600,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1424278980,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41295079","duration":660,"bikeId":"10978","endDate":1424279760,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1424279100,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41295165","duration":780,"bikeId":"6425","endDate":1424280000,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424279220,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41295246","duration":1500,"bikeId":"7687","endDate":1424280780,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1424279280,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"41295263","duration":780,"bikeId":"7233","endDate":1424280120,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1424279340,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41295374","duration":900,"bikeId":"2567","endDate":1424280360,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424279460,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"41295434","duration":780,"bikeId":"1336","endDate":1424280300,"endStationId":"640","endStationName":"Silverthorne Road, Battersea","startDate":1424279520,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"41295499","duration":120,"bikeId":"10245","endDate":1424279760,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1424279640,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"41295529","duration":780,"bikeId":"3339","endDate":1424280480,"endStationId":"143","endStationName":"Pont Street, Knightsbridge","startDate":1424279700,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41295628","duration":480,"bikeId":"3180","endDate":1424280300,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424279820,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41295689","duration":540,"bikeId":"7365","endDate":1424280480,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424279940,"startStationId":"283","startStationName":"Kingsway, Covent Garden"}, +{"_id":"41295785","duration":840,"bikeId":"12572","endDate":1424280900,"endStationId":"370","endStationName":"Paddington Green, Paddington","startDate":1424280060,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41295855","duration":240,"bikeId":"4388","endDate":1424280360,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1424280120,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41295902","duration":900,"bikeId":"5448","endDate":1424281140,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1424280240,"startStationId":"84","startStationName":"Breams Buildings, Holborn"}, +{"_id":"41295951","duration":780,"bikeId":"10164","endDate":1424281080,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424280300,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"41296003","duration":720,"bikeId":"12234","endDate":1424281140,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1424280420,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41296081","duration":1260,"bikeId":"7163","endDate":1424281800,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1424280540,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41296167","duration":540,"bikeId":"9492","endDate":1424281200,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424280660,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41296226","duration":540,"bikeId":"27","endDate":1424281260,"endStationId":"366","endStationName":"Millennium Hotel, Mayfair","startDate":1424280720,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41296268","duration":960,"bikeId":"11065","endDate":1424281740,"endStationId":"222","endStationName":"Knightsbridge, Hyde Park","startDate":1424280780,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"41296395","duration":660,"bikeId":"5522","endDate":1424281560,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424280900,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"41296476","duration":1080,"bikeId":"2087","endDate":1424282040,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1424280960,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41296479","duration":660,"bikeId":"8280","endDate":1424281680,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424281020,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"41296579","duration":1020,"bikeId":"7956","endDate":1424282100,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1424281080,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41296665","duration":480,"bikeId":"11827","endDate":1424281620,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1424281140,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"41296683","duration":720,"bikeId":"4543","endDate":1424281920,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424281200,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41296735","duration":480,"bikeId":"8333","endDate":1424281740,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424281260,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41296861","duration":1020,"bikeId":"3796","endDate":1424282400,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424281380,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"41296914","duration":660,"bikeId":"1885","endDate":1424282100,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1424281440,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41296959","duration":660,"bikeId":"1107","endDate":1424282160,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424281500,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41297042","duration":660,"bikeId":"10327","endDate":1424282280,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1424281620,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"41297105","duration":480,"bikeId":"1354","endDate":1424282160,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1424281680,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41297116","duration":480,"bikeId":"12780","endDate":1424282220,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1424281740,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41297190","duration":1500,"bikeId":"2534","endDate":1424283300,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1424281800,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41297306","duration":300,"bikeId":"7782","endDate":1424282220,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424281920,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41297354","duration":480,"bikeId":"7778","endDate":1424282460,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1424281980,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41297429","duration":1620,"bikeId":"12762","endDate":1424283720,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1424282100,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41297484","duration":1800,"bikeId":"12544","endDate":1424283960,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1424282160,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"41297554","duration":1500,"bikeId":"12646","endDate":1424283780,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1424282280,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41297576","duration":660,"bikeId":"2774","endDate":1424283000,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424282340,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41297723","duration":1080,"bikeId":"11043","endDate":1424283540,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1424282460,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41297749","duration":960,"bikeId":"8567","endDate":1424283480,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424282520,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41297823","duration":1320,"bikeId":"5310","endDate":1424283960,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1424282640,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41297902","duration":900,"bikeId":"10494","endDate":1424283600,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424282700,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41297969","duration":840,"bikeId":"11959","endDate":1424283600,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1424282760,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41299161","duration":1200,"bikeId":"7104","endDate":1424284080,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1424282880,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41298094","duration":780,"bikeId":"10086","endDate":1424283720,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1424282940,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41298149","duration":840,"bikeId":"5908","endDate":1424283840,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424283000,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41298231","duration":960,"bikeId":"8030","endDate":1424284020,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1424283060,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41298272","duration":900,"bikeId":"6293","endDate":1424284020,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1424283120,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41298402","duration":240,"bikeId":"7496","endDate":1424283480,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1424283240,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41298414","duration":420,"bikeId":"311","endDate":1424283720,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424283300,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"41298519","duration":240,"bikeId":"1284","endDate":1424283660,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1424283420,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41298564","duration":420,"bikeId":"2781","endDate":1424283900,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1424283480,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"41298580","duration":1560,"bikeId":"10798","endDate":1424285100,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1424283540,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"41298689","duration":960,"bikeId":"7748","endDate":1424284620,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1424283660,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41298758","duration":600,"bikeId":"10234","endDate":1424284320,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1424283720,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41298818","duration":780,"bikeId":"2590","endDate":1424284620,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424283840,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41298904","duration":480,"bikeId":"7239","endDate":1424284380,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1424283900,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41299006","duration":1200,"bikeId":"11977","endDate":1424285220,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1424284020,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41299025","duration":1080,"bikeId":"2622","endDate":1424285160,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1424284080,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41299074","duration":1500,"bikeId":"3502","endDate":1424285640,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1424284140,"startStationId":"753","startStationName":"Hammersmith Town Hall, Hammersmith"}, +{"_id":"41299150","duration":840,"bikeId":"1768","endDate":1424285100,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424284260,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"41299234","duration":1380,"bikeId":"108","endDate":1424285760,"endStationId":"521","endStationName":"Driffield Road, Old Ford","startDate":1424284380,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"41299269","duration":420,"bikeId":"11180","endDate":1424284860,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424284440,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41299345","duration":540,"bikeId":"2609","endDate":1424285040,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1424284500,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41299419","duration":840,"bikeId":"923","endDate":1424285460,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1424284620,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41299487","duration":240,"bikeId":"8514","endDate":1424284980,"endStationId":"549","endStationName":"Gaywood Street, Elephant & Castle","startDate":1424284740,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41299533","duration":540,"bikeId":"7284","endDate":1424285340,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1424284800,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41299606","duration":1380,"bikeId":"13020","endDate":1424286300,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1424284920,"startStationId":"771","startStationName":"Rifle Place, Avondale"}, +{"_id":"41299705","duration":600,"bikeId":"234","endDate":1424285640,"endStationId":"699","endStationName":"Belford House, Haggerston","startDate":1424285040,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"41299744","duration":1560,"bikeId":"9022","endDate":1424286660,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1424285100,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41299814","duration":240,"bikeId":"11991","endDate":1424285460,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424285220,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41299891","duration":960,"bikeId":"11064","endDate":1424286300,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1424285340,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41299971","duration":1200,"bikeId":"9225","endDate":1424286660,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1424285460,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41300032","duration":360,"bikeId":"3614","endDate":1424285940,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1424285580,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41300073","duration":1560,"bikeId":"5809","endDate":1424287260,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1424285700,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41300152","duration":360,"bikeId":"4747","endDate":1424286180,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1424285820,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41300218","duration":1080,"bikeId":"3071","endDate":1424287020,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1424285940,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41300290","duration":360,"bikeId":"688","endDate":1424286420,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1424286060,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41300356","duration":1140,"bikeId":"8388","endDate":1424287380,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1424286240,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41300420","duration":780,"bikeId":"2335","endDate":1424287140,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1424286360,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41300491","duration":1140,"bikeId":"729","endDate":1424287680,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1424286540,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41300555","duration":600,"bikeId":"8257","endDate":1424287260,"endStationId":"708","endStationName":"Disraeli Road, Putney","startDate":1424286660,"startStationId":"665","startStationName":"Smugglers Way, Wandsworth"}, +{"_id":"41300631","duration":720,"bikeId":"8351","endDate":1424287500,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424286780,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41300677","duration":1380,"bikeId":"2742","endDate":1424288280,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1424286900,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"41300761","duration":360,"bikeId":"8692","endDate":1424287380,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424287020,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41300839","duration":300,"bikeId":"7721","endDate":1424287500,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1424287200,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"41300892","duration":660,"bikeId":"2821","endDate":1424287980,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424287320,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41300975","duration":420,"bikeId":"5823","endDate":1424287920,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424287500,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41301024","duration":780,"bikeId":"11445","endDate":1424288400,"endStationId":"286","endStationName":"St. John's Wood Road, St. John's Wood","startDate":1424287620,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41301105","duration":600,"bikeId":"4650","endDate":1424288460,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1424287860,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41301167","duration":2640,"bikeId":"13069","endDate":1424290620,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424287980,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41301248","duration":3180,"bikeId":"102","endDate":1424291340,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1424288160,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41301303","duration":1620,"bikeId":"12895","endDate":1424289960,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424288340,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41301399","duration":360,"bikeId":"380","endDate":1424288880,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1424288520,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41301423","duration":1020,"bikeId":"9465","endDate":1424289660,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1424288640,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41301499","duration":780,"bikeId":"10793","endDate":1424289600,"endStationId":"59","endStationName":"Rodney Street, Angel","startDate":1424288820,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41301585","duration":240,"bikeId":"2309","endDate":1424289240,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424289000,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41301646","duration":900,"bikeId":"6503","endDate":1424290140,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1424289240,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41301717","duration":1080,"bikeId":"9924","endDate":1424290500,"endStationId":"410","endStationName":"Edgware Road Station, Paddington","startDate":1424289420,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"41301764","duration":480,"bikeId":"9532","endDate":1424290080,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1424289600,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"41301856","duration":180,"bikeId":"376","endDate":1424290020,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1424289840,"startStationId":"565","startStationName":"Selby Street, Whitechapel"}, +{"_id":"41301916","duration":840,"bikeId":"6761","endDate":1424290860,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1424290020,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"41301980","duration":240,"bikeId":"3811","endDate":1424290440,"endStationId":"332","endStationName":"Nevern Place, Earl's Court","startDate":1424290200,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41302038","duration":900,"bikeId":"3979","endDate":1424291340,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1424290440,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"41302120","duration":420,"bikeId":"11183","endDate":1424291100,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1424290680,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"41302165","duration":720,"bikeId":"12810","endDate":1424291520,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1424290800,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"41302245","duration":300,"bikeId":"7825","endDate":1424291400,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1424291100,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41302294","duration":300,"bikeId":"10399","endDate":1424291640,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1424291340,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"41302369","duration":480,"bikeId":"6299","endDate":1424292060,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1424291580,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41302433","duration":420,"bikeId":"453","endDate":1424292240,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1424291820,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41302506","duration":600,"bikeId":"8136","endDate":1424292720,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1424292120,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41302561","duration":300,"bikeId":"5207","endDate":1424292600,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1424292300,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"41302636","duration":540,"bikeId":"5565","endDate":1424293200,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1424292660,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41302697","duration":2280,"bikeId":"9263","endDate":1424295300,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1424293020,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"41302787","duration":720,"bikeId":"8066","endDate":1424294160,"endStationId":"576","endStationName":"Alpha Grove, Millwall","startDate":1424293440,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41302863","duration":480,"bikeId":"3356","endDate":1424294220,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1424293740,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41302937","duration":420,"bikeId":"7344","endDate":1424294460,"endStationId":"526","endStationName":"Lancaster Drive, Blackwall","startDate":1424294040,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41302995","duration":1320,"bikeId":"9453","endDate":1424295660,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424294340,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41303067","duration":540,"bikeId":"10569","endDate":1424295240,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1424294700,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41303119","duration":420,"bikeId":"5982","endDate":1424295480,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1424295060,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"41303205","duration":720,"bikeId":"7399","endDate":1424296200,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1424295480,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41303265","duration":1380,"bikeId":"6088","endDate":1424297280,"endStationId":"677","endStationName":"Heath Road, Battersea","startDate":1424295900,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41303332","duration":1020,"bikeId":"10789","endDate":1424297280,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424296260,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41303394","duration":1260,"bikeId":"2463","endDate":1424298000,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1424296740,"startStationId":"584","startStationName":"Ilchester Gardens, Bayswater"}, +{"_id":"41303462","duration":1020,"bikeId":"4150","endDate":1424298060,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424297040,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41303534","duration":1680,"bikeId":"4382","endDate":1424299080,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1424297400,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41303598","duration":180,"bikeId":"10807","endDate":1424298000,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1424297820,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41303663","duration":780,"bikeId":"2152","endDate":1424299020,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1424298240,"startStationId":"286","startStationName":"St. John's Wood Road, St. John's Wood"}, +{"_id":"41303735","duration":540,"bikeId":"1653","endDate":1424299320,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1424298780,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"41303794","duration":1860,"bikeId":"8685","endDate":1424301060,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1424299200,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"41303869","duration":300,"bikeId":"7267","endDate":1424299980,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1424299680,"startStationId":"611","startStationName":"Princedale Road , Holland Park"}, +{"_id":"41303931","duration":720,"bikeId":"10696","endDate":1424300820,"endStationId":"664","endStationName":"Austin Road, Battersea","startDate":1424300100,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"41304000","duration":360,"bikeId":"2411","endDate":1424301120,"endStationId":"651","endStationName":"Thorndike Close, West Chelsea","startDate":1424300760,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41304070","duration":360,"bikeId":"8695","endDate":1424301780,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1424301420,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41304135","duration":360,"bikeId":"10465","endDate":1424302440,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1424302080,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41304211","duration":180,"bikeId":"8536","endDate":1424303040,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1424302860,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41304274","duration":240,"bikeId":"2726","endDate":1424303940,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1424303700,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"41304341","duration":1380,"bikeId":"3811","endDate":1424306100,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1424304720,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"41304413","duration":1260,"bikeId":"570","endDate":1424307420,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1424306160,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41304487","duration":2040,"bikeId":"863","endDate":1424309640,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1424307600,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41304554","duration":300,"bikeId":"6517","endDate":1424310000,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1424309700,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41304620","duration":360,"bikeId":"2854","endDate":1424312520,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424312160,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41304686","duration":3120,"bikeId":"10331","endDate":1424319600,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1424316480,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"41304750","duration":600,"bikeId":"11326","endDate":1424322180,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1424321580,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41304817","duration":1680,"bikeId":"5314","endDate":1424326980,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1424325300,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41304891","duration":1320,"bikeId":"664","endDate":1424327700,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1424326380,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41304956","duration":840,"bikeId":"5495","endDate":1424327880,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424327040,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41305016","duration":120,"bikeId":"4280","endDate":1424327640,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1424327520,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"41305088","duration":1260,"bikeId":"6309","endDate":1424329200,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1424327940,"startStationId":"766","startStationName":"Ram Street, Wandsworth"}, +{"_id":"41305152","duration":1200,"bikeId":"4556","endDate":1424329440,"endStationId":"143","endStationName":"Pont Street, Knightsbridge","startDate":1424328240,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"41305214","duration":1200,"bikeId":"225","endDate":1424329800,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1424328600,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41305280","duration":780,"bikeId":"4150","endDate":1424329680,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424328900,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"41305345","duration":360,"bikeId":"4815","endDate":1424329560,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1424329200,"startStationId":"516","startStationName":"Chrisp Street Market, Poplar"}, +{"_id":"41305407","duration":480,"bikeId":"11089","endDate":1424329920,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424329440,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41305491","duration":420,"bikeId":"7439","endDate":1424330100,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1424329680,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41305545","duration":1860,"bikeId":"11082","endDate":1424331720,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1424329860,"startStationId":"454","startStationName":"Napier Avenue, Millwall"}, +{"_id":"41305600","duration":1080,"bikeId":"1382","endDate":1424331120,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424330040,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41305687","duration":1080,"bikeId":"8388","endDate":1424331360,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424330280,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41305730","duration":1620,"bikeId":"10887","endDate":1424332080,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1424330460,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41305814","duration":720,"bikeId":"3577","endDate":1424331420,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1424330700,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"41305871","duration":840,"bikeId":"4806","endDate":1424331660,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1424330820,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41305920","duration":1020,"bikeId":"573","endDate":1424331960,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1424330940,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41306028","duration":960,"bikeId":"7248","endDate":1424332080,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1424331120,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41306079","duration":1620,"bikeId":"4934","endDate":1424332860,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1424331240,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"41306129","duration":480,"bikeId":"12589","endDate":1424331840,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424331360,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41306209","duration":300,"bikeId":"3847","endDate":1424331780,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424331480,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41306274","duration":1200,"bikeId":"13023","endDate":1424332800,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1424331600,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41306343","duration":1200,"bikeId":"9346","endDate":1424332860,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1424331660,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41306429","duration":840,"bikeId":"2606","endDate":1424332680,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1424331840,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41306492","duration":3840,"bikeId":"8668","endDate":1424335740,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424331900,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"41306560","duration":1860,"bikeId":"4902","endDate":1424333880,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1424332020,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"41306601","duration":960,"bikeId":"2904","endDate":1424333040,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1424332080,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41306673","duration":180,"bikeId":"12674","endDate":1424332380,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1424332200,"startStationId":"648","startStationName":"Peterborough Road, Sands End"}, +{"_id":"41306747","duration":480,"bikeId":"5294","endDate":1424332800,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424332320,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41306813","duration":420,"bikeId":"9332","endDate":1424332800,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1424332380,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"41306879","duration":180,"bikeId":"9354","endDate":1424332680,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1424332500,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"41306953","duration":1140,"bikeId":"10768","endDate":1424333700,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1424332560,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"41307017","duration":960,"bikeId":"10279","endDate":1424333640,"endStationId":"556","endStationName":"Heron Quays DLR, Canary Wharf","startDate":1424332680,"startStationId":"490","startStationName":"Pennington Street, Wapping"}, +{"_id":"41307069","duration":720,"bikeId":"10936","endDate":1424333460,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1424332740,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41307136","duration":900,"bikeId":"10683","endDate":1424333760,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424332860,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"41307208","duration":600,"bikeId":"1481","endDate":1424333520,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1424332920,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41307273","duration":480,"bikeId":"756","endDate":1424333460,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424332980,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41307368","duration":480,"bikeId":"2545","endDate":1424333580,"endStationId":"561","endStationName":"Rectory Square, Stepney","startDate":1424333100,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41307399","duration":1260,"bikeId":"7637","endDate":1424334420,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424333160,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41307477","duration":1020,"bikeId":"12508","endDate":1424334300,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424333280,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"41307565","duration":420,"bikeId":"9824","endDate":1424333760,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1424333340,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"41307610","duration":600,"bikeId":"7947","endDate":1424334000,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424333400,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"41307637","duration":480,"bikeId":"1806","endDate":1424333940,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1424333460,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"41307758","duration":1980,"bikeId":"31","endDate":1424335560,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424333580,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41307822","duration":540,"bikeId":"3857","endDate":1424334180,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1424333640,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41307886","duration":600,"bikeId":"12594","endDate":1424334300,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1424333700,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"41307935","duration":720,"bikeId":"1990","endDate":1424334480,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424333760,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41308004","duration":900,"bikeId":"3534","endDate":1424334780,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424333880,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41308117","duration":1200,"bikeId":"516","endDate":1424335140,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1424333940,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41308120","duration":180,"bikeId":"11007","endDate":1424334180,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1424334000,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"41308198","duration":540,"bikeId":"5027","endDate":1424334600,"endStationId":"665","endStationName":"Smugglers Way, Wandsworth","startDate":1424334060,"startStationId":"653","startStationName":"Simpson Street, Battersea"}, +{"_id":"41308269","duration":240,"bikeId":"12788","endDate":1424334360,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1424334120,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"41308315","duration":1380,"bikeId":"3143","endDate":1424335560,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1424334180,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41308401","duration":600,"bikeId":"3046","endDate":1424334840,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1424334240,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41308473","duration":1320,"bikeId":"6120","endDate":1424335620,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1424334300,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"41308506","duration":480,"bikeId":"1610","endDate":1424334840,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424334360,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41308566","duration":1080,"bikeId":"4345","endDate":1424335500,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1424334420,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"41308693","duration":420,"bikeId":"4729","endDate":1424334900,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424334480,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41308748","duration":660,"bikeId":"7378","endDate":1424335200,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424334540,"startStationId":"123","startStationName":"St. John Street, Finsbury"}, +{"_id":"41308781","duration":1260,"bikeId":"10438","endDate":1424335860,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1424334600,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"41308879","duration":540,"bikeId":"3670","endDate":1424335200,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1424334660,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41308940","duration":1020,"bikeId":"11021","endDate":1424335740,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424334720,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41308998","duration":1380,"bikeId":"6577","endDate":1424336160,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1424334780,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"41309038","duration":720,"bikeId":"8950","endDate":1424335560,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1424334840,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"41309104","duration":3180,"bikeId":"8680","endDate":1424338080,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1424334900,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41309177","duration":840,"bikeId":"10840","endDate":1424335800,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1424334960,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"41309291","duration":720,"bikeId":"12088","endDate":1424335740,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1424335020,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41309331","duration":1560,"bikeId":"2086","endDate":1424336640,"endStationId":"759","endStationName":"Broadley Terrace, Marylebone","startDate":1424335080,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41309334","duration":240,"bikeId":"1769","endDate":1424335320,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1424335080,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"41309497","duration":120,"bikeId":"5531","endDate":1424335320,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1424335200,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"41309503","duration":720,"bikeId":"12534","endDate":1424335920,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1424335200,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41309551","duration":60,"bikeId":"259","endDate":1424335320,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1424335260,"startStationId":"724","startStationName":"Alma Road, Wandsworth"}, +{"_id":"41309665","duration":300,"bikeId":"1828","endDate":1424335620,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1424335320,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"41309731","duration":1200,"bikeId":"10136","endDate":1424336580,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424335380,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41309841","duration":1020,"bikeId":"936","endDate":1424336460,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1424335440,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"41309863","duration":300,"bikeId":"9337","endDate":1424335800,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1424335500,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41309937","duration":600,"bikeId":"1879","endDate":1424336160,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424335560,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"41310030","duration":960,"bikeId":"4911","endDate":1424336580,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1424335620,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41310066","duration":480,"bikeId":"5836","endDate":1424336160,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1424335680,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41310187","duration":300,"bikeId":"3283","endDate":1424336040,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1424335740,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41310233","duration":420,"bikeId":"4404","endDate":1424336220,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1424335800,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41310281","duration":1020,"bikeId":"1017","endDate":1424336880,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1424335860,"startStationId":"660","startStationName":"West Kensington Station, West Kensington"}, +{"_id":"41310357","duration":900,"bikeId":"11039","endDate":1424336820,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424335920,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41310405","duration":120,"bikeId":"5308","endDate":1424336100,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424335980,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41310448","duration":480,"bikeId":"10219","endDate":1424336520,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1424336040,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"41310530","duration":540,"bikeId":"11427","endDate":1424336640,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424336100,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41310669","duration":300,"bikeId":"10145","endDate":1424336520,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1424336220,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41310704","duration":300,"bikeId":"1085","endDate":1424336580,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424336280,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"41310786","duration":1320,"bikeId":"2459","endDate":1424337660,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424336340,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41310794","duration":360,"bikeId":"5537","endDate":1424336760,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1424336400,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41310876","duration":960,"bikeId":"3496","endDate":1424337420,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424336460,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"41310928","duration":540,"bikeId":"7315","endDate":1424337060,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1424336520,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41311033","duration":420,"bikeId":"1782","endDate":1424337060,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1424336640,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"41311063","duration":420,"bikeId":"7709","endDate":1424337120,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1424336700,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41311164","duration":720,"bikeId":"8289","endDate":1424337540,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424336820,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"41311204","duration":360,"bikeId":"9074","endDate":1424337240,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424336880,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"41311281","duration":420,"bikeId":"6009","endDate":1424337420,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424337000,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"41311344","duration":480,"bikeId":"9720","endDate":1424337540,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1424337060,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"41311444","duration":600,"bikeId":"5276","endDate":1424337780,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1424337180,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41311480","duration":420,"bikeId":"7850","endDate":1424337660,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1424337240,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41311536","duration":660,"bikeId":"8437","endDate":1424338020,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1424337360,"startStationId":"763","startStationName":"Mile End Park Leisure Centre, Mile End"}, +{"_id":"41311608","duration":240,"bikeId":"1810","endDate":1424337720,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1424337480,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"41311673","duration":900,"bikeId":"11320","endDate":1424338500,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1424337600,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41311748","duration":240,"bikeId":"12962","endDate":1424337960,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1424337720,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"41311820","duration":540,"bikeId":"9124","endDate":1424338440,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1424337900,"startStationId":"171","startStationName":"Collingham Gardens, Earl's Court"}, +{"_id":"41311874","duration":540,"bikeId":"8137","endDate":1424338560,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424338020,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41311960","duration":1140,"bikeId":"7213","endDate":1424339340,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1424338200,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41312035","duration":1620,"bikeId":"9344","endDate":1424340000,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424338380,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"41312100","duration":360,"bikeId":"11427","endDate":1424338920,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1424338560,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41312155","duration":1140,"bikeId":"5460","endDate":1424339820,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1424338680,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41312213","duration":2220,"bikeId":"7763","endDate":1424341080,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424338860,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"41312269","duration":840,"bikeId":"4735","endDate":1424339820,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1424338980,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41312351","duration":480,"bikeId":"2586","endDate":1424339640,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424339160,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41312404","duration":1500,"bikeId":"8149","endDate":1424340840,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424339340,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41312489","duration":360,"bikeId":"7074","endDate":1424339880,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1424339520,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"41312572","duration":780,"bikeId":"494","endDate":1424340480,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1424339700,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41312641","duration":2220,"bikeId":"53","endDate":1424342160,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1424339940,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"41312700","duration":780,"bikeId":"6455","endDate":1424340900,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1424340120,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41312769","duration":1260,"bikeId":"10573","endDate":1424341620,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1424340360,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41312845","duration":720,"bikeId":"5057","endDate":1424341320,"endStationId":"693","endStationName":"Felsham Road, Putney","startDate":1424340600,"startStationId":"684","startStationName":"Neville Gill Close, Wandsworth"}, +{"_id":"41312910","duration":480,"bikeId":"10918","endDate":1424341380,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1424340900,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41312969","duration":840,"bikeId":"2563","endDate":1424341980,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424341140,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41313055","duration":900,"bikeId":"713","endDate":1424342340,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424341440,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41313111","duration":720,"bikeId":"10705","endDate":1424342460,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424341740,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41313192","duration":300,"bikeId":"12199","endDate":1424342400,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1424342100,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41313268","duration":540,"bikeId":"8328","endDate":1424342940,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1424342400,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"41313332","duration":840,"bikeId":"11913","endDate":1424343480,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424342640,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"41313382","duration":780,"bikeId":"5393","endDate":1424343660,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424342880,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41313472","duration":240,"bikeId":"8873","endDate":1424343480,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424343240,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"41313522","duration":720,"bikeId":"7350","endDate":1424344260,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1424343540,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41313593","duration":2400,"bikeId":"995","endDate":1424346300,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424343900,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41313671","duration":600,"bikeId":"1803","endDate":1424344860,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424344260,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41313738","duration":300,"bikeId":"8859","endDate":1424344860,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1424344560,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"41313797","duration":1440,"bikeId":"12863","endDate":1424346300,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1424344860,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"41313874","duration":1500,"bikeId":"9350","endDate":1424346780,"endStationId":"611","endStationName":"Princedale Road , Holland Park","startDate":1424345280,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"41313936","duration":600,"bikeId":"10647","endDate":1424346180,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1424345580,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41314010","duration":1020,"bikeId":"928","endDate":1424346960,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424345940,"startStationId":"367","startStationName":"Harrowby Street, Marylebone"}, +{"_id":"41314069","duration":1200,"bikeId":"1386","endDate":1424347440,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1424346240,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"41314152","duration":120,"bikeId":"2547","endDate":1424346660,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1424346540,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"41314214","duration":180,"bikeId":"1593","endDate":1424347020,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1424346840,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41314284","duration":1260,"bikeId":"5319","endDate":1424348400,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1424347140,"startStationId":"419","startStationName":"Chelsea Bridge, Pimlico"}, +{"_id":"41314343","duration":1200,"bikeId":"4736","endDate":1424348580,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1424347380,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"41314393","duration":2040,"bikeId":"2271","endDate":1424349660,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424347620,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41314467","duration":540,"bikeId":"6830","endDate":1424348400,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424347860,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41314543","duration":360,"bikeId":"1711","endDate":1424348460,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424348100,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41314607","duration":3420,"bikeId":"8802","endDate":1424351820,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1424348400,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41314697","duration":600,"bikeId":"1709","endDate":1424349300,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424348700,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41314755","duration":660,"bikeId":"10254","endDate":1424349660,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1424349000,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41314835","duration":780,"bikeId":"12414","endDate":1424350020,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1424349240,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41314896","duration":360,"bikeId":"3876","endDate":1424349840,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424349480,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41314959","duration":480,"bikeId":"5096","endDate":1424350200,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1424349720,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"41315011","duration":1560,"bikeId":"8022","endDate":1424351520,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1424349960,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41315110","duration":600,"bikeId":"12764","endDate":1424350800,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1424350200,"startStationId":"722","startStationName":"Finnis Street, Bethnal Green"}, +{"_id":"41315160","duration":1440,"bikeId":"7873","endDate":1424351880,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1424350440,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41315241","duration":2400,"bikeId":"2895","endDate":1424353140,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1424350740,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41315312","duration":180,"bikeId":"1131","endDate":1424351220,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1424351040,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"41315371","duration":1080,"bikeId":"6220","endDate":1424352360,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1424351280,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41315434","duration":1260,"bikeId":"10966","endDate":1424352840,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1424351580,"startStationId":"600","startStationName":"South Lambeth Road, Vauxhall"}, +{"_id":"41315503","duration":540,"bikeId":"10241","endDate":1424352480,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1424351940,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41315564","duration":480,"bikeId":"8099","endDate":1424352720,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1424352240,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41315639","duration":360,"bikeId":"4483","endDate":1424352900,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1424352540,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"41315711","duration":780,"bikeId":"11704","endDate":1424353620,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1424352840,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"41315784","duration":240,"bikeId":"10317","endDate":1424353500,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424353260,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"41315839","duration":840,"bikeId":"5220","endDate":1424354400,"endStationId":"53","endStationName":"Grafton Street, Mayfair","startDate":1424353560,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41315907","duration":420,"bikeId":"3624","endDate":1424354520,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1424354100,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"41315973","duration":480,"bikeId":"445","endDate":1424355180,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1424354700,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41316043","duration":900,"bikeId":"11008","endDate":1424356140,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424355240,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"41316117","duration":1140,"bikeId":"10652","endDate":1424357040,"endStationId":"189","endStationName":"Claremont Square, Angel","startDate":1424355900,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41316178","duration":720,"bikeId":"3658","endDate":1424357160,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1424356440,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41316253","duration":480,"bikeId":"10933","endDate":1424357640,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1424357160,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41316326","duration":420,"bikeId":"5158","endDate":1424358600,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1424358180,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41316394","duration":240,"bikeId":"7609","endDate":1424359140,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1424358900,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41316469","duration":780,"bikeId":"639","endDate":1424360520,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1424359740,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41316532","duration":300,"bikeId":"5371","endDate":1424360640,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1424360340,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41316602","duration":240,"bikeId":"12267","endDate":1424361000,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1424360760,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41316669","duration":360,"bikeId":"230","endDate":1424361660,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1424361300,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"41316734","duration":300,"bikeId":"1841","endDate":1424362140,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1424361840,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"41316812","duration":1020,"bikeId":"9234","endDate":1424363400,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1424362380,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41316872","duration":240,"bikeId":"6690","endDate":1424363040,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1424362800,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41316961","duration":1560,"bikeId":"12650","endDate":1424364840,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1424363280,"startStationId":"762","startStationName":"Storey's Gate, Westminster"}, +{"_id":"41317010","duration":1320,"bikeId":"9763","endDate":1424364900,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1424363580,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41317078","duration":660,"bikeId":"5089","endDate":1424364540,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424363880,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41317132","duration":600,"bikeId":"9929","endDate":1424364780,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1424364180,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"41317194","duration":660,"bikeId":"1129","endDate":1424365140,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1424364480,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41317279","duration":480,"bikeId":"2793","endDate":1424365260,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1424364780,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41317336","duration":480,"bikeId":"11556","endDate":1424365560,"endStationId":"165","endStationName":"Orsett Terrace, Bayswater","startDate":1424365080,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"41317398","duration":600,"bikeId":"12207","endDate":1424365920,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1424365320,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"41317463","duration":600,"bikeId":"7791","endDate":1424366100,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1424365500,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41317548","duration":780,"bikeId":"4593","endDate":1424366520,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1424365740,"startStationId":"309","startStationName":"Embankment (Savoy), Strand"}, +{"_id":"41317606","duration":120,"bikeId":"6712","endDate":1424366040,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1424365920,"startStationId":"592","startStationName":"Bishop's Bridge Road East, Bayswater"}, +{"_id":"41317683","duration":1260,"bikeId":"8187","endDate":1424367420,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1424366160,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41317737","duration":1080,"bikeId":"11468","endDate":1424367420,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1424366340,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41317809","duration":540,"bikeId":"1990","endDate":1424367120,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424366580,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41317886","duration":1500,"bikeId":"892","endDate":1424368260,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1424366760,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41317951","duration":180,"bikeId":"9718","endDate":1424367180,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1424367000,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41317999","duration":420,"bikeId":"8314","endDate":1424367600,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1424367180,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"41318062","duration":360,"bikeId":"1671","endDate":1424367720,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1424367360,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"41318157","duration":420,"bikeId":"2926","endDate":1424367960,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424367540,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41318213","duration":1800,"bikeId":"3216","endDate":1424369460,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1424367660,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"41318275","duration":480,"bikeId":"7995","endDate":1424368320,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1424367840,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41318336","duration":540,"bikeId":"4667","endDate":1424368500,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424367960,"startStationId":"84","startStationName":"Breams Buildings, Holborn"}, +{"_id":"41318405","duration":360,"bikeId":"9454","endDate":1424368500,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1424368140,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41318471","duration":900,"bikeId":"7958","endDate":1424369220,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1424368320,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41318545","duration":1080,"bikeId":"411","endDate":1424369580,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1424368500,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41318623","duration":360,"bikeId":"5880","endDate":1424369040,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1424368680,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"41318679","duration":2100,"bikeId":"4387","endDate":1424370960,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1424368860,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41318762","duration":1320,"bikeId":"9475","endDate":1424370360,"endStationId":"516","endStationName":"Chrisp Street Market, Poplar","startDate":1424369040,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41318801","duration":1440,"bikeId":"9557","endDate":1424370600,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1424369160,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41318895","duration":720,"bikeId":"12704","endDate":1424370060,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1424369340,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41318939","duration":720,"bikeId":"12896","endDate":1424370180,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424369460,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41319009","duration":1140,"bikeId":"12023","endDate":1424370780,"endStationId":"143","endStationName":"Pont Street, Knightsbridge","startDate":1424369640,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41319069","duration":1740,"bikeId":"11444","endDate":1424371560,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1424369820,"startStationId":"306","startStationName":"Rathbone Street, Fitzrovia"}, +{"_id":"41319130","duration":50220,"bikeId":"551","endDate":1424420160,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424369940,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"41319202","duration":420,"bikeId":"13061","endDate":1424370540,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1424370120,"startStationId":"6","startStationName":"Broadcasting House, Marylebone"}, +{"_id":"41319279","duration":360,"bikeId":"4047","endDate":1424370660,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1424370300,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41319348","duration":1500,"bikeId":"1714","endDate":1424371980,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1424370480,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"41319407","duration":1020,"bikeId":"5769","endDate":1424371680,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1424370660,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41319481","duration":480,"bikeId":"6539","endDate":1424371320,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1424370840,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41319532","duration":840,"bikeId":"12743","endDate":1424371800,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1424370960,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"41319606","duration":960,"bikeId":"2136","endDate":1424372100,"endStationId":"605","endStationName":"Seymour Place, Marylebone","startDate":1424371140,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41319690","duration":480,"bikeId":"1163","endDate":1424371800,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424371320,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41319744","duration":900,"bikeId":"2410","endDate":1424372400,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1424371500,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41319820","duration":180,"bikeId":"12513","endDate":1424371920,"endStationId":"488","endStationName":"Reardon Street, Wapping","startDate":1424371740,"startStationId":"490","startStationName":"Pennington Street, Wapping"}, +{"_id":"41319885","duration":420,"bikeId":"40","endDate":1424372340,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1424371920,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41319951","duration":75060,"bikeId":"10369","endDate":1424447340,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1424372280,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41320019","duration":720,"bikeId":"12458","endDate":1424373240,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1424372520,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41320087","duration":180,"bikeId":"11210","endDate":1424372940,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1424372760,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"41320166","duration":660,"bikeId":"5006","endDate":1424373720,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1424373060,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41320214","duration":480,"bikeId":"5162","endDate":1424373780,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424373300,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"41320291","duration":180,"bikeId":"3087","endDate":1424373720,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1424373540,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"41320362","duration":240,"bikeId":"3780","endDate":1424374020,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1424373780,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41320423","duration":1020,"bikeId":"12678","endDate":1424375040,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1424374020,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41320484","duration":1260,"bikeId":"1500","endDate":1424375640,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1424374380,"startStationId":"325","startStationName":"St. Martin's Street, West End"}, +{"_id":"41320547","duration":660,"bikeId":"3131","endDate":1424375400,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1424374740,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41320620","duration":540,"bikeId":"12484","endDate":1424375640,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1424375100,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41320683","duration":600,"bikeId":"3940","endDate":1424376120,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1424375520,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"41320757","duration":38460,"bikeId":"7863","endDate":1424414460,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1424376000,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41320826","duration":300,"bikeId":"102","endDate":1424376840,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1424376540,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"41320885","duration":780,"bikeId":"7306","endDate":1424377740,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424376960,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41320954","duration":300,"bikeId":"2553","endDate":1424377800,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1424377500,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41321024","duration":720,"bikeId":"9147","endDate":1424378760,"endStationId":"519","endStationName":"Teviot Street, Poplar","startDate":1424378040,"startStationId":"487","startStationName":"Canton Street, Poplar"}, +{"_id":"41321084","duration":300,"bikeId":"2750","endDate":1424378940,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1424378640,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"41321154","duration":1440,"bikeId":"2361","endDate":1424380680,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424379240,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"41321222","duration":480,"bikeId":"2841","endDate":1424380320,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1424379840,"startStationId":"651","startStationName":"Thorndike Close, West Chelsea"}, +{"_id":"41321282","duration":780,"bikeId":"10857","endDate":1424381040,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1424380260,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"41321349","duration":1500,"bikeId":"7721","endDate":1424382360,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1424380860,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"41321419","duration":600,"bikeId":"3843","endDate":1424382180,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1424381580,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41321488","duration":300,"bikeId":"12606","endDate":1424382660,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1424382360,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41321554","duration":540,"bikeId":"3034","endDate":1424383860,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1424383320,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41321623","duration":240,"bikeId":"10025","endDate":1424384160,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424383920,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41321691","duration":1020,"bikeId":"3243","endDate":1424385780,"endStationId":"615","endStationName":"Finlay Street, Fulham","startDate":1424384760,"startStationId":"647","startStationName":"Richmond Way, Shepherd's Bush"}, +{"_id":"41321759","duration":120,"bikeId":"372","endDate":1424385720,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1424385600,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"41321824","duration":540,"bikeId":"5508","endDate":1424387040,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1424386500,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"41321895","duration":900,"bikeId":"6406","endDate":1424388480,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1424387580,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41321962","duration":840,"bikeId":"3860","endDate":1424389500,"endStationId":"291","endStationName":"Claverton Street, Pimlico","startDate":1424388660,"startStationId":"325","startStationName":"St. Martin's Street, West End"}, +{"_id":"41322025","duration":300,"bikeId":"11349","endDate":1424390220,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1424389920,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"41322099","duration":480,"bikeId":"6163","endDate":1424391420,"endStationId":"468","endStationName":"Cantrell Road, Bow","startDate":1424390940,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"41322168","duration":420,"bikeId":"10663","endDate":1424392740,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1424392320,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41322241","duration":840,"bikeId":"12448","endDate":1424396160,"endStationId":"410","endStationName":"Edgware Road Station, Paddington","startDate":1424395320,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41322307","duration":480,"bikeId":"3956","endDate":1424399520,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1424399040,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"41322373","duration":600,"bikeId":"9520","endDate":1424407920,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1424407320,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"41322440","duration":480,"bikeId":"6838","endDate":1424411640,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1424411160,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41322507","duration":240,"bikeId":"12601","endDate":1424412960,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1424412720,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41322576","duration":660,"bikeId":"6231","endDate":1424414100,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1424413440,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41322644","duration":360,"bikeId":"9763","endDate":1424414400,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1424414040,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41322713","duration":600,"bikeId":"8894","endDate":1424415120,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1424414520,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41322783","duration":780,"bikeId":"775","endDate":1424415720,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1424414940,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41322852","duration":300,"bikeId":"732","endDate":1424415720,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1424415420,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41322909","duration":660,"bikeId":"3784","endDate":1424416380,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1424415720,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41322984","duration":720,"bikeId":"88","endDate":1424416800,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1424416080,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41323032","duration":900,"bikeId":"11043","endDate":1424417160,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1424416260,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41323106","duration":1080,"bikeId":"647","endDate":1424417580,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424416500,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41323173","duration":600,"bikeId":"620","endDate":1424417340,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1424416740,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41323244","duration":300,"bikeId":"10011","endDate":1424417280,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1424416980,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41323301","duration":1140,"bikeId":"6590","endDate":1424418360,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1424417220,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41323357","duration":360,"bikeId":"3463","endDate":1424417700,"endStationId":"652","endStationName":"Evesham Street, Avondale","startDate":1424417340,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"41323439","duration":540,"bikeId":"1198","endDate":1424418060,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1424417520,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"41323500","duration":1440,"bikeId":"8827","endDate":1424419080,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1424417640,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41323568","duration":660,"bikeId":"11060","endDate":1424418480,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1424417820,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41323636","duration":1020,"bikeId":"5001","endDate":1424418960,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1424417940,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41323712","duration":960,"bikeId":"6398","endDate":1424419020,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1424418060,"startStationId":"145","startStationName":"Ilchester Place, Kensington"}, +{"_id":"41323770","duration":1020,"bikeId":"3661","endDate":1424419200,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1424418180,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"41323851","duration":900,"bikeId":"4574","endDate":1424419260,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1424418360,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41323903","duration":540,"bikeId":"7675","endDate":1424419020,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1424418480,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41323957","duration":840,"bikeId":"6224","endDate":1424419440,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424418600,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41324006","duration":900,"bikeId":"9865","endDate":1424419620,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1424418720,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41324085","duration":1260,"bikeId":"8773","endDate":1424420100,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1424418840,"startStationId":"441","startStationName":"Sail Street, Vauxhall"}, +{"_id":"41324176","duration":420,"bikeId":"10452","endDate":1424419440,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424419020,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41324231","duration":1320,"bikeId":"9897","endDate":1424420460,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1424419140,"startStationId":"501","startStationName":"Cephas Street, Bethnal Green"}, +{"_id":"41324286","duration":840,"bikeId":"2519","endDate":1424420040,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1424419200,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"41324369","duration":600,"bikeId":"3008","endDate":1424419920,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1424419320,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41324440","duration":1320,"bikeId":"8837","endDate":1424420760,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1424419440,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41324524","duration":1620,"bikeId":"3881","endDate":1424421180,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1424419560,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41324573","duration":1200,"bikeId":"717","endDate":1424420820,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424419620,"startStationId":"461","startStationName":"Aston Street, Stepney"}, +{"_id":"41324625","duration":1080,"bikeId":"4796","endDate":1424420820,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1424419740,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41324680","duration":720,"bikeId":"12804","endDate":1424420520,"endStationId":"236","endStationName":"Fashion Street, Whitechapel","startDate":1424419800,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"41324785","duration":660,"bikeId":"11220","endDate":1424420580,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1424419920,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41324793","duration":1020,"bikeId":"785","endDate":1424421000,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1424419980,"startStationId":"220","startStationName":"Chelsea Green, Chelsea"}, +{"_id":"41324903","duration":780,"bikeId":"7036","endDate":1424420880,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424420100,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"41325004","duration":1620,"bikeId":"4556","endDate":1424421840,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1424420220,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41325041","duration":1380,"bikeId":"7064","endDate":1424421660,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1424420280,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41325109","duration":1500,"bikeId":"12976","endDate":1424421840,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1424420340,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41325198","duration":1800,"bikeId":"8564","endDate":1424422260,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424420460,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"41325211","duration":720,"bikeId":"3745","endDate":1424421240,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1424420520,"startStationId":"59","startStationName":"Rodney Street, Angel"}, +{"_id":"41325268","duration":780,"bikeId":"4262","endDate":1424421360,"endStationId":"592","endStationName":"Bishop's Bridge Road East, Bayswater","startDate":1424420580,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"41325429","duration":240,"bikeId":"11873","endDate":1424420940,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1424420700,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"41325478","duration":300,"bikeId":"11808","endDate":1424421060,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1424420760,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41325521","duration":1260,"bikeId":"10852","endDate":1424422080,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1424420820,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"41325586","duration":960,"bikeId":"10222","endDate":1424421840,"endStationId":"502","endStationName":"South Quay West, Canary Wharf","startDate":1424420880,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41325630","duration":780,"bikeId":"5730","endDate":1424421720,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1424420940,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41325675","duration":360,"bikeId":"12197","endDate":1424421360,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424421000,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41325736","duration":420,"bikeId":"12966","endDate":1424421480,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1424421060,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41325895","duration":3420,"bikeId":"264","endDate":1424424600,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1424421180,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41325919","duration":1320,"bikeId":"12604","endDate":1424422560,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1424421240,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"41325979","duration":780,"bikeId":"7649","endDate":1424422080,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1424421300,"startStationId":"469","startStationName":"Lindfield Street, Poplar"}, +{"_id":"41326049","duration":540,"bikeId":"502","endDate":1424421900,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1424421360,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41326070","duration":960,"bikeId":"9560","endDate":1424422380,"endStationId":"84","endStationName":"Breams Buildings, Holborn","startDate":1424421420,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"41326180","duration":1140,"bikeId":"2842","endDate":1424422620,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1424421480,"startStationId":"576","startStationName":"Alpha Grove, Millwall"}, +{"_id":"41326194","duration":300,"bikeId":"2797","endDate":1424421840,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1424421540,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41326334","duration":540,"bikeId":"9961","endDate":1424422140,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1424421600,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41326344","duration":780,"bikeId":"2179","endDate":1424422440,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1424421660,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41326418","duration":240,"bikeId":"7076","endDate":1424421960,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424421720,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"41326489","duration":1080,"bikeId":"9432","endDate":1424422860,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1424421780,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41326543","duration":840,"bikeId":"6571","endDate":1424422680,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424421840,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41326647","duration":1620,"bikeId":"4574","endDate":1424423520,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1424421900,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"41326704","duration":960,"bikeId":"10809","endDate":1424422920,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1424421960,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"41326727","duration":1020,"bikeId":"8873","endDate":1424423040,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424422020,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41326832","duration":180,"bikeId":"5932","endDate":1424422260,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1424422080,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41326933","duration":360,"bikeId":"10772","endDate":1424422500,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1424422140,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41326985","duration":1500,"bikeId":"8463","endDate":1424423700,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1424422200,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41327072","duration":600,"bikeId":"9762","endDate":1424422920,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1424422320,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41327146","duration":420,"bikeId":"947","endDate":1424422800,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424422380,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41327186","duration":540,"bikeId":"7257","endDate":1424422980,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1424422440,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41327255","duration":960,"bikeId":"9859","endDate":1424423460,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1424422500,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"41327354","duration":480,"bikeId":"12360","endDate":1424423100,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1424422620,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41327406","duration":1140,"bikeId":"2541","endDate":1424423820,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1424422680,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41327422","duration":660,"bikeId":"996","endDate":1424423400,"endStationId":"599","endStationName":"Manbre Road, Hammersmith","startDate":1424422740,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"41327558","duration":840,"bikeId":"11289","endDate":1424423700,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1424422860,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"41327597","duration":660,"bikeId":"2321","endDate":1424423640,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1424422980,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"41327676","duration":3060,"bikeId":"987","endDate":1424426100,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1424423040,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"41327733","duration":960,"bikeId":"9428","endDate":1424424120,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1424423160,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41327813","duration":600,"bikeId":"11417","endDate":1424423880,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1424423280,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"41327850","duration":240,"bikeId":"11153","endDate":1424423580,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424423340,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41327938","duration":720,"bikeId":"10809","endDate":1424424180,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1424423460,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41328007","duration":1140,"bikeId":"2949","endDate":1424424720,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1424423580,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41328102","duration":1380,"bikeId":"6840","endDate":1424425080,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424423700,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"41328177","duration":600,"bikeId":"3798","endDate":1424424420,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1424423820,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"41328226","duration":660,"bikeId":"6664","endDate":1424424540,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1424423880,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41328290","duration":600,"bikeId":"11496","endDate":1424424600,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424424000,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41328369","duration":240,"bikeId":"2391","endDate":1424424360,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424424120,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41328425","duration":1200,"bikeId":"8961","endDate":1424425440,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1424424240,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"41328515","duration":480,"bikeId":"11759","endDate":1424424900,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1424424420,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41328567","duration":840,"bikeId":"10684","endDate":1424425380,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1424424540,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41328632","duration":600,"bikeId":"1904","endDate":1424425320,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1424424720,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"41328714","duration":360,"bikeId":"9830","endDate":1424425260,"endStationId":"441","endStationName":"Sail Street, Vauxhall","startDate":1424424900,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"41328765","duration":420,"bikeId":"2988","endDate":1424425440,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1424425020,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41328856","duration":840,"bikeId":"3463","endDate":1424426040,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1424425200,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41328910","duration":960,"bikeId":"2870","endDate":1424426340,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1424425380,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"41328968","duration":420,"bikeId":"5734","endDate":1424425980,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1424425560,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41329058","duration":240,"bikeId":"11759","endDate":1424426040,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1424425800,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41329122","duration":540,"bikeId":"1969","endDate":1424426520,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1424425980,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41329191","duration":180,"bikeId":"9763","endDate":1424426400,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1424426220,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41329244","duration":660,"bikeId":"8096","endDate":1424427120,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1424426460,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41329322","duration":480,"bikeId":"10816","endDate":1424427240,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1424426760,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41329397","duration":840,"bikeId":"6226","endDate":1424427900,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1424427060,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41329452","duration":1680,"bikeId":"5128","endDate":1424428980,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1424427300,"startStationId":"164","startStationName":"Cleveland Gardens, Bayswater"}, +{"_id":"41329523","duration":300,"bikeId":"6713","endDate":1424427840,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1424427540,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"41329589","duration":240,"bikeId":"148","endDate":1424428080,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1424427840,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"41329688","duration":240,"bikeId":"10418","endDate":1424428440,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1424428200,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41329739","duration":1020,"bikeId":"1750","endDate":1424429580,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1424428560,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41329809","duration":1320,"bikeId":"4575","endDate":1424430180,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1424428860,"startStationId":"398","startStationName":"Holland Park, Kensington"}, +{"_id":"41329890","duration":1080,"bikeId":"5960","endDate":1424430180,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424429100,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"41329956","duration":360,"bikeId":"1063","endDate":1424429760,"endStationId":"176","endStationName":"Gloucester Terrace, Bayswater","startDate":1424429400,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41330025","duration":180,"bikeId":"10189","endDate":1424429880,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1424429700,"startStationId":"149","startStationName":"Kennington Road Post Office, Oval"}, +{"_id":"41330103","duration":360,"bikeId":"3790","endDate":1424430480,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1424430120,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41330163","duration":1260,"bikeId":"13003","endDate":1424431680,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1424430420,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41330227","duration":1020,"bikeId":"178","endDate":1424431740,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424430720,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41330291","duration":480,"bikeId":"6029","endDate":1424431500,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1424431020,"startStationId":"247","startStationName":"St. John's Wood Church, Regent's Park"}, +{"_id":"41330354","duration":780,"bikeId":"8870","endDate":1424432100,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424431320,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41330436","duration":360,"bikeId":"7765","endDate":1424432040,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1424431680,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41330505","duration":360,"bikeId":"10346","endDate":1424432340,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1424431980,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41330575","duration":480,"bikeId":"9496","endDate":1424432760,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1424432280,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"41330633","duration":540,"bikeId":"12861","endDate":1424433060,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1424432520,"startStationId":"729","startStationName":"St. Peter's Terrace, Fulham"}, +{"_id":"41330706","duration":1320,"bikeId":"5576","endDate":1424434080,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1424432760,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41330779","duration":420,"bikeId":"12899","endDate":1424433480,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1424433060,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"41330835","duration":840,"bikeId":"7874","endDate":1424434140,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1424433300,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41330900","duration":480,"bikeId":"7111","endDate":1424433960,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1424433480,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"41330973","duration":360,"bikeId":"6429","endDate":1424434140,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1424433780,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41331042","duration":3720,"bikeId":"1300","endDate":1424437740,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424434020,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41331130","duration":360,"bikeId":"6713","endDate":1424434680,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1424434320,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"41331176","duration":98400,"bikeId":"504","endDate":1424532900,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1424434500,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"41331254","duration":3360,"bikeId":"2437","endDate":1424438100,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424434740,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41331316","duration":300,"bikeId":"7004","endDate":1424435220,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1424434920,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41331386","duration":1140,"bikeId":"9503","endDate":1424436300,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1424435160,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41331480","duration":540,"bikeId":"7982","endDate":1424436000,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1424435460,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41331549","duration":240,"bikeId":"3193","endDate":1424435940,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1424435700,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41331604","duration":300,"bikeId":"4537","endDate":1424436240,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424435940,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"41331682","duration":900,"bikeId":"10559","endDate":1424437020,"endStationId":"371","endStationName":"King Edward Walk, Waterloo","startDate":1424436120,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41331734","duration":1260,"bikeId":"9365","endDate":1424437560,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1424436300,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"41331814","duration":360,"bikeId":"401","endDate":1424436900,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1424436540,"startStationId":"460","startStationName":"Burdett Road, Mile End"}, +{"_id":"41331892","duration":420,"bikeId":"12873","endDate":1424437200,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1424436780,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"41331937","duration":660,"bikeId":"11025","endDate":1424437620,"endStationId":"571","endStationName":"Westfield Southern Terrace ,Shepherd's Bush","startDate":1424436960,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"41332015","duration":780,"bikeId":"3064","endDate":1424438040,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1424437260,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"41332077","duration":840,"bikeId":"12783","endDate":1424438340,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1424437500,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"41332160","duration":480,"bikeId":"7894","endDate":1424438220,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1424437740,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"41332208","duration":720,"bikeId":"11143","endDate":1424438640,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1424437920,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"41332289","duration":240,"bikeId":"12063","endDate":1424438340,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424438100,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41332356","duration":1260,"bikeId":"10533","endDate":1424439600,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424438340,"startStationId":"724","startStationName":"Alma Road, Wandsworth"}, +{"_id":"41332425","duration":360,"bikeId":"949","endDate":1424438940,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424438580,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41332485","duration":360,"bikeId":"7951","endDate":1424439120,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1424438760,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41332552","duration":600,"bikeId":"10952","endDate":1424439600,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1424439000,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"41332627","duration":1200,"bikeId":"13056","endDate":1424440440,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1424439240,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41332693","duration":1500,"bikeId":"10291","endDate":1424440920,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424439420,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41332785","duration":360,"bikeId":"9579","endDate":1424440080,"endStationId":"609","endStationName":"Sugden Road, Battersea","startDate":1424439720,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"41332848","duration":240,"bikeId":"13010","endDate":1424440200,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1424439960,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41332914","duration":960,"bikeId":"10817","endDate":1424441160,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1424440200,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"41332978","duration":1680,"bikeId":"4199","endDate":1424442060,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424440380,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41333052","duration":900,"bikeId":"636","endDate":1424441520,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1424440620,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"41333120","duration":1380,"bikeId":"12052","endDate":1424442240,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1424440860,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41333205","duration":1680,"bikeId":"4198","endDate":1424442840,"endStationId":"719","endStationName":"Victoria Park Road, Hackney Central","startDate":1424441160,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41333252","duration":720,"bikeId":"9263","endDate":1424442120,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1424441400,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41333326","duration":720,"bikeId":"10339","endDate":1424442300,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1424441580,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"41333412","duration":180,"bikeId":"11079","endDate":1424442060,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424441880,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41333477","duration":1500,"bikeId":"3308","endDate":1424443620,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1424442120,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41333548","duration":840,"bikeId":"12464","endDate":1424443200,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1424442360,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41333621","duration":600,"bikeId":"11795","endDate":1424443200,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1424442600,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41333679","duration":2160,"bikeId":"5210","endDate":1424445000,"endStationId":"10","endStationName":"Park Street, Bankside","startDate":1424442840,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41333752","duration":180,"bikeId":"7817","endDate":1424443320,"endStationId":"566","endStationName":"Westfield Ariel Way, White City","startDate":1424443140,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"41333823","duration":720,"bikeId":"6188","endDate":1424444100,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424443380,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"41333900","duration":960,"bikeId":"1618","endDate":1424444580,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1424443620,"startStationId":"696","startStationName":"Charing Cross Hospital, Hammersmith"}, +{"_id":"41333963","duration":1440,"bikeId":"5704","endDate":1424445300,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1424443860,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41334026","duration":540,"bikeId":"8564","endDate":1424444640,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424444100,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41334115","duration":300,"bikeId":"3322","endDate":1424444700,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424444400,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41334153","duration":3240,"bikeId":"12768","endDate":1424447880,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1424444640,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41334232","duration":240,"bikeId":"2527","endDate":1424445180,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1424444940,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41334299","duration":5520,"bikeId":"9757","endDate":1424450640,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1424445120,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41334358","duration":300,"bikeId":"2870","endDate":1424445660,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1424445360,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"41334442","duration":720,"bikeId":"11473","endDate":1424446320,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424445600,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41334497","duration":420,"bikeId":"3765","endDate":1424446260,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424445840,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41334568","duration":960,"bikeId":"8110","endDate":1424447040,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1424446080,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41334639","duration":900,"bikeId":"8368","endDate":1424447220,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1424446320,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41334693","duration":1500,"bikeId":"2410","endDate":1424448000,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1424446500,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"41334746","duration":240,"bikeId":"6005","endDate":1424446920,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424446680,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41334836","duration":3000,"bikeId":"11977","endDate":1424449920,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424446920,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"41334908","duration":960,"bikeId":"8699","endDate":1424448120,"endStationId":"262","endStationName":"LSBU (Borough Road), Elephant & Castle","startDate":1424447160,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41334986","duration":1320,"bikeId":"10511","endDate":1424448720,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1424447400,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41335053","duration":3240,"bikeId":"3627","endDate":1424450880,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1424447640,"startStationId":"564","startStationName":"Somerset House, Strand"}, +{"_id":"41335120","duration":2520,"bikeId":"4790","endDate":1424450340,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1424447820,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41335160","duration":660,"bikeId":"6649","endDate":1424448660,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1424448000,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41335253","duration":120,"bikeId":"5804","endDate":1424448300,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1424448180,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41335318","duration":1140,"bikeId":"2436","endDate":1424449560,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1424448420,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41335401","duration":240,"bikeId":"3344","endDate":1424448840,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1424448600,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41335460","duration":660,"bikeId":"12506","endDate":1424449440,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1424448780,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41335529","duration":1500,"bikeId":"3228","endDate":1424450460,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1424448960,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41335592","duration":540,"bikeId":"9375","endDate":1424449680,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1424449140,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"41335659","duration":180,"bikeId":"12452","endDate":1424449500,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1424449320,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41335730","duration":1200,"bikeId":"12143","endDate":1424450700,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424449500,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41335795","duration":1500,"bikeId":"8695","endDate":1424451180,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1424449680,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41335865","duration":720,"bikeId":"8983","endDate":1424450580,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1424449860,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41335937","duration":96060,"bikeId":"10109","endDate":1424546100,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1424450040,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41335996","duration":1620,"bikeId":"4561","endDate":1424451840,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1424450220,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41336072","duration":180,"bikeId":"11354","endDate":1424450580,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1424450400,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41336146","duration":540,"bikeId":"3888","endDate":1424451120,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1424450580,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"41336215","duration":300,"bikeId":"4452","endDate":1424451060,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1424450760,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41336280","duration":600,"bikeId":"9100","endDate":1424451480,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424450880,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41336354","duration":180,"bikeId":"13015","endDate":1424451300,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424451120,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41336395","duration":2100,"bikeId":"4005","endDate":1424453340,"endStationId":"684","endStationName":"Neville Gill Close, Wandsworth","startDate":1424451240,"startStationId":"684","startStationName":"Neville Gill Close, Wandsworth"}, +{"_id":"41336481","duration":480,"bikeId":"3014","endDate":1424451900,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1424451420,"startStationId":"280","startStationName":"Royal Avenue 2, Chelsea"}, +{"_id":"41336554","duration":600,"bikeId":"9868","endDate":1424452200,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424451600,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41336622","duration":1140,"bikeId":"895","endDate":1424452860,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1424451720,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"41336666","duration":720,"bikeId":"6006","endDate":1424452560,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424451840,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41336749","duration":420,"bikeId":"3605","endDate":1424452380,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1424451960,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"41336805","duration":960,"bikeId":"12564","endDate":1424452980,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1424452020,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41336887","duration":540,"bikeId":"591","endDate":1424452680,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424452140,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"41336942","duration":720,"bikeId":"6038","endDate":1424452920,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1424452200,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41337016","duration":1200,"bikeId":"10556","endDate":1424453520,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1424452320,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41337082","duration":1200,"bikeId":"10223","endDate":1424453640,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1424452440,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41337137","duration":480,"bikeId":"10874","endDate":1424453040,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1424452560,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41337188","duration":420,"bikeId":"7794","endDate":1424453040,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1424452620,"startStationId":"576","startStationName":"Alpha Grove, Millwall"}, +{"_id":"41337300","duration":660,"bikeId":"8981","endDate":1424453460,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1424452800,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41337341","duration":1020,"bikeId":"10008","endDate":1424453880,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1424452860,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"41337420","duration":540,"bikeId":"10979","endDate":1424453520,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424452980,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"41337511","duration":180,"bikeId":"9137","endDate":1424453280,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424453100,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41337564","duration":1620,"bikeId":"9803","endDate":1424454780,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424453160,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41337640","duration":600,"bikeId":"11156","endDate":1424453880,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424453280,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"41337668","duration":1260,"bikeId":"1980","endDate":1424454660,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424453400,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41337754","duration":420,"bikeId":"9987","endDate":1424453940,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1424453520,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41337814","duration":720,"bikeId":"1321","endDate":1424454360,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1424453640,"startStationId":"686","startStationName":"Beryl Road, Hammersmith"}, +{"_id":"41337886","duration":1920,"bikeId":"9763","endDate":1424455620,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1424453700,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"41337948","duration":540,"bikeId":"3378","endDate":1424454360,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424453820,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41338055","duration":900,"bikeId":"1297","endDate":1424454840,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1424453940,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41338086","duration":240,"bikeId":"10790","endDate":1424454240,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1424454000,"startStationId":"376","startStationName":"Millbank House, Pimlico"}, +{"_id":"41338188","duration":720,"bikeId":"11186","endDate":1424454840,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1424454120,"startStationId":"762","startStationName":"Storey's Gate, Westminster"}, +{"_id":"41338223","duration":960,"bikeId":"5142","endDate":1424455140,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1424454180,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"41338278","duration":2040,"bikeId":"10560","endDate":1424456340,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1424454300,"startStationId":"250","startStationName":"Royal Avenue 1, Chelsea"}, +{"_id":"41338394","duration":540,"bikeId":"8969","endDate":1424454960,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424454420,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41338442","duration":600,"bikeId":"10462","endDate":1424455080,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424454480,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41338530","duration":1140,"bikeId":"7105","endDate":1424455740,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1424454600,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41338550","duration":540,"bikeId":"11472","endDate":1424455200,"endStationId":"571","endStationName":"Westfield Southern Terrace ,Shepherd's Bush","startDate":1424454660,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"41338619","duration":720,"bikeId":"4298","endDate":1424455500,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424454780,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"41338707","duration":720,"bikeId":"157","endDate":1424455620,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1424454900,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"41338757","duration":660,"bikeId":"11025","endDate":1424455620,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1424454960,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"41338834","duration":240,"bikeId":"584","endDate":1424455320,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1424455080,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41338927","duration":840,"bikeId":"2527","endDate":1424456040,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424455200,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41338975","duration":1620,"bikeId":"9035","endDate":1424456940,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1424455320,"startStationId":"767","startStationName":"Santos Road, Wandsworth"}, +{"_id":"41339011","duration":480,"bikeId":"6718","endDate":1424455860,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1424455380,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"41339075","duration":1020,"bikeId":"2552","endDate":1424456520,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1424455500,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41339156","duration":600,"bikeId":"9950","endDate":1424456220,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424455620,"startStationId":"156","startStationName":"New Kent Road, Borough"}, +{"_id":"41339241","duration":1140,"bikeId":"7815","endDate":1424456880,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1424455740,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41339286","duration":420,"bikeId":"3627","endDate":1424456280,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1424455860,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41339344","duration":720,"bikeId":"12386","endDate":1424456700,"endStationId":"642","endStationName":"Fawcett Close, Battersea","startDate":1424455980,"startStationId":"766","startStationName":"Ram Street, Wandsworth"}, +{"_id":"41339415","duration":1740,"bikeId":"5734","endDate":1424457840,"endStationId":"13","endStationName":"Scala Street, Fitzrovia","startDate":1424456100,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41339514","duration":480,"bikeId":"10346","endDate":1424456700,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424456220,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41339575","duration":300,"bikeId":"10661","endDate":1424456640,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1424456340,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"41339596","duration":780,"bikeId":"1594","endDate":1424457180,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1424456400,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"41339712","duration":1440,"bikeId":"8263","endDate":1424457960,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1424456520,"startStationId":"519","startStationName":"Teviot Street, Poplar"}, +{"_id":"41339765","duration":1800,"bikeId":"1904","endDate":1424458440,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424456640,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41339843","duration":1320,"bikeId":"6371","endDate":1424458080,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1424456760,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41339913","duration":120,"bikeId":"12868","endDate":1424457000,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1424456880,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"41339965","duration":2040,"bikeId":"4495","endDate":1424459040,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1424457000,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41340024","duration":780,"bikeId":"641","endDate":1424457900,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1424457120,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41340112","duration":960,"bikeId":"8520","endDate":1424458200,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1424457240,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41340178","duration":120,"bikeId":"7661","endDate":1424457480,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1424457360,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41340221","duration":720,"bikeId":"2774","endDate":1424458200,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1424457480,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41340322","duration":540,"bikeId":"11127","endDate":1424458200,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1424457660,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41340379","duration":0,"bikeId":"5767","endDate":1424457780,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1424457780,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"41340445","duration":780,"bikeId":"6916","endDate":1424458680,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1424457900,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41340490","duration":480,"bikeId":"8161","endDate":1424458500,"endStationId":"700","endStationName":"Battersea Church Road, Battersea","startDate":1424458020,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41340572","duration":900,"bikeId":"8235","endDate":1424459100,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424458200,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41340632","duration":240,"bikeId":"8473","endDate":1424458620,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1424458380,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41340699","duration":360,"bikeId":"3653","endDate":1424458920,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1424458560,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"41340758","duration":480,"bikeId":"11198","endDate":1424459160,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1424458680,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41340845","duration":480,"bikeId":"4336","endDate":1424459400,"endStationId":"775","endStationName":"Little Brook Green, Brook Green","startDate":1424458920,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"41340895","duration":660,"bikeId":"2440","endDate":1424459700,"endStationId":"59","endStationName":"Rodney Street, Angel","startDate":1424459040,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"41340979","duration":360,"bikeId":"2747","endDate":1424459580,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1424459220,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41341050","duration":1020,"bikeId":"5014","endDate":1424460420,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1424459400,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"41341123","duration":2940,"bikeId":"936","endDate":1424462520,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1424459580,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"41341192","duration":540,"bikeId":"7613","endDate":1424460300,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1424459760,"startStationId":"652","startStationName":"Evesham Street, Avondale"}, +{"_id":"41341247","duration":540,"bikeId":"828","endDate":1424460480,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1424459940,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41341316","duration":960,"bikeId":"4316","endDate":1424461080,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1424460120,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41341376","duration":660,"bikeId":"10250","endDate":1424460960,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1424460300,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41341440","duration":1140,"bikeId":"9427","endDate":1424461680,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1424460540,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41341507","duration":720,"bikeId":"7824","endDate":1424461500,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1424460780,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41341571","duration":300,"bikeId":"3142","endDate":1424461260,"endStationId":"471","endStationName":"Hewison Street, Old Ford","startDate":1424460960,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"41341656","duration":840,"bikeId":"3610","endDate":1424462100,"endStationId":"212","endStationName":"Campden Hill Road, Notting Hill","startDate":1424461260,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41341706","duration":240,"bikeId":"247","endDate":1424461740,"endStationId":"97","endStationName":"Gloucester Road (North), Kensington","startDate":1424461500,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"41341783","duration":660,"bikeId":"4726","endDate":1424462400,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424461740,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41341835","duration":540,"bikeId":"12119","endDate":1424462460,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1424461920,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"41341904","duration":1980,"bikeId":"5684","endDate":1424464140,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1424462160,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"41341981","duration":1080,"bikeId":"4031","endDate":1424463540,"endStationId":"750","endStationName":"Culvert Road, Battersea","startDate":1424462460,"startStationId":"36","startStationName":"De Vere Gardens, Kensington"}, +{"_id":"41342031","duration":840,"bikeId":"11066","endDate":1424463600,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424462760,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41342107","duration":720,"bikeId":"9525","endDate":1424463780,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1424463060,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41342183","duration":120,"bikeId":"2801","endDate":1424463480,"endStationId":"504","endStationName":"St John's Park, Cubitt Town","startDate":1424463360,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"41342241","duration":1140,"bikeId":"2207","endDate":1424464800,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1424463660,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41342307","duration":360,"bikeId":"6038","endDate":1424464320,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1424463960,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"41342379","duration":480,"bikeId":"8442","endDate":1424464860,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1424464380,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"41342442","duration":2640,"bikeId":"9912","endDate":1424467320,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1424464680,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41342507","duration":120,"bikeId":"9263","endDate":1424465160,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424465040,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41342572","duration":480,"bikeId":"2386","endDate":1424465940,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1424465460,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41342656","duration":360,"bikeId":"7731","endDate":1424466240,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1424465880,"startStationId":"487","startStationName":"Canton Street, Poplar"}, +{"_id":"41342721","duration":480,"bikeId":"4911","endDate":1424466780,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1424466300,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41342790","duration":420,"bikeId":"12821","endDate":1424467140,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1424466720,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41342863","duration":360,"bikeId":"4048","endDate":1424467560,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424467200,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"41342925","duration":900,"bikeId":"3171","endDate":1424468580,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1424467680,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41342993","duration":360,"bikeId":"69","endDate":1424468580,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1424468220,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41343064","duration":900,"bikeId":"11713","endDate":1424469720,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1424468820,"startStationId":"205","startStationName":"New Road 2, Whitechapel"}, +{"_id":"41343137","duration":1140,"bikeId":"6642","endDate":1424470440,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1424469300,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"41343207","duration":360,"bikeId":"6085","endDate":1424470140,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1424469780,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41343281","duration":660,"bikeId":"11428","endDate":1424470920,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1424470260,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"41343348","duration":960,"bikeId":"31","endDate":1424471880,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424470920,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41343420","duration":1080,"bikeId":"8475","endDate":1424472540,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1424471460,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41343490","duration":720,"bikeId":"11372","endDate":1424472780,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424472060,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41343564","duration":360,"bikeId":"478","endDate":1424472960,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1424472600,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41343637","duration":180,"bikeId":"12763","endDate":1424473380,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1424473200,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41343713","duration":540,"bikeId":"10973","endDate":1424474340,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1424473800,"startStationId":"352","startStationName":"Vauxhall Street, Vauxhall"}, +{"_id":"41343770","duration":60,"bikeId":"12987","endDate":1424474280,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1424474220,"startStationId":"759","startStationName":"Broadley Terrace, Marylebone"}, +{"_id":"41343843","duration":540,"bikeId":"7456","endDate":1424475360,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1424474820,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"41343906","duration":1620,"bikeId":"3330","endDate":1424476860,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424475240,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41343987","duration":660,"bikeId":"3341","endDate":1424476560,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1424475900,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41344071","duration":300,"bikeId":"6463","endDate":1424477040,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1424476740,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41344138","duration":120,"bikeId":"729","endDate":1424477520,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1424477400,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41344213","duration":480,"bikeId":"7337","endDate":1424478660,"endStationId":"419","endStationName":"Chelsea Bridge, Pimlico","startDate":1424478180,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"41344288","duration":1200,"bikeId":"12448","endDate":1424480160,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424478960,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41344360","duration":1740,"bikeId":"8271","endDate":1424481540,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1424479800,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41344433","duration":540,"bikeId":"1578","endDate":1424481480,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1424480940,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"41344496","duration":2280,"bikeId":"2764","endDate":1424484000,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1424481720,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"41344577","duration":540,"bikeId":"10962","endDate":1424482980,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1424482440,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41344642","duration":4200,"bikeId":"2399","endDate":1424487720,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424483520,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41344707","duration":1740,"bikeId":"3092","endDate":1424486580,"endStationId":"696","endStationName":"Charing Cross Hospital, Hammersmith","startDate":1424484840,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41344776","duration":600,"bikeId":"7179","endDate":1424486640,"endStationId":"504","endStationName":"St John's Park, Cubitt Town","startDate":1424486040,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41344847","duration":720,"bikeId":"1930","endDate":1424488020,"endStationId":"663","endStationName":"Clarendon Road, Avondale","startDate":1424487300,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"41344920","duration":1920,"bikeId":"12804","endDate":1424490360,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1424488440,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"41344988","duration":1560,"bikeId":"1122","endDate":1424491800,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1424490240,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41345062","duration":720,"bikeId":"10263","endDate":1424493120,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1424492400,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"41345128","duration":360,"bikeId":"8931","endDate":1424494920,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1424494560,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41345195","duration":360,"bikeId":"3655","endDate":1424498520,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1424498160,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41345263","duration":420,"bikeId":"9938","endDate":1424501820,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424501400,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41345330","duration":960,"bikeId":"11860","endDate":1424505120,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1424504160,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"41345398","duration":300,"bikeId":"522","endDate":1424505660,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424505360,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41345462","duration":1440,"bikeId":"11804","endDate":1424507820,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1424506380,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"41345533","duration":660,"bikeId":"4484","endDate":1424507880,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1424507220,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41345609","duration":840,"bikeId":"10555","endDate":1424508720,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1424507880,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41345678","duration":1500,"bikeId":"12732","endDate":1424509860,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1424508360,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41345742","duration":240,"bikeId":"12932","endDate":1424509080,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1424508840,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"41345807","duration":780,"bikeId":"11803","endDate":1424510100,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1424509320,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41345870","duration":2280,"bikeId":"11121","endDate":1424512200,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1424509920,"startStationId":"604","startStationName":"St Martin's Close, Camden Town"}, +{"_id":"41345941","duration":540,"bikeId":"12244","endDate":1424511060,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1424510520,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"41346008","duration":540,"bikeId":"7070","endDate":1424511480,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1424510940,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"41346070","duration":420,"bikeId":"6957","endDate":1424511780,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1424511360,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"41346124","duration":660,"bikeId":"7506","endDate":1424512260,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1424511600,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"41346205","duration":300,"bikeId":"12005","endDate":1424512140,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1424511840,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41346271","duration":1020,"bikeId":"10170","endDate":1424513220,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424512200,"startStationId":"757","startStationName":"Harcourt Terrace, West Brompton"}, +{"_id":"41346356","duration":1560,"bikeId":"13066","endDate":1424514060,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424512500,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"41346409","duration":1200,"bikeId":"1016","endDate":1424513940,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1424512740,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41346486","duration":1080,"bikeId":"6752","endDate":1424514240,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1424513160,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41346554","duration":240,"bikeId":"11205","endDate":1424513760,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424513520,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41346619","duration":600,"bikeId":"3606","endDate":1424514360,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1424513760,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"41346700","duration":300,"bikeId":"8666","endDate":1424514360,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1424514060,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"41346759","duration":480,"bikeId":"6869","endDate":1424514720,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1424514240,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"41346828","duration":1500,"bikeId":"5041","endDate":1424516100,"endStationId":"560","endStationName":"Ladbroke Grove Central, Notting Hill","startDate":1424514600,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"41346883","duration":102900,"bikeId":"4772","endDate":1424617740,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1424514840,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41346958","duration":300,"bikeId":"2329","endDate":1424515380,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1424515080,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"41347042","duration":660,"bikeId":"7709","endDate":1424515920,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1424515260,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41347110","duration":1020,"bikeId":"11022","endDate":1424516460,"endStationId":"606","endStationName":"Addison Road, Holland Park","startDate":1424515440,"startStationId":"151","startStationName":"Chepstow Villas, Notting Hill"}, +{"_id":"41347177","duration":420,"bikeId":"5164","endDate":1424516040,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424515620,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"41347232","duration":2160,"bikeId":"12238","endDate":1424518020,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424515860,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"41347299","duration":600,"bikeId":"12212","endDate":1424516640,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1424516040,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41347371","duration":1740,"bikeId":"10543","endDate":1424518020,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1424516280,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41347444","duration":480,"bikeId":"11909","endDate":1424517000,"endStationId":"93","endStationName":"Cloudesley Road, Angel","startDate":1424516520,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41347511","duration":1080,"bikeId":"3274","endDate":1424517780,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424516700,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41347600","duration":360,"bikeId":"6268","endDate":1424517300,"endStationId":"453","endStationName":"Garnet Street, Shadwell","startDate":1424516940,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41347664","duration":360,"bikeId":"12335","endDate":1424517480,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1424517120,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41347727","duration":1080,"bikeId":"10075","endDate":1424518320,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1424517240,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41347807","duration":300,"bikeId":"7984","endDate":1424517720,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1424517420,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41347892","duration":420,"bikeId":"3675","endDate":1424518020,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1424517600,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41347959","duration":1020,"bikeId":"1144","endDate":1424518800,"endStationId":"665","endStationName":"Smugglers Way, Wandsworth","startDate":1424517780,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"41348004","duration":300,"bikeId":"4994","endDate":1424518200,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1424517900,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41348084","duration":480,"bikeId":"3302","endDate":1424518560,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1424518080,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"41348143","duration":540,"bikeId":"10648","endDate":1424518740,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1424518200,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41348219","duration":300,"bikeId":"11014","endDate":1424518740,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1424518440,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41348300","duration":1260,"bikeId":"9265","endDate":1424519880,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1424518620,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41348362","duration":660,"bikeId":"97","endDate":1424519400,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424518740,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41348432","duration":180,"bikeId":"368","endDate":1424519100,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1424518920,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41348490","duration":360,"bikeId":"11752","endDate":1424519460,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424519100,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41348570","duration":540,"bikeId":"6365","endDate":1424519820,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424519280,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41348617","duration":600,"bikeId":"9827","endDate":1424520000,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424519400,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41348702","duration":1440,"bikeId":"8070","endDate":1424521020,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1424519580,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41348767","duration":1440,"bikeId":"10890","endDate":1424521200,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1424519760,"startStationId":"708","startStationName":"Disraeli Road, Putney"}, +{"_id":"41348843","duration":1200,"bikeId":"2236","endDate":1424521140,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1424519940,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"41348917","duration":1500,"bikeId":"8902","endDate":1424521680,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1424520180,"startStationId":"451","startStationName":"Hermitage Court, Wapping"}, +{"_id":"41348966","duration":120,"bikeId":"12067","endDate":1424520420,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1424520300,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41349034","duration":720,"bikeId":"7861","endDate":1424521200,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1424520480,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41349124","duration":660,"bikeId":"12107","endDate":1424521320,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1424520660,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"41349164","duration":2400,"bikeId":"5434","endDate":1424523180,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1424520780,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41349256","duration":420,"bikeId":"12673","endDate":1424521440,"endStationId":"475","endStationName":"Lightermans Road, Millwall","startDate":1424521020,"startStationId":"474","startStationName":"Castalia Square, Cubitt Town"}, +{"_id":"41349319","duration":180,"bikeId":"13059","endDate":1424521380,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1424521200,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"41349392","duration":240,"bikeId":"652","endDate":1424521620,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1424521380,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41349484","duration":1080,"bikeId":"8878","endDate":1424522640,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1424521560,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41349528","duration":1200,"bikeId":"10631","endDate":1424522880,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1424521680,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41349627","duration":1860,"bikeId":"10423","endDate":1424523720,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1424521860,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"41349669","duration":1140,"bikeId":"11507","endDate":1424523180,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1424522040,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"41349747","duration":960,"bikeId":"10836","endDate":1424523120,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424522160,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41349802","duration":1140,"bikeId":"8152","endDate":1424523420,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1424522280,"startStationId":"677","startStationName":"Heath Road, Battersea"}, +{"_id":"41349871","duration":1140,"bikeId":"12678","endDate":1424523600,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1424522460,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"41349943","duration":1200,"bikeId":"7576","endDate":1424523840,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424522640,"startStationId":"534","startStationName":"Goldsmiths Row, Haggerston"}, +{"_id":"41350024","duration":780,"bikeId":"4231","endDate":1424523600,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1424522820,"startStationId":"176","startStationName":"Gloucester Terrace, Bayswater"}, +{"_id":"41350085","duration":5160,"bikeId":"5198","endDate":1424528160,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1424523000,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41350177","duration":420,"bikeId":"10772","endDate":1424523600,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1424523180,"startStationId":"76","startStationName":"Longford Street, Regent's Park"}, +{"_id":"41350223","duration":1380,"bikeId":"7004","endDate":1424524680,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1424523300,"startStationId":"470","startStationName":"Mostyn Grove, Bow"}, +{"_id":"41350278","duration":1440,"bikeId":"685","endDate":1424524860,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1424523420,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41350362","duration":2580,"bikeId":"3550","endDate":1424526180,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1424523600,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"41350449","duration":840,"bikeId":"9417","endDate":1424524620,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1424523780,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"41350495","duration":1380,"bikeId":"613","endDate":1424525340,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1424523960,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41350584","duration":960,"bikeId":"740","endDate":1424525100,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1424524140,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"41350662","duration":420,"bikeId":"209","endDate":1424524740,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424524320,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41350722","duration":14040,"bikeId":"1518","endDate":1424538480,"endStationId":"705","endStationName":"Upper Richmond Road, East Putney","startDate":1424524440,"startStationId":"771","startStationName":"Rifle Place, Avondale"}, +{"_id":"41350782","duration":540,"bikeId":"1364","endDate":1424525100,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424524560,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41350859","duration":540,"bikeId":"8431","endDate":1424525220,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1424524680,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41350944","duration":600,"bikeId":"10805","endDate":1424525460,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424524860,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41350975","duration":840,"bikeId":"9741","endDate":1424525820,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1424524980,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41351088","duration":1560,"bikeId":"4353","endDate":1424526720,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424525160,"startStationId":"744","startStationName":"Ingrave Street, Battersea"}, +{"_id":"41351146","duration":2100,"bikeId":"1413","endDate":1424527440,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1424525340,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"41351195","duration":1140,"bikeId":"3771","endDate":1424526600,"endStationId":"721","endStationName":"Wendon Street, Old Ford","startDate":1424525460,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41351282","duration":480,"bikeId":"8103","endDate":1424526120,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1424525640,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"41351339","duration":720,"bikeId":"8570","endDate":1424526480,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1424525760,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"41351395","duration":900,"bikeId":"11712","endDate":1424526780,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424525880,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"41351477","duration":3300,"bikeId":"181","endDate":1424529300,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1424526000,"startStationId":"765","startStationName":"Ranelagh Gardens, Fulham"}, +{"_id":"41351552","duration":900,"bikeId":"1032","endDate":1424527080,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1424526180,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41351636","duration":1500,"bikeId":"10615","endDate":1424527860,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424526360,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41351694","duration":1320,"bikeId":"425","endDate":1424527800,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1424526480,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41351762","duration":600,"bikeId":"12389","endDate":1424527260,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1424526660,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41351839","duration":480,"bikeId":"10705","endDate":1424527320,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1424526840,"startStationId":"371","startStationName":"King Edward Walk, Waterloo"}, +{"_id":"41351904","duration":1500,"bikeId":"4016","endDate":1424528460,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1424526960,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41351977","duration":3120,"bikeId":"10315","endDate":1424530200,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424527080,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"41352036","duration":1800,"bikeId":"3035","endDate":1424529000,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1424527200,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41352137","duration":1800,"bikeId":"3824","endDate":1424529180,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1424527380,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"41352195","duration":1980,"bikeId":"12137","endDate":1424529480,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1424527500,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41352275","duration":1500,"bikeId":"11022","endDate":1424529120,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1424527620,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41352336","duration":540,"bikeId":"8173","endDate":1424528340,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1424527800,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"41352417","duration":660,"bikeId":"2899","endDate":1424528640,"endStationId":"463","endStationName":"Thurtle Road, Haggerston","startDate":1424527980,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41352492","duration":1140,"bikeId":"13059","endDate":1424529240,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1424528100,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41352565","duration":1020,"bikeId":"6412","endDate":1424529300,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1424528280,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"41352651","duration":720,"bikeId":"12271","endDate":1424529180,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1424528460,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"41352699","duration":1500,"bikeId":"6918","endDate":1424530080,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1424528580,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41352746","duration":1200,"bikeId":"3484","endDate":1424529900,"endStationId":"36","endStationName":"De Vere Gardens, Kensington","startDate":1424528700,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"41352814","duration":300,"bikeId":"1200","endDate":1424529120,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424528820,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41352880","duration":1500,"bikeId":"7037","endDate":1424530500,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1424529000,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"41352969","duration":480,"bikeId":"10602","endDate":1424529660,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1424529180,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41353055","duration":1680,"bikeId":"2903","endDate":1424530980,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1424529300,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"41353109","duration":1440,"bikeId":"7991","endDate":1424530860,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1424529420,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41353169","duration":3060,"bikeId":"6602","endDate":1424532600,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1424529540,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"41353253","duration":540,"bikeId":"3677","endDate":1424530260,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1424529720,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41353319","duration":3420,"bikeId":"9341","endDate":1424533260,"endStationId":"756","endStationName":"Prince of Wales Drive, Battersea Park","startDate":1424529840,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"41353402","duration":3060,"bikeId":"2841","endDate":1424533080,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1424530020,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41353473","duration":2340,"bikeId":"2384","endDate":1424532540,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1424530200,"startStationId":"394","startStationName":"Aberdeen Place, St. John's Wood"}, +{"_id":"41353545","duration":1200,"bikeId":"1881","endDate":1424531580,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1424530380,"startStationId":"137","startStationName":"Bourne Street, Belgravia"}, +{"_id":"41353618","duration":0,"bikeId":"1341","endDate":1424530560,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1424530560,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41353706","duration":300,"bikeId":"5896","endDate":1424531040,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1424530740,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"41353762","duration":1140,"bikeId":"6034","endDate":1424532000,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424530860,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41353820","duration":12420,"bikeId":"4648","endDate":1424543460,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1424531040,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41353894","duration":660,"bikeId":"11877","endDate":1424531820,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1424531160,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41353960","duration":1140,"bikeId":"7197","endDate":1424532480,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1424531340,"startStationId":"647","startStationName":"Richmond Way, Shepherd's Bush"}, +{"_id":"41354032","duration":2580,"bikeId":"3214","endDate":1424534100,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424531520,"startStationId":"621","startStationName":"Wandsworth Town Station, Wandsworth"}, +{"_id":"41354096","duration":660,"bikeId":"5519","endDate":1424532360,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1424531700,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"41354172","duration":1500,"bikeId":"10752","endDate":1424533320,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1424531820,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"41354228","duration":2580,"bikeId":"11346","endDate":1424534520,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1424531940,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41354307","duration":5880,"bikeId":"9538","endDate":1424538000,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1424532120,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41354378","duration":1320,"bikeId":"97","endDate":1424533620,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1424532300,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41354441","duration":1740,"bikeId":"4415","endDate":1424534220,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1424532480,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41354515","duration":3600,"bikeId":"1029","endDate":1424536260,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1424532660,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41354584","duration":1200,"bikeId":"3942","endDate":1424533980,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1424532780,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"41354685","duration":240,"bikeId":"2372","endDate":1424533200,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1424532960,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"41354748","duration":120,"bikeId":"11043","endDate":1424533260,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1424533140,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41354805","duration":660,"bikeId":"613","endDate":1424533920,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424533260,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41354890","duration":1080,"bikeId":"7546","endDate":1424534520,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424533440,"startStationId":"592","startStationName":"Bishop's Bridge Road East, Bayswater"}, +{"_id":"41354947","duration":4200,"bikeId":"2971","endDate":1424537760,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424533560,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"41355017","duration":3300,"bikeId":"7900","endDate":1424536980,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1424533680,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41355079","duration":2820,"bikeId":"4628","endDate":1424536680,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1424533860,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"41355151","duration":1920,"bikeId":"3416","endDate":1424535900,"endStationId":"280","endStationName":"Royal Avenue 2, Chelsea","startDate":1424533980,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41355222","duration":3780,"bikeId":"90","endDate":1424537940,"endStationId":"125","endStationName":"Borough High Street, The Borough","startDate":1424534160,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41355292","duration":1440,"bikeId":"750","endDate":1424535780,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1424534340,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41355366","duration":420,"bikeId":"1967","endDate":1424534940,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424534520,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41355447","duration":1200,"bikeId":"9432","endDate":1424535840,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1424534640,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"41355530","duration":1500,"bikeId":"9028","endDate":1424536320,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1424534820,"startStationId":"138","startStationName":"Green Street, Mayfair"}, +{"_id":"41355591","duration":1200,"bikeId":"6827","endDate":1424536140,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1424534940,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"41355639","duration":1860,"bikeId":"8471","endDate":1424536920,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1424535060,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41355704","duration":1500,"bikeId":"11291","endDate":1424536680,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1424535180,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41355777","duration":420,"bikeId":"8403","endDate":1424535780,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424535360,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41355818","duration":660,"bikeId":"4159","endDate":1424536140,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1424535480,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"41355908","duration":660,"bikeId":"4118","endDate":1424536320,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1424535660,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41355974","duration":1980,"bikeId":"10068","endDate":1424537820,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424535840,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41356043","duration":720,"bikeId":"8394","endDate":1424536740,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1424536020,"startStationId":"423","startStationName":"Eaton Square (South), Belgravia"}, +{"_id":"41356136","duration":420,"bikeId":"5671","endDate":1424536620,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1424536200,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41356177","duration":840,"bikeId":"10458","endDate":1424537160,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424536320,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"41356260","duration":1440,"bikeId":"6825","endDate":1424537880,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1424536440,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41356320","duration":1320,"bikeId":"3305","endDate":1424537940,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424536620,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41356401","duration":1020,"bikeId":"5650","endDate":1424537820,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1424536800,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"41356469","duration":1740,"bikeId":"12158","endDate":1424538660,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1424536920,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41356539","duration":240,"bikeId":"9978","endDate":1424537340,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1424537100,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41356594","duration":180,"bikeId":"3101","endDate":1424537400,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1424537220,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41356656","duration":2820,"bikeId":"5740","endDate":1424540160,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1424537340,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41356733","duration":1020,"bikeId":"6341","endDate":1424538540,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424537520,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41356816","duration":300,"bikeId":"3330","endDate":1424538000,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1424537700,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41356890","duration":240,"bikeId":"9405","endDate":1424538120,"endStationId":"161","endStationName":"Guildhouse Street, Victoria","startDate":1424537880,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"41356947","duration":360,"bikeId":"12109","endDate":1424538360,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1424538000,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41357014","duration":2460,"bikeId":"4847","endDate":1424540640,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424538180,"startStationId":"521","startStationName":"Driffield Road, Old Ford"}, +{"_id":"41357091","duration":1020,"bikeId":"2060","endDate":1424539380,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1424538360,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41357173","duration":600,"bikeId":"9225","endDate":1424539140,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1424538540,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41357250","duration":600,"bikeId":"12866","endDate":1424539320,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1424538720,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"41357306","duration":3900,"bikeId":"672","endDate":1424542740,"endStationId":"222","endStationName":"Knightsbridge, Hyde Park","startDate":1424538840,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41357370","duration":600,"bikeId":"1318","endDate":1424539620,"endStationId":"435","endStationName":"Kennington Station, Kennington","startDate":1424539020,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41357432","duration":1440,"bikeId":"1188","endDate":1424540640,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1424539200,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"41357510","duration":480,"bikeId":"3922","endDate":1424539800,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1424539320,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41357585","duration":1200,"bikeId":"2852","endDate":1424540700,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424539500,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41357648","duration":420,"bikeId":"390","endDate":1424540100,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1424539680,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41357715","duration":1200,"bikeId":"8287","endDate":1424541060,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1424539860,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41357780","duration":1320,"bikeId":"13050","endDate":1424541300,"endStationId":"632","endStationName":"Sheepcote Lane, Battersea","startDate":1424539980,"startStationId":"632","startStationName":"Sheepcote Lane, Battersea"}, +{"_id":"41357853","duration":1560,"bikeId":"7067","endDate":1424541780,"endStationId":"325","endStationName":"St. Martin's Street, West End","startDate":1424540220,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41357932","duration":960,"bikeId":"9269","endDate":1424541360,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1424540400,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41357991","duration":3000,"bikeId":"11900","endDate":1424543520,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1424540520,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"41358064","duration":660,"bikeId":"2050","endDate":1424541420,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1424540760,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41358125","duration":1080,"bikeId":"5698","endDate":1424542080,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1424541000,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"41358193","duration":600,"bikeId":"7457","endDate":1424541780,"endStationId":"623","endStationName":"Nantes Close, Wandsworth","startDate":1424541180,"startStationId":"731","startStationName":"Michael Road, Walham Green"}, +{"_id":"41358274","duration":480,"bikeId":"3166","endDate":1424541900,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424541420,"startStationId":"166","startStationName":"Seville Street, Knightsbridge"}, +{"_id":"41358332","duration":2820,"bikeId":"11042","endDate":1424544540,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1424541720,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41358377","duration":300,"bikeId":"5588","endDate":1424542200,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1424541900,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"41358458","duration":540,"bikeId":"3245","endDate":1424542620,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1424542080,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41358535","duration":600,"bikeId":"5744","endDate":1424542980,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1424542380,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"41358574","duration":1140,"bikeId":"7136","endDate":1424543700,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1424542560,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41358659","duration":900,"bikeId":"6053","endDate":1424543700,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1424542800,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"41358736","duration":960,"bikeId":"11351","endDate":1424544000,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424543040,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41358791","duration":1200,"bikeId":"5945","endDate":1424544540,"endStationId":"460","endStationName":"Burdett Road, Mile End","startDate":1424543340,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41358866","duration":720,"bikeId":"1404","endDate":1424544360,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1424543640,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"41358933","duration":600,"bikeId":"12467","endDate":1424544540,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424543940,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41358991","duration":660,"bikeId":"2229","endDate":1424544840,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1424544180,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41359078","duration":240,"bikeId":"5141","endDate":1424544720,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424544480,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41359138","duration":660,"bikeId":"9391","endDate":1424545440,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1424544780,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41359198","duration":780,"bikeId":"3260","endDate":1424545800,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1424545020,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41359258","duration":960,"bikeId":"11366","endDate":1424546400,"endStationId":"612","endStationName":"Wandsworth Rd, Isley Court, Wandsworth Road","startDate":1424545440,"startStationId":"764","startStationName":"St. John's Road, Clapham Junction"}, +{"_id":"41359326","duration":360,"bikeId":"1678","endDate":1424546100,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1424545740,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41359393","duration":480,"bikeId":"185","endDate":1424546520,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1424546040,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41359473","duration":1560,"bikeId":"7295","endDate":1424548020,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1424546460,"startStationId":"395","startStationName":"Cadogan Gardens, Sloane Square"}, +{"_id":"41359539","duration":960,"bikeId":"10934","endDate":1424547840,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424546880,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41359599","duration":480,"bikeId":"2738","endDate":1424547720,"endStationId":"588","endStationName":"Hoxton Street, Hoxton","startDate":1424547240,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41359676","duration":660,"bikeId":"6795","endDate":1424548260,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424547600,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41359742","duration":360,"bikeId":"9626","endDate":1424548260,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1424547900,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"41359814","duration":720,"bikeId":"3407","endDate":1424549040,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1424548320,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"41359882","duration":1440,"bikeId":"5770","endDate":1424550180,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1424548740,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41359942","duration":3540,"bikeId":"1638","endDate":1424552580,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1424549040,"startStationId":"746","startStationName":"Lots Road, West Chelsea"}, +{"_id":"41360021","duration":600,"bikeId":"3238","endDate":1424550000,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424549400,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"41360095","duration":1740,"bikeId":"8341","endDate":1424551560,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424549820,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41360151","duration":3900,"bikeId":"11772","endDate":1424554080,"endStationId":"481","endStationName":"Saunders Ness Road, Cubitt Town","startDate":1424550180,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"41360224","duration":300,"bikeId":"4689","endDate":1424550900,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1424550600,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41360299","duration":540,"bikeId":"5706","endDate":1424551680,"endStationId":"62","endStationName":"Cotton Garden Estate, Kennington","startDate":1424551140,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"41360355","duration":420,"bikeId":"10114","endDate":1424551980,"endStationId":"642","endStationName":"Fawcett Close, Battersea","startDate":1424551560,"startStationId":"683","startStationName":"Dorothy Road, Clapham Junction"}, +{"_id":"41360428","duration":1080,"bikeId":"10295","endDate":1424553120,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1424552040,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"41360488","duration":960,"bikeId":"11475","endDate":1424553540,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1424552580,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41360561","duration":840,"bikeId":"103","endDate":1424553900,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1424553060,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41360630","duration":1140,"bikeId":"6379","endDate":1424554920,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1424553780,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"41360700","duration":960,"bikeId":"11868","endDate":1424555220,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424554260,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41360767","duration":240,"bikeId":"11982","endDate":1424555100,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1424554860,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"41360830","duration":180,"bikeId":"7640","endDate":1424555580,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1424555400,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"41360903","duration":240,"bikeId":"7119","endDate":1424556240,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1424556000,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41360975","duration":1200,"bikeId":"6711","endDate":1424557920,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1424556720,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41361047","duration":300,"bikeId":"5593","endDate":1424557680,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1424557380,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41361116","duration":3900,"bikeId":"10614","endDate":1424561880,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1424557980,"startStationId":"337","startStationName":"Pembridge Villas, Notting Hill"}, +{"_id":"41361180","duration":480,"bikeId":"5092","endDate":1424559060,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1424558580,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"41361251","duration":600,"bikeId":"11258","endDate":1424559780,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1424559180,"startStationId":"469","startStationName":"Lindfield Street, Poplar"}, +{"_id":"41361324","duration":1020,"bikeId":"2906","endDate":1424560980,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1424559960,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41361391","duration":540,"bikeId":"4091","endDate":1424561340,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1424560800,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"41361453","duration":540,"bikeId":"642","endDate":1424561940,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1424561400,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"41361525","duration":720,"bikeId":"9757","endDate":1424562900,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1424562180,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41361591","duration":120,"bikeId":"3213","endDate":1424563200,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1424563080,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"41361657","duration":840,"bikeId":"3171","endDate":1424564760,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1424563920,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41361722","duration":660,"bikeId":"13059","endDate":1424565420,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1424564760,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"41361792","duration":1680,"bikeId":"8511","endDate":1424567040,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1424565360,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41361855","duration":1740,"bikeId":"7091","endDate":1424567700,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1424565960,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41361921","duration":136320,"bikeId":"1898","endDate":1424702820,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1424566500,"startStationId":"399","startStationName":"Brick Lane Market, Shoreditch"}, +{"_id":"41361984","duration":660,"bikeId":"11977","endDate":1424568060,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1424567400,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41362058","duration":900,"bikeId":"2005","endDate":1424569440,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1424568540,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41362127","duration":840,"bikeId":"6466","endDate":1424570280,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424569440,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41362195","duration":240,"bikeId":"11550","endDate":1424570820,"endStationId":"370","endStationName":"Paddington Green, Paddington","startDate":1424570580,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"41362264","duration":660,"bikeId":"10868","endDate":1424572680,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1424572020,"startStationId":"250","startStationName":"Royal Avenue 1, Chelsea"}, +{"_id":"41362330","duration":1200,"bikeId":"6072","endDate":1424574480,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1424573280,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"41362398","duration":300,"bikeId":"3550","endDate":1424574900,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1424574600,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41362461","duration":540,"bikeId":"10057","endDate":1424576220,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1424575680,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"41362534","duration":120,"bikeId":"8894","endDate":1424577840,"endStationId":"590","endStationName":"Greenberry Street, St.John's Wood","startDate":1424577720,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"41362603","duration":120,"bikeId":"2515","endDate":1424580480,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1424580360,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"41362671","duration":900,"bikeId":"1640","endDate":1424584800,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424583900,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"41362741","duration":2940,"bikeId":"11193","endDate":1424589300,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1424586360,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41362812","duration":840,"bikeId":"5794","endDate":1424589900,"endStationId":"328","endStationName":"New North Road 2, Hoxton","startDate":1424589060,"startStationId":"517","startStationName":"Ford Road, Old Ford"}, +{"_id":"41362878","duration":720,"bikeId":"3317","endDate":1424591940,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424591220,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"41362945","duration":240,"bikeId":"808","endDate":1424592960,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1424592720,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41363019","duration":1200,"bikeId":"2345","endDate":1424595000,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1424593800,"startStationId":"614","startStationName":"Bradmead, Nine Elms"}, +{"_id":"41363087","duration":1260,"bikeId":"5191","endDate":1424595900,"endStationId":"492","endStationName":"The Green Bridge, Mile End","startDate":1424594640,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41363150","duration":240,"bikeId":"6820","endDate":1424595420,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1424595180,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41363219","duration":300,"bikeId":"3547","endDate":1424596140,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1424595840,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"41363279","duration":1140,"bikeId":"5470","endDate":1424597520,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424596380,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41363347","duration":960,"bikeId":"8709","endDate":1424597940,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1424596980,"startStationId":"402","startStationName":"Penfold Street, Marylebone"}, +{"_id":"41363436","duration":180,"bikeId":"233","endDate":1424597580,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1424597400,"startStationId":"212","startStationName":"Campden Hill Road, Notting Hill"}, +{"_id":"41363485","duration":1740,"bikeId":"11327","endDate":1424599380,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1424597640,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41363570","duration":300,"bikeId":"702","endDate":1424598240,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1424597940,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"41363623","duration":600,"bikeId":"2384","endDate":1424598840,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1424598240,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41363701","duration":960,"bikeId":"456","endDate":1424599620,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1424598660,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"41363775","duration":540,"bikeId":"11740","endDate":1424599500,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1424598960,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"41363836","duration":720,"bikeId":"6271","endDate":1424599980,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1424599260,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"41363902","duration":600,"bikeId":"10584","endDate":1424600160,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1424599560,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41363979","duration":600,"bikeId":"4990","endDate":1424600520,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1424599920,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41364052","duration":900,"bikeId":"2232","endDate":1424601060,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1424600160,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"41364113","duration":2040,"bikeId":"6608","endDate":1424602620,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424600580,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"41364175","duration":240,"bikeId":"2513","endDate":1424601060,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1424600820,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41364262","duration":1500,"bikeId":"1959","endDate":1424602560,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424601060,"startStationId":"628","startStationName":"William Morris Way, Sands End"}, +{"_id":"41364333","duration":600,"bikeId":"1332","endDate":1424601900,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424601300,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41364400","duration":480,"bikeId":"6869","endDate":1424602020,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424601540,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41364459","duration":840,"bikeId":"12922","endDate":1424602620,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1424601780,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"41364530","duration":780,"bikeId":"10420","endDate":1424602740,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424601960,"startStationId":"349","startStationName":"St. George Street, Mayfair"}, +{"_id":"41364602","duration":480,"bikeId":"11558","endDate":1424602740,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424602260,"startStationId":"156","startStationName":"New Kent Road, Borough"}, +{"_id":"41364672","duration":240,"bikeId":"1653","endDate":1424602740,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1424602500,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41364747","duration":5820,"bikeId":"1869","endDate":1424608500,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1424602680,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"41364814","duration":3540,"bikeId":"6593","endDate":1424606460,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424602920,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41364882","duration":3180,"bikeId":"8498","endDate":1424606340,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424603160,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"41364964","duration":840,"bikeId":"5118","endDate":1424604240,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424603400,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"41365016","duration":1620,"bikeId":"1404","endDate":1424605200,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1424603580,"startStationId":"687","startStationName":"Maclise Road, Olympia"}, +{"_id":"41365084","duration":2340,"bikeId":"7587","endDate":1424606100,"endStationId":"685","endStationName":"Osiers Road, Wandsworth","startDate":1424603760,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41365161","duration":1080,"bikeId":"8666","endDate":1424605080,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1424604000,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41365219","duration":840,"bikeId":"11994","endDate":1424605020,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1424604180,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41365273","duration":600,"bikeId":"11913","endDate":1424604960,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1424604360,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"41365367","duration":240,"bikeId":"67","endDate":1424604840,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1424604600,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41365422","duration":960,"bikeId":"9512","endDate":1424605740,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1424604780,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"41365514","duration":240,"bikeId":"5840","endDate":1424605260,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1424605020,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"41365583","duration":540,"bikeId":"8261","endDate":1424605740,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424605200,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41365624","duration":3060,"bikeId":"3297","endDate":1424608440,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1424605380,"startStationId":"668","startStationName":"Ravenscourt Park Station, Hammersmith"}, +{"_id":"41365702","duration":6120,"bikeId":"9156","endDate":1424611680,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1424605560,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"41365778","duration":1380,"bikeId":"315","endDate":1424607120,"endStationId":"384","endStationName":"Marloes Road, Kensington","startDate":1424605740,"startStationId":"529","startStationName":"Manresa Road, Chelsea"}, +{"_id":"41365843","duration":600,"bikeId":"12180","endDate":1424606520,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1424605920,"startStationId":"527","startStationName":"Hansard Mews, Shepherds Bush"}, +{"_id":"41365902","duration":420,"bikeId":"4409","endDate":1424606520,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1424606100,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41365965","duration":1740,"bikeId":"2299","endDate":1424608080,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1424606340,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"41366067","duration":360,"bikeId":"8511","endDate":1424606880,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1424606520,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41366108","duration":3840,"bikeId":"6497","endDate":1424610480,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1424606640,"startStationId":"248","startStationName":"Triangle Car Park, Hyde Park"}, +{"_id":"41366204","duration":300,"bikeId":"6200","endDate":1424607180,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1424606880,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"41366256","duration":840,"bikeId":"8612","endDate":1424607840,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1424607000,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41366321","duration":1740,"bikeId":"10616","endDate":1424608980,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1424607240,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41366422","duration":660,"bikeId":"9362","endDate":1424608080,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1424607420,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41366488","duration":600,"bikeId":"5401","endDate":1424608140,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1424607540,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"41366562","duration":300,"bikeId":"10991","endDate":1424608020,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1424607720,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"41366606","duration":180,"bikeId":"838","endDate":1424608080,"endStationId":"485","endStationName":"Old Ford Road, Bethnal Green","startDate":1424607900,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41366696","duration":1440,"bikeId":"686","endDate":1424609580,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1424608140,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41366757","duration":1080,"bikeId":"4685","endDate":1424609400,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424608320,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41366833","duration":1200,"bikeId":"391","endDate":1424609700,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1424608500,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41366897","duration":1140,"bikeId":"6334","endDate":1424609760,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1424608620,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41366977","duration":240,"bikeId":"2373","endDate":1424609040,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1424608800,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"41367036","duration":720,"bikeId":"2348","endDate":1424609640,"endStationId":"725","endStationName":"Thessaly Road North, Nine Elms","startDate":1424608920,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"41367100","duration":780,"bikeId":"5317","endDate":1424609940,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1424609160,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"41367188","duration":180,"bikeId":"10136","endDate":1424609520,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1424609340,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41367251","duration":1920,"bikeId":"12660","endDate":1424611440,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1424609520,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"41367313","duration":1140,"bikeId":"8556","endDate":1424610840,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1424609700,"startStationId":"172","startStationName":"Sumner Place, South Kensington"}, +{"_id":"41367385","duration":720,"bikeId":"10538","endDate":1424610600,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1424609880,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"41367460","duration":480,"bikeId":"4615","endDate":1424610600,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1424610120,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41367519","duration":900,"bikeId":"1130","endDate":1424611200,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1424610300,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41367616","duration":300,"bikeId":"12132","endDate":1424610840,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424610540,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41367674","duration":960,"bikeId":"13012","endDate":1424611620,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1424610660,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"41367737","duration":240,"bikeId":"10110","endDate":1424611140,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1424610900,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"41367811","duration":1440,"bikeId":"1053","endDate":1424612580,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1424611140,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41367868","duration":480,"bikeId":"1357","endDate":1424611800,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1424611320,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41367954","duration":360,"bikeId":"9018","endDate":1424611920,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1424611560,"startStationId":"757","startStationName":"Harcourt Terrace, West Brompton"}, +{"_id":"41368023","duration":240,"bikeId":"12244","endDate":1424612040,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1424611800,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"41368081","duration":3960,"bikeId":"10836","endDate":1424615880,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1424611920,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41368153","duration":600,"bikeId":"3470","endDate":1424612700,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1424612100,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"41368212","duration":120,"bikeId":"12760","endDate":1424612460,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1424612340,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41368277","duration":1440,"bikeId":"10291","endDate":1424613960,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1424612520,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41368334","duration":900,"bikeId":"5106","endDate":1424613600,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1424612700,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41368405","duration":840,"bikeId":"11847","endDate":1424613720,"endStationId":"713","endStationName":"Hawley Crescent, Camden Town","startDate":1424612880,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41368481","duration":360,"bikeId":"10623","endDate":1424613480,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1424613120,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41368551","duration":540,"bikeId":"10188","endDate":1424613900,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1424613360,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41368604","duration":600,"bikeId":"12896","endDate":1424614080,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1424613480,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41368682","duration":2280,"bikeId":"7788","endDate":1424615880,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424613600,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41368732","duration":240,"bikeId":"4631","endDate":1424614080,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1424613840,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"41368804","duration":840,"bikeId":"11297","endDate":1424614920,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1424614080,"startStationId":"263","startStationName":"St. Mary Axe, Aldgate"}, +{"_id":"41368881","duration":780,"bikeId":"4749","endDate":1424615100,"endStationId":"151","endStationName":"Chepstow Villas, Notting Hill","startDate":1424614320,"startStationId":"238","startStationName":"Frampton Street, Paddington"}, +{"_id":"41368950","duration":420,"bikeId":"9953","endDate":1424614980,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1424614560,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41369009","duration":1800,"bikeId":"5197","endDate":1424616600,"endStationId":"164","endStationName":"Cleveland Gardens, Bayswater","startDate":1424614800,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41369088","duration":660,"bikeId":"7293","endDate":1424615820,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1424615160,"startStationId":"542","startStationName":"Salmon Lane, Limehouse"}, +{"_id":"41369161","duration":720,"bikeId":"7093","endDate":1424616120,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1424615400,"startStationId":"604","startStationName":"St Martin's Close, Camden Town"}, +{"_id":"41369231","duration":360,"bikeId":"2269","endDate":1424616180,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1424615820,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41369300","duration":660,"bikeId":"7547","endDate":1424617080,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1424616420,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41369365","duration":1320,"bikeId":"7285","endDate":1424618340,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1424617020,"startStationId":"103","startStationName":"Vicarage Gate, Kensington"}, +{"_id":"41369430","duration":540,"bikeId":"9675","endDate":1424618400,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1424617860,"startStationId":"572","startStationName":"Greenland Road, Camden Town"}, +{"_id":"41369504","duration":720,"bikeId":"5708","endDate":1424619480,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1424618760,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"41369573","duration":360,"bikeId":"8982","endDate":1424620260,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1424619900,"startStationId":"247","startStationName":"St. John's Wood Church, Regent's Park"}, +{"_id":"41369646","duration":1320,"bikeId":"11473","endDate":1424622180,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1424620860,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41369722","duration":420,"bikeId":"9918","endDate":1424622300,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1424621880,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41369786","duration":660,"bikeId":"4384","endDate":1424623440,"endStationId":"690","endStationName":"Stanley Grove, Battersea","startDate":1424622780,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"41369850","duration":2040,"bikeId":"6008","endDate":1424625780,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424623740,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41369915","duration":180,"bikeId":"7179","endDate":1424624880,"endStationId":"447","endStationName":"Jubilee Crescent, Cubitt Town","startDate":1424624700,"startStationId":"504","startStationName":"St John's Park, Cubitt Town"}, +{"_id":"41369985","duration":300,"bikeId":"11176","endDate":1424626200,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1424625900,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41370052","duration":1620,"bikeId":"12340","endDate":1424628840,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1424627220,"startStationId":"721","startStationName":"Wendon Street, Old Ford"}, +{"_id":"41370121","duration":840,"bikeId":"773","endDate":1424629080,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1424628240,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41370192","duration":3540,"bikeId":"12753","endDate":1424632740,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1424629200,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41370258","duration":720,"bikeId":"9018","endDate":1424630820,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1424630100,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41370328","duration":300,"bikeId":"8774","endDate":1424631300,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1424631000,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"41370388","duration":1500,"bikeId":"4793","endDate":1424633400,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1424631900,"startStationId":"699","startStationName":"Belford House, Haggerston"}, +{"_id":"41370459","duration":300,"bikeId":"13073","endDate":1424633100,"endStationId":"7","endStationName":"Charlbert Street, St. John's Wood","startDate":1424632800,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41370530","duration":420,"bikeId":"514","endDate":1424634000,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424633580,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41370591","duration":660,"bikeId":"8774","endDate":1424634960,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1424634300,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41370664","duration":900,"bikeId":"1031","endDate":1424636040,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1424635140,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41370727","duration":240,"bikeId":"11293","endDate":1424636520,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424636280,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41370795","duration":480,"bikeId":"11887","endDate":1424638140,"endStationId":"77","endStationName":"Russell Square Station, Bloomsbury","startDate":1424637660,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41370858","duration":360,"bikeId":"12765","endDate":1424639220,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1424638860,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"41370927","duration":420,"bikeId":"5490","endDate":1424640780,"endStationId":"435","endStationName":"Kennington Station, Kennington","startDate":1424640360,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41370994","duration":480,"bikeId":"12283","endDate":1424642220,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1424641740,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"41371060","duration":540,"bikeId":"6936","endDate":1424643600,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1424643060,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41371126","duration":1260,"bikeId":"9137","endDate":1424645760,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1424644500,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"41371195","duration":6480,"bikeId":"11490","endDate":1424652540,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1424646060,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41371260","duration":540,"bikeId":"4515","endDate":1424648340,"endStationId":"521","endStationName":"Driffield Road, Old Ford","startDate":1424647800,"startStationId":"577","startStationName":"Globe Town Market, Bethnal Green"}, +{"_id":"41371328","duration":2700,"bikeId":"8928","endDate":1424652060,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1424649360,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41371396","duration":1680,"bikeId":"11868","endDate":1424653440,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1424651760,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"41371462","duration":480,"bikeId":"2639","endDate":1424655660,"endStationId":"714","endStationName":"Stewart's Road, Nine Elms","startDate":1424655180,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41371532","duration":660,"bikeId":"5756","endDate":1424667240,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1424666580,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41371596","duration":720,"bikeId":"12932","endDate":1424671020,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1424670300,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"41371662","duration":780,"bikeId":"12398","endDate":1424672400,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1424671620,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41371728","duration":420,"bikeId":"12907","endDate":1424672820,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1424672400,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"41371790","duration":240,"bikeId":"8253","endDate":1424673180,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1424672940,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"41371862","duration":300,"bikeId":"12370","endDate":1424673720,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1424673420,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41371924","duration":600,"bikeId":"10672","endDate":1424674320,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1424673720,"startStationId":"134","startStationName":"Wapping High Street, Wapping"}, +{"_id":"41371996","duration":480,"bikeId":"10384","endDate":1424674500,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1424674020,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"41372055","duration":960,"bikeId":"12035","endDate":1424675280,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1424674320,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41372125","duration":480,"bikeId":"10317","endDate":1424675100,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1424674620,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41372184","duration":600,"bikeId":"353","endDate":1424675520,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1424674920,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41372259","duration":240,"bikeId":"7882","endDate":1424675460,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1424675220,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41372310","duration":300,"bikeId":"523","endDate":1424675700,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1424675400,"startStationId":"469","startStationName":"Lindfield Street, Poplar"}, +{"_id":"41372396","duration":360,"bikeId":"12560","endDate":1424675940,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1424675580,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41372458","duration":1560,"bikeId":"8340","endDate":1424677320,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424675760,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"41372534","duration":1980,"bikeId":"11981","endDate":1424677980,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424676000,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"41372601","duration":360,"bikeId":"3965","endDate":1424676480,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424676120,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41372666","duration":120,"bikeId":"9673","endDate":1424676420,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1424676300,"startStationId":"648","startStationName":"Peterborough Road, Sands End"}, +{"_id":"41372740","duration":600,"bikeId":"5547","endDate":1424677020,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1424676420,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41372821","duration":1440,"bikeId":"8633","endDate":1424678040,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1424676600,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41372868","duration":840,"bikeId":"12742","endDate":1424677560,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1424676720,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41372921","duration":660,"bikeId":"11058","endDate":1424677500,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1424676840,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41372990","duration":660,"bikeId":"11840","endDate":1424677620,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424676960,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41373058","duration":1080,"bikeId":"4141","endDate":1424678220,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1424677140,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41373126","duration":1200,"bikeId":"9736","endDate":1424678460,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424677260,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41373222","duration":1140,"bikeId":"1089","endDate":1424678520,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1424677380,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"41373241","duration":1560,"bikeId":"1027","endDate":1424679000,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1424677440,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"41373335","duration":720,"bikeId":"2675","endDate":1424678280,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1424677560,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41373377","duration":720,"bikeId":"12923","endDate":1424678340,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1424677620,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41373457","duration":180,"bikeId":"2692","endDate":1424677920,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424677740,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41373529","duration":1020,"bikeId":"9781","endDate":1424678820,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1424677800,"startStationId":"689","startStationName":"Spanish Road, Wandsworth"}, +{"_id":"41373604","duration":1560,"bikeId":"5902","endDate":1424679480,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1424677920,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41373681","duration":1740,"bikeId":"5489","endDate":1424679780,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1424678040,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"41373735","duration":480,"bikeId":"10022","endDate":1424678640,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1424678160,"startStationId":"469","startStationName":"Lindfield Street, Poplar"}, +{"_id":"41373785","duration":480,"bikeId":"6","endDate":1424678700,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1424678220,"startStationId":"763","startStationName":"Mile End Park Leisure Centre, Mile End"}, +{"_id":"41373868","duration":1740,"bikeId":"12924","endDate":1424680020,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1424678280,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41373950","duration":240,"bikeId":"8423","endDate":1424678640,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1424678400,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41373995","duration":540,"bikeId":"4661","endDate":1424679000,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1424678460,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41374100","duration":900,"bikeId":"7403","endDate":1424679480,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1424678580,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41374167","duration":1260,"bikeId":"5577","endDate":1424679900,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1424678640,"startStationId":"593","startStationName":"Northdown Street, King's Cross"}, +{"_id":"41374201","duration":1260,"bikeId":"9784","endDate":1424679960,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1424678700,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"41374274","duration":1500,"bikeId":"10724","endDate":1424680260,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1424678760,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41374396","duration":660,"bikeId":"3449","endDate":1424679540,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424678880,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41374433","duration":1500,"bikeId":"3021","endDate":1424680440,"endStationId":"388","endStationName":"Southampton Street, Strand","startDate":1424678940,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"41374499","duration":300,"bikeId":"12115","endDate":1424679300,"endStationId":"495","endStationName":"Bow Church Station, Bow","startDate":1424679000,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"41374612","duration":540,"bikeId":"12582","endDate":1424679660,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1424679120,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41374644","duration":1680,"bikeId":"4095","endDate":1424680860,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1424679180,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41374704","duration":960,"bikeId":"9696","endDate":1424680200,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1424679240,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"41374756","duration":2460,"bikeId":"6691","endDate":1424681760,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1424679300,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"41374827","duration":300,"bikeId":"2225","endDate":1424679720,"endStationId":"674","endStationName":"Carnegie Street, King's Cross","startDate":1424679420,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41374859","duration":300,"bikeId":"8664","endDate":1424679720,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424679420,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41374932","duration":720,"bikeId":"4656","endDate":1424680200,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1424679480,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41375033","duration":300,"bikeId":"7275","endDate":1424679900,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1424679600,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41375063","duration":540,"bikeId":"3965","endDate":1424680200,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424679660,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41375199","duration":540,"bikeId":"6097","endDate":1424680260,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1424679720,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"41375267","duration":780,"bikeId":"10804","endDate":1424680560,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424679780,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41375333","duration":240,"bikeId":"1788","endDate":1424680080,"endStationId":"563","endStationName":"Preston's Road, Cubitt Town","startDate":1424679840,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"41375350","duration":360,"bikeId":"12175","endDate":1424680260,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1424679900,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"41375420","duration":180,"bikeId":"3871","endDate":1424680140,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1424679960,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41375492","duration":780,"bikeId":"6185","endDate":1424680800,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1424680020,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41375577","duration":300,"bikeId":"5880","endDate":1424680380,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1424680080,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41375613","duration":2100,"bikeId":"11332","endDate":1424682240,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1424680140,"startStationId":"597","startStationName":"Fulham Park Road, Fulham"}, +{"_id":"41375688","duration":1080,"bikeId":"7462","endDate":1424681280,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424680200,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41375776","duration":1140,"bikeId":"10778","endDate":1424681400,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1424680260,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41375830","duration":780,"bikeId":"1240","endDate":1424681100,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1424680320,"startStationId":"667","startStationName":"Shepherd's Bush Road North, Shepherd's Bush"}, +{"_id":"41375872","duration":660,"bikeId":"5975","endDate":1424681040,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1424680380,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41375944","duration":960,"bikeId":"1696","endDate":1424681400,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424680440,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41376053","duration":660,"bikeId":"7617","endDate":1424681160,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424680500,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"41376109","duration":360,"bikeId":"12767","endDate":1424680920,"endStationId":"365","endStationName":"City Road, Angel","startDate":1424680560,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41376158","duration":540,"bikeId":"3913","endDate":1424681160,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424680620,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41376244","duration":180,"bikeId":"9517","endDate":1424680860,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1424680680,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"41376275","duration":540,"bikeId":"3418","endDate":1424681220,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1424680680,"startStationId":"62","startStationName":"Cotton Garden Estate, Kennington"}, +{"_id":"41376332","duration":1440,"bikeId":"3666","endDate":1424682180,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1424680740,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"41376378","duration":1620,"bikeId":"11924","endDate":1424682420,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424680800,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41376489","duration":360,"bikeId":"12656","endDate":1424681220,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424680860,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41376580","duration":540,"bikeId":"6363","endDate":1424681460,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1424680920,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41376672","duration":720,"bikeId":"12969","endDate":1424681700,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1424680980,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41376700","duration":900,"bikeId":"10955","endDate":1424681880,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424680980,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41376798","duration":540,"bikeId":"12884","endDate":1424681640,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424681100,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41376814","duration":300,"bikeId":"5975","endDate":1424681400,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424681100,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41376917","duration":540,"bikeId":"10977","endDate":1424681760,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1424681220,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"41378536","duration":300,"bikeId":"11116","endDate":1424681580,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1424681280,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41377024","duration":480,"bikeId":"13001","endDate":1424681820,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1424681340,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41377154","duration":300,"bikeId":"10918","endDate":1424681700,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1424681400,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41377170","duration":660,"bikeId":"3636","endDate":1424682120,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1424681460,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41377263","duration":660,"bikeId":"3954","endDate":1424682180,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424681520,"startStationId":"156","startStationName":"New Kent Road, Borough"}, +{"_id":"41377321","duration":1140,"bikeId":"10065","endDate":1424682720,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1424681580,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41377397","duration":240,"bikeId":"12686","endDate":1424681880,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1424681640,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41377435","duration":300,"bikeId":"11957","endDate":1424682000,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1424681700,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41377519","duration":1380,"bikeId":"2047","endDate":1424683140,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1424681760,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41377609","duration":240,"bikeId":"6342","endDate":1424682060,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1424681820,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41377651","duration":600,"bikeId":"11776","endDate":1424682480,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1424681880,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41377682","duration":720,"bikeId":"11495","endDate":1424682660,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1424681940,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41377762","duration":600,"bikeId":"8788","endDate":1424682600,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1424682000,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41377887","duration":1260,"bikeId":"6898","endDate":1424683380,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1424682120,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41377890","duration":1500,"bikeId":"7804","endDate":1424683680,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424682180,"startStationId":"612","startStationName":"Wandsworth Rd, Isley Court, Wandsworth Road"}, +{"_id":"41377985","duration":1560,"bikeId":"7613","endDate":1424683800,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424682240,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"41378058","duration":600,"bikeId":"3463","endDate":1424682960,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1424682360,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"41378085","duration":660,"bikeId":"106","endDate":1424683080,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424682420,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"41378206","duration":300,"bikeId":"247","endDate":1424682840,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1424682540,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"41378261","duration":600,"bikeId":"261","endDate":1424683200,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424682600,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41378325","duration":1020,"bikeId":"11356","endDate":1424683740,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424682720,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"41378399","duration":720,"bikeId":"12983","endDate":1424683560,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1424682840,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41378466","duration":360,"bikeId":"1668","endDate":1424683260,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1424682900,"startStationId":"526","startStationName":"Lancaster Drive, Blackwall"}, +{"_id":"41378512","duration":660,"bikeId":"5608","endDate":1424683680,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424683020,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41378607","duration":900,"bikeId":"4252","endDate":1424684040,"endStationId":"364","endStationName":"Alfred Place, Bloomsbury","startDate":1424683140,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"41378687","duration":1440,"bikeId":"6521","endDate":1424684700,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1424683260,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"41378731","duration":1200,"bikeId":"156","endDate":1424684580,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1424683380,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41378800","duration":1020,"bikeId":"432","endDate":1424684520,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424683500,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41378855","duration":300,"bikeId":"8285","endDate":1424683920,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424683620,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41378935","duration":540,"bikeId":"12908","endDate":1424684340,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1424683800,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41378996","duration":600,"bikeId":"477","endDate":1424684580,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1424683980,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41379054","duration":660,"bikeId":"7883","endDate":1424684760,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1424684100,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"41379142","duration":660,"bikeId":"3214","endDate":1424684940,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424684280,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41379221","duration":540,"bikeId":"859","endDate":1424685000,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1424684460,"startStationId":"660","startStationName":"West Kensington Station, West Kensington"}, +{"_id":"41379287","duration":360,"bikeId":"10092","endDate":1424685000,"endStationId":"220","endStationName":"Chelsea Green, Chelsea","startDate":1424684640,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41379352","duration":540,"bikeId":"11254","endDate":1424685360,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1424684820,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41379410","duration":420,"bikeId":"7103","endDate":1424685420,"endStationId":"266","endStationName":"Queen's Gate (North), Kensington","startDate":1424685000,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41379475","duration":1320,"bikeId":"1405","endDate":1424686440,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1424685120,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41379534","duration":780,"bikeId":"9622","endDate":1424686140,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1424685360,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41379624","duration":480,"bikeId":"4356","endDate":1424686140,"endStationId":"543","endStationName":"Lansdowne Walk, Notting Hill","startDate":1424685660,"startStationId":"2","startStationName":"Phillimore Gardens, Kensington"}, +{"_id":"41379680","duration":240,"bikeId":"10478","endDate":1424686140,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1424685900,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"41379749","duration":660,"bikeId":"11868","endDate":1424686800,"endStationId":"251","endStationName":"Brushfield Street, Liverpool Street","startDate":1424686140,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"41379826","duration":300,"bikeId":"946","endDate":1424686800,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1424686500,"startStationId":"400","startStationName":"George Street, Marylebone"}, +{"_id":"41379890","duration":540,"bikeId":"407","endDate":1424687400,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1424686860,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41379957","duration":1140,"bikeId":"7417","endDate":1424688360,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424687220,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"41380033","duration":1260,"bikeId":"9831","endDate":1424688780,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1424687520,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41380089","duration":480,"bikeId":"12052","endDate":1424688300,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1424687820,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41380164","duration":420,"bikeId":"808","endDate":1424688480,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1424688060,"startStationId":"384","startStationName":"Marloes Road, Kensington"}, +{"_id":"41380235","duration":960,"bikeId":"7120","endDate":1424689380,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1424688420,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41380299","duration":1380,"bikeId":"3558","endDate":1424690040,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1424688660,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"41380363","duration":480,"bikeId":"1909","endDate":1424689500,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1424689020,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"41380441","duration":1260,"bikeId":"538","endDate":1424690640,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1424689380,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"41380502","duration":1320,"bikeId":"6416","endDate":1424691000,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424689680,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41380575","duration":960,"bikeId":"8664","endDate":1424691120,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424690160,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41380643","duration":1500,"bikeId":"5409","endDate":1424692080,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1424690580,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"41380705","duration":1380,"bikeId":"11498","endDate":1424692320,"endStationId":"187","endStationName":"Queen's Gate (South), South Kensington","startDate":1424690940,"startStationId":"693","startStationName":"Felsham Road, Putney"}, +{"_id":"41380776","duration":960,"bikeId":"2830","endDate":1424692260,"endStationId":"232","endStationName":"Carey Street, Holborn","startDate":1424691300,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41380839","duration":960,"bikeId":"421","endDate":1424692620,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424691660,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41380916","duration":720,"bikeId":"5495","endDate":1424692800,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1424692080,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"41380980","duration":360,"bikeId":"7461","endDate":1424692740,"endStationId":"352","endStationName":"Vauxhall Street, Vauxhall","startDate":1424692380,"startStationId":"100","startStationName":"Albert Embankment, Vauxhall"}, +{"_id":"41381060","duration":480,"bikeId":"7570","endDate":1424693220,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424692740,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"41381130","duration":360,"bikeId":"8231","endDate":1424693460,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1424693100,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41381189","duration":600,"bikeId":"11827","endDate":1424694000,"endStationId":"581","endStationName":"New Cavendish Street, Marylebone","startDate":1424693400,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41381264","duration":660,"bikeId":"7845","endDate":1424694300,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424693640,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41381332","duration":1140,"bikeId":"4521","endDate":1424695080,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1424693940,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"41381392","duration":240,"bikeId":"7034","endDate":1424694540,"endStationId":"205","endStationName":"New Road 2, Whitechapel","startDate":1424694300,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41381468","duration":720,"bikeId":"1215","endDate":1424695380,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424694660,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"41381527","duration":240,"bikeId":"6587","endDate":1424695140,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424694900,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41381601","duration":480,"bikeId":"11988","endDate":1424695680,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1424695200,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41381669","duration":420,"bikeId":"3763","endDate":1424695860,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1424695440,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41381738","duration":180,"bikeId":"12660","endDate":1424695920,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1424695740,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41381799","duration":2100,"bikeId":"12127","endDate":1424698080,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1424695980,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41381866","duration":1080,"bikeId":"3636","endDate":1424697360,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424696280,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"41381923","duration":240,"bikeId":"1899","endDate":1424696820,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1424696580,"startStationId":"745","startStationName":"Upcerne Road, West Chelsea"}, +{"_id":"41381993","duration":1680,"bikeId":"12004","endDate":1424698560,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1424696880,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41382056","duration":780,"bikeId":"8047","endDate":1424697960,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1424697180,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41382126","duration":540,"bikeId":"7964","endDate":1424698080,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1424697540,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41382204","duration":300,"bikeId":"8046","endDate":1424698200,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424697900,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41382269","duration":1500,"bikeId":"7891","endDate":1424699700,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1424698200,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41382339","duration":360,"bikeId":"9994","endDate":1424698860,"endStationId":"471","endStationName":"Hewison Street, Old Ford","startDate":1424698500,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41382400","duration":360,"bikeId":"4710","endDate":1424699160,"endStationId":"170","endStationName":"Hardwick Street, Clerkenwell","startDate":1424698800,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41382463","duration":900,"bikeId":"2435","endDate":1424699940,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1424699040,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41382553","duration":480,"bikeId":"2388","endDate":1424699820,"endStationId":"688","endStationName":"Northfields, Wandsworth","startDate":1424699340,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"41382603","duration":780,"bikeId":"10286","endDate":1424700360,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1424699580,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41382674","duration":120,"bikeId":"7992","endDate":1424700060,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1424699940,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41382738","duration":2460,"bikeId":"11153","endDate":1424702700,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424700240,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41382802","duration":1440,"bikeId":"7830","endDate":1424701980,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1424700540,"startStationId":"744","startStationName":"Ingrave Street, Battersea"}, +{"_id":"41382883","duration":540,"bikeId":"12729","endDate":1424701440,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1424700900,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41382949","duration":600,"bikeId":"13032","endDate":1424701800,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1424701200,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41383016","duration":480,"bikeId":"12838","endDate":1424702040,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1424701560,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"41383082","duration":540,"bikeId":"8500","endDate":1424702580,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1424702040,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"41383133","duration":6600,"bikeId":"5178","endDate":1424708880,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1424702280,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41383216","duration":300,"bikeId":"9397","endDate":1424702940,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1424702640,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41383290","duration":660,"bikeId":"10406","endDate":1424703600,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1424702940,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41383352","duration":780,"bikeId":"10824","endDate":1424704020,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424703240,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41383418","duration":1020,"bikeId":"5676","endDate":1424704620,"endStationId":"665","endStationName":"Smugglers Way, Wandsworth","startDate":1424703600,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"41383486","duration":840,"bikeId":"3449","endDate":1424704740,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424703900,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41383540","duration":480,"bikeId":"10883","endDate":1424704620,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1424704140,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41383609","duration":3600,"bikeId":"10106","endDate":1424708040,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424704440,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41383686","duration":1140,"bikeId":"12484","endDate":1424705940,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1424704800,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41383753","duration":300,"bikeId":"10848","endDate":1424705340,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1424705040,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41383821","duration":1140,"bikeId":"9145","endDate":1424706480,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1424705340,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41383886","duration":660,"bikeId":"5900","endDate":1424706300,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1424705640,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"41383945","duration":1680,"bikeId":"5522","endDate":1424707620,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1424705940,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"41384017","duration":840,"bikeId":"4942","endDate":1424707080,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1424706240,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"41384091","duration":120,"bikeId":"993","endDate":1424706660,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424706540,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41384147","duration":600,"bikeId":"5643","endDate":1424707380,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424706780,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41384221","duration":180,"bikeId":"3234","endDate":1424707200,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1424707020,"startStationId":"21","startStationName":"Hampstead Road (Cartmel), Euston"}, +{"_id":"41384280","duration":480,"bikeId":"10673","endDate":1424707740,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424707260,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"41384367","duration":300,"bikeId":"5524","endDate":1424707800,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1424707500,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"41384431","duration":1260,"bikeId":"8096","endDate":1424708940,"endStationId":"5","endStationName":"Sedding Street, Sloane Square","startDate":1424707680,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"41384499","duration":660,"bikeId":"894","endDate":1424708580,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424707920,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41384543","duration":1620,"bikeId":"4281","endDate":1424709720,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1424708100,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41384640","duration":480,"bikeId":"3229","endDate":1424708820,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424708340,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41384690","duration":960,"bikeId":"6234","endDate":1424709480,"endStationId":"503","endStationName":"Cleveland Way, Bethnal Green","startDate":1424708520,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"41384763","duration":660,"bikeId":"12510","endDate":1424709420,"endStationId":"397","endStationName":"Devonshire Terrace, Bayswater","startDate":1424708760,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41384830","duration":600,"bikeId":"12725","endDate":1424709540,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1424708940,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41384894","duration":840,"bikeId":"10240","endDate":1424709960,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1424709120,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41384964","duration":780,"bikeId":"7359","endDate":1424710080,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424709300,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"41385032","duration":1080,"bikeId":"42","endDate":1424710560,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1424709480,"startStationId":"607","startStationName":"Putney Bridge Station, Fulham"}, +{"_id":"41385102","duration":540,"bikeId":"10297","endDate":1424710200,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424709660,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41385170","duration":1260,"bikeId":"11969","endDate":1424711100,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1424709840,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"41385246","duration":1380,"bikeId":"495","endDate":1424711400,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1424710020,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41385309","duration":300,"bikeId":"10075","endDate":1424710500,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1424710200,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41385360","duration":2340,"bikeId":"159","endDate":1424712600,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1424710260,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41385420","duration":3120,"bikeId":"10629","endDate":1424713500,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1424710380,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41385488","duration":960,"bikeId":"12210","endDate":1424711520,"endStationId":"61","endStationName":"Great Dover Street, Borough","startDate":1424710560,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41385566","duration":600,"bikeId":"4726","endDate":1424711280,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1424710680,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41385634","duration":960,"bikeId":"12383","endDate":1424711820,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1424710860,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"41385694","duration":1260,"bikeId":"3877","endDate":1424712240,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1424710980,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41385773","duration":240,"bikeId":"2651","endDate":1424711340,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1424711100,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"41385838","duration":240,"bikeId":"9986","endDate":1424711400,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1424711160,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41385898","duration":780,"bikeId":"10600","endDate":1424712060,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424711280,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41385951","duration":1440,"bikeId":"6318","endDate":1424712780,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1424711340,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41386057","duration":780,"bikeId":"6649","endDate":1424712240,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1424711460,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41386069","duration":960,"bikeId":"3302","endDate":1424712480,"endStationId":"257","endStationName":"Westminster University, Marylebone","startDate":1424711520,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"41386147","duration":120,"bikeId":"1322","endDate":1424711760,"endStationId":"86","endStationName":"Sancroft Street, Vauxhall","startDate":1424711640,"startStationId":"305","startStationName":"Kennington Lane Tesco, Vauxhall"}, +{"_id":"41386231","duration":600,"bikeId":"6690","endDate":1424712360,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424711760,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41386293","duration":1140,"bikeId":"1710","endDate":1424712960,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1424711820,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"41386349","duration":900,"bikeId":"12993","endDate":1424712840,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1424711940,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41386413","duration":720,"bikeId":"5831","endDate":1424712780,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1424712060,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41386480","duration":2880,"bikeId":"487","endDate":1424715000,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1424712120,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41386554","duration":1800,"bikeId":"3767","endDate":1424714040,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424712240,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41386636","duration":960,"bikeId":"3496","endDate":1424713320,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1424712360,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41386688","duration":840,"bikeId":"10727","endDate":1424713320,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1424712480,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41386735","duration":660,"bikeId":"8912","endDate":1424713200,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1424712540,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41386842","duration":180,"bikeId":"10264","endDate":1424712840,"endStationId":"619","endStationName":"Irene Road, Parsons Green","startDate":1424712660,"startStationId":"648","startStationName":"Peterborough Road, Sands End"}, +{"_id":"41386902","duration":1140,"bikeId":"9018","endDate":1424713860,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1424712720,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41386920","duration":1440,"bikeId":"10537","endDate":1424714220,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1424712780,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41386996","duration":360,"bikeId":"3409","endDate":1424713200,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1424712840,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"41387096","duration":420,"bikeId":"7259","endDate":1424713380,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1424712960,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41387162","duration":660,"bikeId":"9358","endDate":1424713680,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424713020,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41387224","duration":1260,"bikeId":"983","endDate":1424714340,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1424713080,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"41387296","duration":720,"bikeId":"1031","endDate":1424713860,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1424713140,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41387345","duration":1500,"bikeId":"11759","endDate":1424714700,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1424713200,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"41387422","duration":1080,"bikeId":"4048","endDate":1424714400,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424713320,"startStationId":"562","startStationName":"Bury Place, Holborn"}, +{"_id":"41387509","duration":540,"bikeId":"4661","endDate":1424713920,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1424713380,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41387573","duration":360,"bikeId":"6501","endDate":1424713800,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1424713440,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"41387602","duration":1500,"bikeId":"3276","endDate":1424715000,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1424713500,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41387655","duration":480,"bikeId":"355","endDate":1424714040,"endStationId":"617","endStationName":"Elysium Place, Fulham","startDate":1424713560,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41387747","duration":1020,"bikeId":"8239","endDate":1424714700,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1424713680,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"41387848","duration":360,"bikeId":"8769","endDate":1424714100,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1424713740,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41387898","duration":900,"bikeId":"8852","endDate":1424714700,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1424713800,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41387960","duration":600,"bikeId":"2538","endDate":1424714520,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1424713920,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41388019","duration":1320,"bikeId":"11539","endDate":1424715300,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1424713980,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41388076","duration":660,"bikeId":"24","endDate":1424714700,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1424714040,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41388176","duration":1200,"bikeId":"11295","endDate":1424715360,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1424714160,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"41388200","duration":1020,"bikeId":"12058","endDate":1424715240,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1424714220,"startStationId":"426","startStationName":"Vincent Street, Pimlico"}, +{"_id":"41388279","duration":120,"bikeId":"233","endDate":1424714460,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424714340,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41388353","duration":1680,"bikeId":"2420","endDate":1424716080,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1424714400,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41388394","duration":300,"bikeId":"2548","endDate":1424714760,"endStationId":"168","endStationName":"Argyll Road, Kensington","startDate":1424714460,"startStationId":"384","startStationName":"Marloes Road, Kensington"}, +{"_id":"41388481","duration":540,"bikeId":"10238","endDate":1424715120,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424714580,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41388571","duration":660,"bikeId":"12629","endDate":1424715300,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1424714640,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41388633","duration":480,"bikeId":"3875","endDate":1424715180,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1424714700,"startStationId":"266","startStationName":"Queen's Gate (North), Kensington"}, +{"_id":"41388645","duration":1380,"bikeId":"12539","endDate":1424716140,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1424714760,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"41388765","duration":180,"bikeId":"8062","endDate":1424715060,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424714880,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"41388829","duration":900,"bikeId":"7132","endDate":1424715840,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1424714940,"startStationId":"84","startStationName":"Breams Buildings, Holborn"}, +{"_id":"41388885","duration":540,"bikeId":"10463","endDate":1424715540,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424715000,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41388950","duration":420,"bikeId":"3376","endDate":1424715540,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424715120,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41388986","duration":240,"bikeId":"464","endDate":1424715420,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424715180,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41389075","duration":900,"bikeId":"7620","endDate":1424716140,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424715240,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"41389146","duration":360,"bikeId":"5288","endDate":1424715720,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424715360,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41389178","duration":480,"bikeId":"12810","endDate":1424715900,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1424715420,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41389325","duration":300,"bikeId":"2361","endDate":1424715840,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424715540,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"41389406","duration":1320,"bikeId":"11470","endDate":1424716980,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1424715660,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41389426","duration":840,"bikeId":"8282","endDate":1424716560,"endStationId":"45","endStationName":"Boston Place, Marylebone","startDate":1424715720,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41389506","duration":1560,"bikeId":"12753","endDate":1424717340,"endStationId":"212","endStationName":"Campden Hill Road, Notting Hill","startDate":1424715780,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41389567","duration":1980,"bikeId":"3689","endDate":1424717820,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424715840,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"41389662","duration":540,"bikeId":"10705","endDate":1424716500,"endStationId":"349","endStationName":"St. George Street, Mayfair","startDate":1424715960,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41389722","duration":1500,"bikeId":"10923","endDate":1424717520,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1424716020,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"41389794","duration":1320,"bikeId":"2080","endDate":1424717460,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1424716140,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"41389834","duration":1020,"bikeId":"2566","endDate":1424717220,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1424716200,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41389899","duration":240,"bikeId":"12939","endDate":1424716560,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1424716320,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41389992","duration":540,"bikeId":"9638","endDate":1424716980,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1424716440,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"41390039","duration":1320,"bikeId":"5316","endDate":1424717820,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1424716500,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41390110","duration":300,"bikeId":"10335","endDate":1424716920,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1424716620,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41390163","duration":960,"bikeId":"7214","endDate":1424717640,"endStationId":"580","endStationName":"Doddington Grove, Kennington","startDate":1424716680,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41390259","duration":360,"bikeId":"10052","endDate":1424717160,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1424716800,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41390326","duration":420,"bikeId":"157","endDate":1424717340,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1424716920,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41390376","duration":720,"bikeId":"7934","endDate":1424717760,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1424717040,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"41390448","duration":1080,"bikeId":"3832","endDate":1424718240,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1424717160,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41390514","duration":660,"bikeId":"4094","endDate":1424717940,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1424717280,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41390553","duration":420,"bikeId":"1696","endDate":1424717760,"endStationId":"40","endStationName":"Commercial Street, Shoreditch","startDate":1424717340,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41390636","duration":540,"bikeId":"1371","endDate":1424718000,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424717460,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41390715","duration":1020,"bikeId":"10808","endDate":1424718600,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424717580,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41390752","duration":180,"bikeId":"29","endDate":1424717880,"endStationId":"286","endStationName":"St. John's Wood Road, St. John's Wood","startDate":1424717700,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"41390835","duration":300,"bikeId":"10482","endDate":1424718120,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1424717820,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41390912","duration":600,"bikeId":"953","endDate":1424718600,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1424718000,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"41390971","duration":540,"bikeId":"50","endDate":1424718660,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1424718120,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"41391037","duration":300,"bikeId":"4381","endDate":1424718540,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1424718240,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41391111","duration":1260,"bikeId":"4545","endDate":1424719680,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424718420,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41391181","duration":360,"bikeId":"1802","endDate":1424718900,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1424718540,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41391225","duration":1380,"bikeId":"2661","endDate":1424720040,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1424718660,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41391293","duration":1860,"bikeId":"12689","endDate":1424720640,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1424718780,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41391376","duration":1380,"bikeId":"9347","endDate":1424720340,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1424718960,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41391440","duration":540,"bikeId":"1161","endDate":1424719620,"endStationId":"708","endStationName":"Disraeli Road, Putney","startDate":1424719080,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41391500","duration":600,"bikeId":"7932","endDate":1424719860,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1424719260,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41391573","duration":840,"bikeId":"2942","endDate":1424720220,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1424719380,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"41391633","duration":600,"bikeId":"9358","endDate":1424720160,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424719560,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41391703","duration":1980,"bikeId":"9133","endDate":1424721720,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1424719740,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41391785","duration":180,"bikeId":"1382","endDate":1424720100,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1424719920,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"41391831","duration":1260,"bikeId":"2892","endDate":1424721360,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1424720100,"startStationId":"291","startStationName":"Claverton Street, Pimlico"}, +{"_id":"41391920","duration":1440,"bikeId":"96","endDate":1424721720,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1424720280,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41391967","duration":1320,"bikeId":"6597","endDate":1424721780,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1424720460,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41392050","duration":180,"bikeId":"929","endDate":1424720880,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1424720700,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41392125","duration":180,"bikeId":"12737","endDate":1424721060,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1424720880,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"41392172","duration":840,"bikeId":"2864","endDate":1424721900,"endStationId":"351","endStationName":"Macclesfield Rd, St Lukes","startDate":1424721060,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41392248","duration":1020,"bikeId":"7403","endDate":1424722380,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424721360,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41392330","duration":660,"bikeId":"5083","endDate":1424722320,"endStationId":"600","endStationName":"South Lambeth Road, Vauxhall","startDate":1424721660,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41392387","duration":660,"bikeId":"10794","endDate":1424722500,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424721840,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41392446","duration":1020,"bikeId":"6820","endDate":1424723100,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1424722080,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"41392516","duration":1080,"bikeId":"634","endDate":1424723400,"endStationId":"33","endStationName":"Altab Ali Park, Whitechapel","startDate":1424722320,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"41392593","duration":960,"bikeId":"12553","endDate":1424723520,"endStationId":"770","endStationName":"Gwendwr Road, West Kensington","startDate":1424722560,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"41392659","duration":1080,"bikeId":"1941","endDate":1424723880,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1424722800,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"41392726","duration":360,"bikeId":"441","endDate":1424723460,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424723100,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"41392786","duration":0,"bikeId":"3851","endDate":1424723460,"endStationId":"455","endStationName":"East Ferry Road, Cubitt Town","startDate":1424723460,"startStationId":"455","startStationName":"East Ferry Road, Cubitt Town"}, +{"_id":"41392845","duration":660,"bikeId":"9914","endDate":1424724420,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1424723760,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"41392916","duration":120,"bikeId":"5892","endDate":1424724240,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1424724120,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"41392995","duration":180,"bikeId":"5449","endDate":1424724600,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1424724420,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41393052","duration":420,"bikeId":"7827","endDate":1424725140,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1424724720,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41393120","duration":120,"bikeId":"3601","endDate":1424725200,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424725080,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41393251","duration":360,"bikeId":"9745","endDate":1424725800,"endStationId":"682","endStationName":"Crisp Road, Hammersmith","startDate":1424725440,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41393250","duration":480,"bikeId":"12553","endDate":1424726220,"endStationId":"770","endStationName":"Gwendwr Road, West Kensington","startDate":1424725740,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"41393319","duration":900,"bikeId":"5023","endDate":1424727060,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424726160,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41393385","duration":480,"bikeId":"9171","endDate":1424727000,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1424726520,"startStationId":"630","startStationName":"Clarence Walk, Stockwell"}, +{"_id":"41393451","duration":360,"bikeId":"12050","endDate":1424727420,"endStationId":"249","endStationName":"Harper Road, Borough","startDate":1424727060,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"41393517","duration":780,"bikeId":"3488","endDate":1424728200,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1424727420,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41393580","duration":300,"bikeId":"9126","endDate":1424728140,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1424727840,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41393656","duration":600,"bikeId":"1785","endDate":1424728980,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1424728380,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41393728","duration":780,"bikeId":"10337","endDate":1424729760,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424728980,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"41393783","duration":2160,"bikeId":"7213","endDate":1424731560,"endStationId":"733","endStationName":"Park Lane, Mayfair","startDate":1424729400,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41393859","duration":180,"bikeId":"5460","endDate":1424730060,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424729880,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41393917","duration":1320,"bikeId":"6780","endDate":1424731800,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1424730480,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41393983","duration":480,"bikeId":"7568","endDate":1424731860,"endStationId":"576","endStationName":"Alpha Grove, Millwall","startDate":1424731380,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41394048","duration":420,"bikeId":"8818","endDate":1424733300,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424732880,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41394120","duration":180,"bikeId":"4145","endDate":1424734380,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1424734200,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41394187","duration":1320,"bikeId":"8295","endDate":1424737080,"endStationId":"238","endStationName":"Frampton Street, Paddington","startDate":1424735760,"startStationId":"646","startStationName":"Buckingham Gate, Westminster"}, +{"_id":"41394253","duration":1200,"bikeId":"12343","endDate":1424738700,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1424737500,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41394327","duration":1140,"bikeId":"7568","endDate":1424741400,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1424740260,"startStationId":"576","startStationName":"Alpha Grove, Millwall"}, +{"_id":"41394397","duration":480,"bikeId":"11234","endDate":1424747220,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1424746740,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"41394469","duration":360,"bikeId":"3661","endDate":1424755380,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1424755020,"startStationId":"620","startStationName":"Surrey Lane, Battersea"}, +{"_id":"41394532","duration":60,"bikeId":"10584","endDate":1424757240,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1424757180,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41394598","duration":300,"bikeId":"7610","endDate":1424758620,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1424758320,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41394663","duration":660,"bikeId":"1793","endDate":1424759640,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1424758980,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"41394728","duration":300,"bikeId":"132","endDate":1424759820,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424759520,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41394801","duration":2460,"bikeId":"7751","endDate":1424762400,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1424759940,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"41394858","duration":2820,"bikeId":"9595","endDate":1424763000,"endStationId":"510","endStationName":"Westferry DLR, Limehouse","startDate":1424760180,"startStationId":"724","startStationName":"Alma Road, Wandsworth"}, +{"_id":"41394941","duration":480,"bikeId":"3280","endDate":1424760960,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424760480,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41394994","duration":240,"bikeId":"3658","endDate":1424760960,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1424760720,"startStationId":"490","startStationName":"Pennington Street, Wapping"}, +{"_id":"41395051","duration":660,"bikeId":"5737","endDate":1424761620,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1424760960,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41395138","duration":420,"bikeId":"2408","endDate":1424761620,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1424761200,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"41395192","duration":780,"bikeId":"12651","endDate":1424762160,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424761380,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"41395265","duration":120,"bikeId":"13014","endDate":1424761680,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1424761560,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41395323","duration":900,"bikeId":"12034","endDate":1424762640,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1424761740,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41395373","duration":360,"bikeId":"9690","endDate":1424762220,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1424761860,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"41395433","duration":840,"bikeId":"7861","endDate":1424762880,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1424762040,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"41395539","duration":2520,"bikeId":"12248","endDate":1424764740,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424762220,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"41395602","duration":480,"bikeId":"10423","endDate":1424762880,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1424762400,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41395661","duration":960,"bikeId":"9962","endDate":1424763480,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424762520,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"41395725","duration":360,"bikeId":"8435","endDate":1424763000,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1424762640,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41395806","duration":540,"bikeId":"8417","endDate":1424763360,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424762820,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41395843","duration":1380,"bikeId":"10965","endDate":1424764320,"endStationId":"683","endStationName":"Dorothy Road, Clapham Junction","startDate":1424762940,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"41395928","duration":1500,"bikeId":"157","endDate":1424764560,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424763060,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41395965","duration":660,"bikeId":"2389","endDate":1424763780,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1424763120,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41396092","duration":600,"bikeId":"9120","endDate":1424763900,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1424763300,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41396107","duration":2160,"bikeId":"12060","endDate":1424765520,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1424763360,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41396186","duration":1740,"bikeId":"1364","endDate":1424765160,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1424763420,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41396247","duration":1200,"bikeId":"202","endDate":1424764740,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1424763540,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"41396322","duration":600,"bikeId":"11533","endDate":1424764260,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1424763660,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41396374","duration":780,"bikeId":"18","endDate":1424764500,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1424763720,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41396492","duration":660,"bikeId":"7931","endDate":1424764500,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1424763840,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41396529","duration":180,"bikeId":"10054","endDate":1424764080,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1424763900,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41396619","duration":960,"bikeId":"3068","endDate":1424764980,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1424764020,"startStationId":"770","startStationName":"Gwendwr Road, West Kensington"}, +{"_id":"41396636","duration":780,"bikeId":"439","endDate":1424764860,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1424764080,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41396749","duration":1080,"bikeId":"10332","endDate":1424765280,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1424764200,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41396786","duration":420,"bikeId":"9017","endDate":1424764680,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1424764260,"startStationId":"396","startStationName":"Shouldham Street, Marylebone"}, +{"_id":"41396866","duration":600,"bikeId":"2255","endDate":1424764980,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1424764380,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41396911","duration":660,"bikeId":"2914","endDate":1424765100,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1424764440,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"41397055","duration":240,"bikeId":"3455","endDate":1424764800,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1424764560,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41397064","duration":720,"bikeId":"12737","endDate":1424765340,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1424764620,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"41397160","duration":960,"bikeId":"9493","endDate":1424765640,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1424764680,"startStationId":"336","startStationName":"Concert Hall Approach 2, South Bank"}, +{"_id":"41397192","duration":480,"bikeId":"10019","endDate":1424765220,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1424764740,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"41397277","duration":720,"bikeId":"10172","endDate":1424765520,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424764800,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41397333","duration":180,"bikeId":"11474","endDate":1424765100,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424764920,"startStationId":"249","startStationName":"Harper Road, Borough"}, +{"_id":"41397396","duration":360,"bikeId":"7695","endDate":1424765340,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1424764980,"startStationId":"182","startStationName":"Bell Street , Marylebone"}, +{"_id":"41397456","duration":960,"bikeId":"2389","endDate":1424766000,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1424765040,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"41397531","duration":1200,"bikeId":"9279","endDate":1424766300,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424765100,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41397611","duration":1260,"bikeId":"138","endDate":1424766480,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424765220,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41397679","duration":780,"bikeId":"4576","endDate":1424766060,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1424765280,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41397777","duration":900,"bikeId":"12617","endDate":1424766240,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1424765340,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41397840","duration":780,"bikeId":"240","endDate":1424766180,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1424765400,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41397901","duration":1740,"bikeId":"9586","endDate":1424767200,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1424765460,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"41397965","duration":1620,"bikeId":"5534","endDate":1424767140,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1424765520,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"41398015","duration":1020,"bikeId":"10134","endDate":1424766600,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424765580,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41398061","duration":780,"bikeId":"4595","endDate":1424766420,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1424765640,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41398138","duration":720,"bikeId":"7590","endDate":1424766420,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1424765700,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"41398175","duration":720,"bikeId":"10129","endDate":1424766480,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424765760,"startStationId":"588","startStationName":"Hoxton Street, Hoxton"}, +{"_id":"41398289","duration":960,"bikeId":"11822","endDate":1424766780,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1424765820,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41398302","duration":1200,"bikeId":"451","endDate":1424767080,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424765880,"startStationId":"531","startStationName":"Twig Folly Bridge, Mile End"}, +{"_id":"41398363","duration":1320,"bikeId":"3295","endDate":1424767260,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1424765940,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41398477","duration":1260,"bikeId":"6270","endDate":1424767260,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424766000,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41398538","duration":900,"bikeId":"8042","endDate":1424766960,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1424766060,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41398626","duration":780,"bikeId":"5769","endDate":1424766960,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424766180,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41398681","duration":1080,"bikeId":"10044","endDate":1424767260,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424766180,"startStationId":"334","startStationName":"Concert Hall Approach 1, South Bank"}, +{"_id":"41398719","duration":960,"bikeId":"10591","endDate":1424767200,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1424766240,"startStationId":"756","startStationName":"Prince of Wales Drive, Battersea Park"}, +{"_id":"41398766","duration":360,"bikeId":"4365","endDate":1424766660,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1424766300,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41398866","duration":720,"bikeId":"9362","endDate":1424767080,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1424766360,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41398955","duration":720,"bikeId":"8872","endDate":1424767140,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424766420,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41399022","duration":480,"bikeId":"2409","endDate":1424766960,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1424766480,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"41399041","duration":840,"bikeId":"6696","endDate":1424767380,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1424766540,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41399138","duration":780,"bikeId":"2366","endDate":1424767380,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424766600,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41399212","duration":360,"bikeId":"6546","endDate":1424767020,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424766660,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41399240","duration":300,"bikeId":"1751","endDate":1424767020,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1424766720,"startStationId":"451","startStationName":"Hermitage Court, Wapping"}, +{"_id":"41399342","duration":1500,"bikeId":"8906","endDate":1424768280,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1424766780,"startStationId":"640","startStationName":"Silverthorne Road, Battersea"}, +{"_id":"41399397","duration":240,"bikeId":"6950","endDate":1424767080,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1424766840,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41399477","duration":540,"bikeId":"10664","endDate":1424767440,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424766900,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41399617","duration":1380,"bikeId":"33","endDate":1424768340,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1424766960,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41399696","duration":1020,"bikeId":"11987","endDate":1424768040,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1424767020,"startStationId":"279","startStationName":"North Wharf Road, Paddington"}, +{"_id":"41399676","duration":1380,"bikeId":"9896","endDate":1424768400,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1424767020,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"41399736","duration":480,"bikeId":"5904","endDate":1424767560,"endStationId":"237","endStationName":"Vaughan Way, Wapping","startDate":1424767080,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41399833","duration":660,"bikeId":"10105","endDate":1424767800,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1424767140,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"41399913","duration":1080,"bikeId":"5703","endDate":1424768280,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424767200,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41400040","duration":780,"bikeId":"2199","endDate":1424768040,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1424767260,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41399971","duration":960,"bikeId":"2318","endDate":1424768220,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1424767260,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"41400064","duration":660,"bikeId":"6852","endDate":1424767980,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424767320,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41400143","duration":300,"bikeId":"1724","endDate":1424767680,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1424767380,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"41400199","duration":240,"bikeId":"3567","endDate":1424767680,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424767440,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41400293","duration":1200,"bikeId":"8243","endDate":1424768700,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424767500,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41400336","duration":900,"bikeId":"12595","endDate":1424768460,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424767560,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41400436","duration":300,"bikeId":"5526","endDate":1424767920,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1424767620,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41400559","duration":540,"bikeId":"12700","endDate":1424768220,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1424767680,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41400507","duration":2220,"bikeId":"9735","endDate":1424769900,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1424767680,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"41400655","duration":600,"bikeId":"11015","endDate":1424768400,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424767800,"startStationId":"331","startStationName":"Bunhill Row, Moorgate"}, +{"_id":"41400764","duration":1140,"bikeId":"10082","endDate":1424769000,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1424767860,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"41400809","duration":1560,"bikeId":"12189","endDate":1424769480,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424767920,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41400792","duration":660,"bikeId":"8055","endDate":1424768580,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1424767920,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41400870","duration":960,"bikeId":"4144","endDate":1424768940,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1424767980,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41401023","duration":420,"bikeId":"4732","endDate":1424768520,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1424768100,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41401080","duration":900,"bikeId":"278","endDate":1424769060,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1424768160,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41401094","duration":600,"bikeId":"6663","endDate":1424768820,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1424768220,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41401172","duration":300,"bikeId":"10295","endDate":1424768580,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424768280,"startStationId":"758","startStationName":"Westbourne Park Road, Portobello"}, +{"_id":"41401201","duration":1200,"bikeId":"9337","endDate":1424769540,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1424768340,"startStationId":"777","startStationName":"Limburg Road, Clapham Common"}, +{"_id":"41401277","duration":1920,"bikeId":"3261","endDate":1424770320,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424768400,"startStationId":"668","startStationName":"Ravenscourt Park Station, Hammersmith"}, +{"_id":"41401374","duration":1020,"bikeId":"7767","endDate":1424769540,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1424768520,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41401464","duration":1380,"bikeId":"5130","endDate":1424769960,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1424768580,"startStationId":"442","startStationName":"Walmer Road, Notting Hill"}, +{"_id":"41401514","duration":660,"bikeId":"826","endDate":1424769300,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1424768640,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41401596","duration":840,"bikeId":"9451","endDate":1424769600,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1424768760,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41401661","duration":1020,"bikeId":"1749","endDate":1424769840,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1424768820,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41401755","duration":1080,"bikeId":"1507","endDate":1424770020,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1424768940,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"41401817","duration":720,"bikeId":"5813","endDate":1424769780,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1424769060,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"41401853","duration":600,"bikeId":"8031","endDate":1424769720,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1424769120,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"41401946","duration":780,"bikeId":"3795","endDate":1424770020,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1424769240,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"41401999","duration":1260,"bikeId":"2391","endDate":1424770560,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1424769300,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41402083","duration":600,"bikeId":"4858","endDate":1424770020,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1424769420,"startStationId":"411","startStationName":"Walworth Road, Southwark"}, +{"_id":"41402167","duration":600,"bikeId":"6318","endDate":1424770140,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1424769540,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41402225","duration":780,"bikeId":"7799","endDate":1424770440,"endStationId":"380","endStationName":"Stanhope Gate, Mayfair","startDate":1424769660,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"41402280","duration":360,"bikeId":"10441","endDate":1424770140,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1424769780,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41402322","duration":660,"bikeId":"6842","endDate":1424770560,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1424769900,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"41402395","duration":660,"bikeId":"11926","endDate":1424770680,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424770020,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"41402468","duration":660,"bikeId":"9035","endDate":1424770800,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424770140,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"41402536","duration":1500,"bikeId":"7585","endDate":1424771820,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1424770320,"startStationId":"328","startStationName":"New North Road 2, Hoxton"}, +{"_id":"41402608","duration":1380,"bikeId":"6399","endDate":1424771820,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1424770440,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41402682","duration":240,"bikeId":"2456","endDate":1424770860,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1424770620,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"41402754","duration":1320,"bikeId":"11297","endDate":1424772120,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424770800,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41402823","duration":660,"bikeId":"469","endDate":1424771580,"endStationId":"375","endStationName":"Kensington Town Hall, Kensington","startDate":1424770920,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"41402875","duration":600,"bikeId":"97","endDate":1424771640,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1424771040,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41402945","duration":180,"bikeId":"3223","endDate":1424771460,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1424771280,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"41403014","duration":480,"bikeId":"2576","endDate":1424771940,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1424771460,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41403079","duration":840,"bikeId":"8191","endDate":1424772480,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1424771640,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41403154","duration":1980,"bikeId":"8484","endDate":1424773800,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424771820,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"41403225","duration":540,"bikeId":"8378","endDate":1424772600,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1424772060,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41403278","duration":1740,"bikeId":"4658","endDate":1424774040,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424772300,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41403362","duration":360,"bikeId":"12880","endDate":1424772960,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1424772600,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41403417","duration":360,"bikeId":"7498","endDate":1424773200,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1424772840,"startStationId":"250","startStationName":"Royal Avenue 1, Chelsea"}, +{"_id":"41403494","duration":720,"bikeId":"11076","endDate":1424773740,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1424773020,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41403563","duration":600,"bikeId":"8199","endDate":1424773860,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1424773260,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41403627","duration":22680,"bikeId":"11277","endDate":1424796180,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1424773500,"startStationId":"379","startStationName":"Turquoise Island, Notting Hill"}, +{"_id":"41403708","duration":540,"bikeId":"9279","endDate":1424774340,"endStationId":"28","endStationName":"Bolsover Street, Fitzrovia","startDate":1424773800,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41403765","duration":960,"bikeId":"11510","endDate":1424775060,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424774100,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41403834","duration":600,"bikeId":"986","endDate":1424775000,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1424774400,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41403904","duration":1020,"bikeId":"10287","endDate":1424775780,"endStationId":"258","endStationName":"Kensington Gore, Knightsbridge","startDate":1424774760,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"41403962","duration":3720,"bikeId":"9660","endDate":1424778780,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1424775060,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41404051","duration":240,"bikeId":"11257","endDate":1424775600,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424775360,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41404098","duration":1860,"bikeId":"7355","endDate":1424777580,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1424775720,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"41404165","duration":300,"bikeId":"8131","endDate":1424776380,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1424776080,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41404250","duration":1020,"bikeId":"5724","endDate":1424777460,"endStationId":"236","endStationName":"Fashion Street, Whitechapel","startDate":1424776440,"startStationId":"537","startStationName":"Old Montague Street, Whitechapel"}, +{"_id":"41404296","duration":600,"bikeId":"1037","endDate":1424777340,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1424776740,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41404371","duration":8520,"bikeId":"6236","endDate":1424785560,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424777040,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41404450","duration":1140,"bikeId":"1253","endDate":1424778600,"endStationId":"221","endStationName":"Horseferry Road, Westminster","startDate":1424777460,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41404514","duration":1320,"bikeId":"6343","endDate":1424779140,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424777820,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"41404572","duration":1620,"bikeId":"2259","endDate":1424779680,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1424778060,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41404647","duration":1380,"bikeId":"3795","endDate":1424779740,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1424778360,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"41404706","duration":1260,"bikeId":"6377","endDate":1424779920,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1424778660,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41404773","duration":240,"bikeId":"2572","endDate":1424779140,"endStationId":"661","endStationName":"All Saints Church, Portobello","startDate":1424778900,"startStationId":"754","startStationName":"Grenfell Road, Avondale"}, +{"_id":"41489337","duration":660,"bikeId":"9372","endDate":1424779860,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1424779200,"startStationId":"491","startStationName":"Queen Marys, Mile End"}, +{"_id":"41404911","duration":720,"bikeId":"1995","endDate":1424780220,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1424779500,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41404968","duration":660,"bikeId":"4537","endDate":1424780460,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1424779800,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41405049","duration":480,"bikeId":"7752","endDate":1424780580,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424780100,"startStationId":"102","startStationName":"Jewry Street, Aldgate"}, +{"_id":"41405123","duration":540,"bikeId":"12980","endDate":1424780940,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424780400,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41405177","duration":240,"bikeId":"12160","endDate":1424780880,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1424780640,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"41405239","duration":780,"bikeId":"1937","endDate":1424781600,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1424780820,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41531571","duration":720,"bikeId":"12736","endDate":1424781900,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1424781180,"startStationId":"503","startStationName":"Cleveland Way, Bethnal Green"}, +{"_id":"41405373","duration":1320,"bikeId":"6901","endDate":1424782680,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1424781360,"startStationId":"550","startStationName":"Harford Street, Mile End"}, +{"_id":"41405431","duration":420,"bikeId":"8178","endDate":1424782020,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1424781600,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41405508","duration":1200,"bikeId":"12321","endDate":1424783040,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1424781840,"startStationId":"229","startStationName":"Whitehall Place, Strand"}, +{"_id":"41405570","duration":240,"bikeId":"6915","endDate":1424782380,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1424782140,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41405644","duration":300,"bikeId":"1971","endDate":1424782680,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1424782380,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"41405702","duration":720,"bikeId":"11034","endDate":1424783340,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424782620,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41405776","duration":480,"bikeId":"3654","endDate":1424783340,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1424782860,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41405840","duration":1200,"bikeId":"11293","endDate":1424784240,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1424783040,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"41405914","duration":900,"bikeId":"11290","endDate":1424784180,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1424783280,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41405966","duration":360,"bikeId":"7698","endDate":1424783880,"endStationId":"518","endStationName":"Antill Road, Mile End","startDate":1424783520,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"41406048","duration":1740,"bikeId":"7360","endDate":1424785560,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1424783820,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41406113","duration":360,"bikeId":"4337","endDate":1424784360,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1424784000,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"41406163","duration":360,"bikeId":"7336","endDate":1424784600,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1424784240,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41406243","duration":180,"bikeId":"10772","endDate":1424784720,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424784540,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41406305","duration":780,"bikeId":"11979","endDate":1424785560,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424784780,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41406373","duration":1380,"bikeId":"6384","endDate":1424786400,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424785020,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41406448","duration":480,"bikeId":"10305","endDate":1424785740,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424785260,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41406500","duration":240,"bikeId":"12403","endDate":1424785740,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1424785500,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41406573","duration":1440,"bikeId":"9733","endDate":1424787240,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1424785800,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"41406655","duration":840,"bikeId":"5614","endDate":1424786880,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424786040,"startStationId":"324","startStationName":"Ontario Street, Elephant & Castle"}, +{"_id":"41406709","duration":540,"bikeId":"1551","endDate":1424786760,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1424786220,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41406780","duration":1140,"bikeId":"7919","endDate":1424787660,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1424786520,"startStationId":"299","startStationName":"Vincent Square, Westminster"}, +{"_id":"41406853","duration":180,"bikeId":"4328","endDate":1424786940,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1424786760,"startStationId":"32","startStationName":"Leonard Circus , Shoreditch"}, +{"_id":"41406909","duration":2220,"bikeId":"9783","endDate":1424789220,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1424787000,"startStationId":"292","startStationName":"Montpelier Street, Knightsbridge"}, +{"_id":"41406972","duration":600,"bikeId":"2710","endDate":1424787900,"endStationId":"641","endStationName":"Archbishop's Park, Waterloo","startDate":1424787300,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41407036","duration":540,"bikeId":"8324","endDate":1424788140,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1424787600,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"41407101","duration":720,"bikeId":"4321","endDate":1424788680,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424787960,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41407166","duration":780,"bikeId":"2312","endDate":1424789040,"endStationId":"527","endStationName":"Hansard Mews, Shepherds Bush","startDate":1424788260,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41407239","duration":1200,"bikeId":"8558","endDate":1424789820,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1424788620,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41407296","duration":1200,"bikeId":"9946","endDate":1424790060,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1424788860,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"41407375","duration":660,"bikeId":"13025","endDate":1424789820,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1424789160,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41407442","duration":10020,"bikeId":"11063","endDate":1424799420,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1424789400,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41407501","duration":300,"bikeId":"12087","endDate":1424790000,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1424789700,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"41407563","duration":480,"bikeId":"11335","endDate":1424790480,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1424790000,"startStationId":"347","startStationName":"Lower Marsh, Waterloo"}, +{"_id":"41407650","duration":900,"bikeId":"8731","endDate":1424791200,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1424790300,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"41407702","duration":660,"bikeId":"10384","endDate":1424791140,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1424790480,"startStationId":"245","startStationName":"Grosvenor Road, Pimlico"}, +{"_id":"41407772","duration":480,"bikeId":"12606","endDate":1424791200,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424790720,"startStationId":"398","startStationName":"Holland Park, Kensington"}, +{"_id":"41407820","duration":1020,"bikeId":"8951","endDate":1424792040,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1424791020,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41407907","duration":1200,"bikeId":"6919","endDate":1424792520,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1424791320,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"41407962","duration":120,"bikeId":"6587","endDate":1424791680,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424791560,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41408038","duration":300,"bikeId":"8915","endDate":1424792160,"endStationId":"84","endStationName":"Breams Buildings, Holborn","startDate":1424791860,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41408098","duration":780,"bikeId":"8349","endDate":1424792880,"endStationId":"507","endStationName":"Clarkson Street, Bethnal Green","startDate":1424792100,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"41408169","duration":1380,"bikeId":"1083","endDate":1424793840,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1424792460,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"41408230","duration":540,"bikeId":"1535","endDate":1424793240,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1424792700,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41408309","duration":540,"bikeId":"12086","endDate":1424793480,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424792940,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41408370","duration":360,"bikeId":"6013","endDate":1424793480,"endStationId":"571","endStationName":"Westfield Southern Terrace ,Shepherd's Bush","startDate":1424793120,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"41408429","duration":1140,"bikeId":"12773","endDate":1424794440,"endStationId":"761","endStationName":"Humbolt Road, Fulham","startDate":1424793300,"startStationId":"635","startStationName":"Greyhound Road, Hammersmith"}, +{"_id":"41408512","duration":1260,"bikeId":"7437","endDate":1424794860,"endStationId":"225","endStationName":"Notting Hill Gate Station, Notting Hill","startDate":1424793600,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41408578","duration":0,"bikeId":"2091","endDate":1424793780,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424793780,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41408650","duration":1020,"bikeId":"2637","endDate":1424795040,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424794020,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41408705","duration":600,"bikeId":"8191","endDate":1424794740,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1424794140,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41408766","duration":540,"bikeId":"9082","endDate":1424794920,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1424794380,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41408841","duration":540,"bikeId":"10130","endDate":1424795160,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424794620,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41408898","duration":480,"bikeId":"11060","endDate":1424795280,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1424794800,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"41408973","duration":780,"bikeId":"3","endDate":1424795820,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424795040,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"41409043","duration":780,"bikeId":"12284","endDate":1424796000,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424795220,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41409103","duration":960,"bikeId":"1127","endDate":1424796360,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424795400,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"41409163","duration":1260,"bikeId":"10656","endDate":1424796780,"endStationId":"646","endStationName":"Buckingham Gate, Westminster","startDate":1424795520,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"41409235","duration":600,"bikeId":"12566","endDate":1424796300,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424795700,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41409331","duration":420,"bikeId":"10291","endDate":1424796300,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1424795880,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41409360","duration":600,"bikeId":"4034","endDate":1424796600,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1424796000,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41409436","duration":420,"bikeId":"2451","endDate":1424796600,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424796180,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41409507","duration":1080,"bikeId":"5913","endDate":1424797380,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1424796300,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41409570","duration":1140,"bikeId":"4018","endDate":1424797620,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424796480,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41409637","duration":780,"bikeId":"8637","endDate":1424797380,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424796600,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41409693","duration":1620,"bikeId":"6786","endDate":1424798400,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1424796780,"startStationId":"84","startStationName":"Breams Buildings, Holborn"}, +{"_id":"41409764","duration":420,"bikeId":"3827","endDate":1424797320,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1424796900,"startStationId":"548","startStationName":"Westminster Bridge Road, Elephant & Castle"}, +{"_id":"41409826","duration":540,"bikeId":"6036","endDate":1424797560,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424797020,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41409877","duration":420,"bikeId":"11087","endDate":1424797560,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1424797140,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41409950","duration":540,"bikeId":"3630","endDate":1424797800,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424797260,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41410017","duration":540,"bikeId":"2370","endDate":1424797920,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424797380,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41410122","duration":780,"bikeId":"10853","endDate":1424798280,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424797500,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41410158","duration":1680,"bikeId":"13056","endDate":1424799240,"endStationId":"630","endStationName":"Clarence Walk, Stockwell","startDate":1424797560,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41410205","duration":1140,"bikeId":"2396","endDate":1424798760,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1424797620,"startStationId":"775","startStationName":"Little Brook Green, Brook Green"}, +{"_id":"41410301","duration":420,"bikeId":"5353","endDate":1424798160,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1424797740,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"41410359","duration":1080,"bikeId":"7565","endDate":1424798880,"endStationId":"701","endStationName":"Vicarage Crescent, Battersea","startDate":1424797800,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41410437","duration":1200,"bikeId":"5595","endDate":1424799120,"endStationId":"576","endStationName":"Alpha Grove, Millwall","startDate":1424797920,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41410489","duration":900,"bikeId":"8540","endDate":1424798940,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1424798040,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41410545","duration":540,"bikeId":"12304","endDate":1424798700,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1424798160,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41410622","duration":540,"bikeId":"3421","endDate":1424798820,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424798280,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41410702","duration":240,"bikeId":"7316","endDate":1424798640,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1424798400,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41410765","duration":1560,"bikeId":"7433","endDate":1424800080,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1424798520,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41410824","duration":900,"bikeId":"6756","endDate":1424799480,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424798580,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41410913","duration":600,"bikeId":"12922","endDate":1424799300,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1424798700,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41410923","duration":600,"bikeId":"11266","endDate":1424799360,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1424798760,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41411010","duration":1680,"bikeId":"4808","endDate":1424800560,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424798880,"startStationId":"525","startStationName":"Churchill Place, Canary Wharf"}, +{"_id":"41411063","duration":2280,"bikeId":"2567","endDate":1424801220,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1424798940,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41411172","duration":1260,"bikeId":"3606","endDate":1424800320,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424799060,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41411190","duration":480,"bikeId":"6115","endDate":1424799600,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424799120,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41411306","duration":960,"bikeId":"11135","endDate":1424800200,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1424799240,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41411369","duration":1500,"bikeId":"10699","endDate":1424800800,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1424799300,"startStationId":"713","startStationName":"Hawley Crescent, Camden Town"}, +{"_id":"41411394","duration":300,"bikeId":"5987","endDate":1424799660,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1424799360,"startStationId":"152","startStationName":"Hampton Street, Walworth"}, +{"_id":"41411455","duration":1080,"bikeId":"10168","endDate":1424800500,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1424799420,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41411511","duration":900,"bikeId":"12003","endDate":1424800380,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1424799480,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41411636","duration":600,"bikeId":"10022","endDate":1424800140,"endStationId":"336","endStationName":"Concert Hall Approach 2, South Bank","startDate":1424799540,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41411654","duration":180,"bikeId":"4501","endDate":1424799780,"endStationId":"741","endStationName":"Freston Road, Avondale","startDate":1424799600,"startStationId":"754","startStationName":"Grenfell Road, Avondale"}, +{"_id":"41411778","duration":1500,"bikeId":"643","endDate":1424801220,"endStationId":"454","endStationName":"Napier Avenue, Millwall","startDate":1424799720,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41411823","duration":240,"bikeId":"8556","endDate":1424800020,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424799780,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41411858","duration":660,"bikeId":"4885","endDate":1424800500,"endStationId":"365","endStationName":"City Road, Angel","startDate":1424799840,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41411924","duration":1080,"bikeId":"2704","endDate":1424800980,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424799900,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41411996","duration":2580,"bikeId":"10094","endDate":1424802600,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1424800020,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41412124","duration":1380,"bikeId":"5598","endDate":1424801520,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1424800140,"startStationId":"250","startStationName":"Royal Avenue 1, Chelsea"}, +{"_id":"41412151","duration":660,"bikeId":"10039","endDate":1424800860,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424800200,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"41412215","duration":600,"bikeId":"1710","endDate":1424800860,"endStationId":"513","endStationName":"Watney Market, Stepney","startDate":1424800260,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41412273","duration":540,"bikeId":"5261","endDate":1424800860,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1424800320,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41412379","duration":1200,"bikeId":"8424","endDate":1424801640,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1424800440,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41412421","duration":900,"bikeId":"8652","endDate":1424801400,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1424800500,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41412502","duration":600,"bikeId":"10183","endDate":1424801160,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424800560,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41412563","duration":960,"bikeId":"6910","endDate":1424801640,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1424800680,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41412633","duration":2700,"bikeId":"3567","endDate":1424803440,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1424800740,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41412644","duration":360,"bikeId":"6315","endDate":1424801160,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1424800800,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41412778","duration":1140,"bikeId":"8207","endDate":1424802060,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1424800920,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"41412801","duration":960,"bikeId":"3631","endDate":1424801940,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1424800980,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41412850","duration":1320,"bikeId":"7085","endDate":1424802360,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1424801040,"startStationId":"525","startStationName":"Churchill Place, Canary Wharf"}, +{"_id":"41412963","duration":1200,"bikeId":"12254","endDate":1424802360,"endStationId":"716","endStationName":"Stainsby Road , Poplar","startDate":1424801160,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41413048","duration":960,"bikeId":"12492","endDate":1424802180,"endStationId":"312","endStationName":"Grove End Road, St. John's Wood","startDate":1424801220,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41413114","duration":660,"bikeId":"3449","endDate":1424801940,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1424801280,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41413163","duration":360,"bikeId":"9830","endDate":1424801700,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1424801340,"startStationId":"592","startStationName":"Bishop's Bridge Road East, Bayswater"}, +{"_id":"41413178","duration":840,"bikeId":"2561","endDate":1424802240,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1424801400,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41413246","duration":600,"bikeId":"1030","endDate":1424802060,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1424801460,"startStationId":"766","startStationName":"Ram Street, Wandsworth"}, +{"_id":"41413362","duration":480,"bikeId":"2041","endDate":1424802060,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424801580,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41413397","duration":420,"bikeId":"2234","endDate":1424802060,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1424801640,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41413476","duration":1020,"bikeId":"12849","endDate":1424802720,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1424801700,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41413535","duration":420,"bikeId":"2242","endDate":1424802240,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1424801820,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41413582","duration":360,"bikeId":"11205","endDate":1424802240,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1424801880,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41413675","duration":180,"bikeId":"10692","endDate":1424802180,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1424802000,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41413730","duration":660,"bikeId":"10684","endDate":1424802720,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424802060,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41413809","duration":1620,"bikeId":"6696","endDate":1424803800,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1424802180,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41413882","duration":540,"bikeId":"10825","endDate":1424802780,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1424802240,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41413904","duration":420,"bikeId":"3704","endDate":1424802720,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1424802300,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41413969","duration":660,"bikeId":"1626","endDate":1424803020,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424802360,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41414087","duration":420,"bikeId":"1519","endDate":1424802900,"endStationId":"477","endStationName":"Spindrift Avenue, Millwall","startDate":1424802480,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41414164","duration":480,"bikeId":"9646","endDate":1424803080,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1424802600,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41414222","duration":1380,"bikeId":"8487","endDate":1424804040,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1424802660,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41414283","duration":1560,"bikeId":"9944","endDate":1424804340,"endStationId":"216","endStationName":"Old Brompton Road, South Kensington","startDate":1424802780,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"41414330","duration":300,"bikeId":"10193","endDate":1424803140,"endStationId":"752","endStationName":"Manfred Road, East Putney","startDate":1424802840,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"41414438","duration":720,"bikeId":"9895","endDate":1424803680,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1424802960,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"41414502","duration":300,"bikeId":"2774","endDate":1424803380,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1424803080,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41414549","duration":780,"bikeId":"6328","endDate":1424803920,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424803140,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41414613","duration":1260,"bikeId":"6617","endDate":1424804520,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1424803260,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41414700","duration":1200,"bikeId":"6427","endDate":1424804580,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1424803380,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41414743","duration":540,"bikeId":"9380","endDate":1424803980,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1424803440,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41414823","duration":840,"bikeId":"2933","endDate":1424804400,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1424803560,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"41414917","duration":1500,"bikeId":"6135","endDate":1424805180,"endStationId":"394","endStationName":"Aberdeen Place, St. John's Wood","startDate":1424803680,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41414974","duration":180,"bikeId":"7498","endDate":1424803980,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1424803800,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"41415017","duration":420,"bikeId":"10536","endDate":1424804280,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1424803860,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"41415103","duration":420,"bikeId":"11689","endDate":1424804460,"endStationId":"230","endStationName":"Poured Lines, Bankside","startDate":1424804040,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41415131","duration":720,"bikeId":"6802","endDate":1424804820,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1424804100,"startStationId":"457","startStationName":"Castlehaven Road, Camden Town"}, +{"_id":"41415231","duration":1320,"bikeId":"1492","endDate":1424805600,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1424804280,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41415287","duration":180,"bikeId":"4437","endDate":1424804580,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424804400,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41415379","duration":780,"bikeId":"1389","endDate":1424805360,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424804580,"startStationId":"528","startStationName":"Clarges Street, West End"}, +{"_id":"41415424","duration":600,"bikeId":"7795","endDate":1424805300,"endStationId":"454","endStationName":"Napier Avenue, Millwall","startDate":1424804700,"startStationId":"570","startStationName":"Upper Bank Street, Canary Wharf"}, +{"_id":"41415505","duration":1140,"bikeId":"2457","endDate":1424805960,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424804820,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41415566","duration":480,"bikeId":"12753","endDate":1424805420,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1424804940,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41415623","duration":240,"bikeId":"6443","endDate":1424805300,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1424805060,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41415717","duration":300,"bikeId":"9294","endDate":1424805540,"endStationId":"723","endStationName":"Stephendale Road, Sands End","startDate":1424805240,"startStationId":"596","startStationName":"Parson's Green , Parson's Green"}, +{"_id":"41415777","duration":0,"bikeId":"5569","endDate":1424805360,"endStationId":"768","endStationName":"Clapham Common Northside, Clapham Common","startDate":1424805360,"startStationId":"768","startStationName":"Clapham Common Northside, Clapham Common"}, +{"_id":"41415851","duration":720,"bikeId":"12230","endDate":1424806260,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1424805540,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41415908","duration":360,"bikeId":"12644","endDate":1424806020,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1424805660,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41415996","duration":360,"bikeId":"8022","endDate":1424806200,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1424805840,"startStationId":"686","startStationName":"Beryl Road, Hammersmith"}, +{"_id":"41416058","duration":1560,"bikeId":"7958","endDate":1424807520,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1424805960,"startStationId":"156","startStationName":"New Kent Road, Borough"}, +{"_id":"41416125","duration":300,"bikeId":"601","endDate":1424806440,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1424806140,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41416202","duration":420,"bikeId":"3639","endDate":1424806740,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1424806320,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41416255","duration":540,"bikeId":"6190","endDate":1424807040,"endStationId":"167","endStationName":"Eccleston Place, Victoria","startDate":1424806500,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41416322","duration":1260,"bikeId":"5065","endDate":1424807940,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1424806680,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41416384","duration":1140,"bikeId":"10487","endDate":1424807940,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1424806800,"startStationId":"757","startStationName":"Harcourt Terrace, West Brompton"}, +{"_id":"41416456","duration":1260,"bikeId":"7724","endDate":1424808300,"endStationId":"293","endStationName":"Kensington Olympia Station, Olympia","startDate":1424807040,"startStationId":"680","startStationName":"Westbridge Road, Battersea"}, +{"_id":"41416533","duration":840,"bikeId":"11041","endDate":1424808060,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1424807220,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41416615","duration":420,"bikeId":"5758","endDate":1424807880,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1424807460,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41416673","duration":480,"bikeId":"1502","endDate":1424808120,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424807640,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"41416735","duration":300,"bikeId":"7491","endDate":1424808120,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1424807820,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41416811","duration":1080,"bikeId":"2071","endDate":1424809140,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424808060,"startStationId":"625","startStationName":"Queen's Circus, Battersea Park"}, +{"_id":"41416874","duration":900,"bikeId":"647","endDate":1424809200,"endStationId":"535","endStationName":"Gloucester Avenue, Camden Town","startDate":1424808300,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41416941","duration":300,"bikeId":"9351","endDate":1424808900,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1424808600,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41417007","duration":840,"bikeId":"4615","endDate":1424809680,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1424808840,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41417086","duration":240,"bikeId":"3393","endDate":1424809320,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1424809080,"startStationId":"31","startStationName":"Fanshaw Street, Hoxton"}, +{"_id":"41417139","duration":240,"bikeId":"4946","endDate":1424809620,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1424809380,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41417217","duration":600,"bikeId":"5670","endDate":1424810220,"endStationId":"709","endStationName":"Montserrat Road , Putney","startDate":1424809620,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41417278","duration":540,"bikeId":"4114","endDate":1424810460,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424809920,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41417354","duration":480,"bikeId":"5963","endDate":1424810640,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424810160,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41417408","duration":600,"bikeId":"1494","endDate":1424811000,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1424810400,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"41417475","duration":840,"bikeId":"4208","endDate":1424811540,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424810700,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41417539","duration":360,"bikeId":"6797","endDate":1424811360,"endStationId":"365","endStationName":"City Road, Angel","startDate":1424811000,"startStationId":"135","startStationName":"Clerkenwell Green, Clerkenwell"}, +{"_id":"41417607","duration":780,"bikeId":"11750","endDate":1424812080,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1424811300,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41417687","duration":480,"bikeId":"10392","endDate":1424812200,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424811720,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41417756","duration":420,"bikeId":"28","endDate":1424812440,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1424812020,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"41417816","duration":780,"bikeId":"11556","endDate":1424813160,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1424812380,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"41417882","duration":1020,"bikeId":"2561","endDate":1424813820,"endStationId":"700","endStationName":"Battersea Church Road, Battersea","startDate":1424812800,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41417952","duration":540,"bikeId":"6073","endDate":1424813700,"endStationId":"604","endStationName":"St Martin's Close, Camden Town","startDate":1424813160,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41418024","duration":780,"bikeId":"8517","endDate":1424814360,"endStationId":"616","endStationName":"Aintree Street, Fulham","startDate":1424813580,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41418089","duration":2280,"bikeId":"7722","endDate":1424816280,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1424814000,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41418148","duration":360,"bikeId":"6255","endDate":1424814660,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1424814300,"startStationId":"246","startStationName":"Berry Street, Clerkenwell"}, +{"_id":"41418210","duration":480,"bikeId":"4934","endDate":1424815140,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1424814660,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"41418280","duration":900,"bikeId":"536","endDate":1424815980,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1424815080,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41418340","duration":900,"bikeId":"9186","endDate":1424816400,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1424815500,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41418413","duration":1260,"bikeId":"11859","endDate":1424817180,"endStationId":"245","endStationName":"Grosvenor Road, Pimlico","startDate":1424815920,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41418480","duration":300,"bikeId":"2917","endDate":1424816700,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424816400,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41418550","duration":720,"bikeId":"8668","endDate":1424817600,"endStationId":"322","endStationName":"Palissy Street, Shoreditch","startDate":1424816880,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41418615","duration":660,"bikeId":"7335","endDate":1424818080,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1424817420,"startStationId":"410","startStationName":"Edgware Road Station, Paddington"}, +{"_id":"41418673","duration":480,"bikeId":"201","endDate":1424818560,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1424818080,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41418744","duration":420,"bikeId":"8928","endDate":1424819280,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1424818860,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41418814","duration":360,"bikeId":"7995","endDate":1424819940,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424819580,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41418877","duration":121440,"bikeId":"6417","endDate":1424941740,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1424820300,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"41418950","duration":240,"bikeId":"11230","endDate":1424821380,"endStationId":"420","endStationName":"Southwark Station 1, Southwark","startDate":1424821140,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"41419011","duration":420,"bikeId":"8308","endDate":1424822400,"endStationId":"98","endStationName":"Hampstead Road, Euston","startDate":1424821980,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41419076","duration":660,"bikeId":"1295","endDate":1424823660,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1424823000,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41419150","duration":420,"bikeId":"2164","endDate":1424824860,"endStationId":"454","endStationName":"Napier Avenue, Millwall","startDate":1424824440,"startStationId":"475","startStationName":"Lightermans Road, Millwall"}, +{"_id":"41419220","duration":6660,"bikeId":"4887","endDate":1424832960,"endStationId":"549","endStationName":"Gaywood Street, Elephant & Castle","startDate":1424826300,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41419288","duration":1560,"bikeId":"1357","endDate":1424831400,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424829840,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41419362","duration":1380,"bikeId":"3261","endDate":1424835000,"endStationId":"617","endStationName":"Elysium Place, Fulham","startDate":1424833620,"startStationId":"755","startStationName":"The Vale, Chelsea"}, +{"_id":"41419435","duration":1200,"bikeId":"6615","endDate":1424842380,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1424841180,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41419504","duration":300,"bikeId":"12396","endDate":1424844360,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424844060,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41419565","duration":900,"bikeId":"12430","endDate":1424846160,"endStationId":"532","endStationName":"Jubilee Plaza, Canary Wharf","startDate":1424845260,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"41419628","duration":240,"bikeId":"4179","endDate":1424846280,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1424846040,"startStationId":"629","startStationName":"Morie Street, Wandsworth"}, +{"_id":"41419696","duration":1080,"bikeId":"3752","endDate":1424847720,"endStationId":"739","endStationName":"Hortensia Road, West Brompton","startDate":1424846640,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"41419760","duration":780,"bikeId":"9414","endDate":1424847840,"endStationId":"331","endStationName":"Bunhill Row, Moorgate","startDate":1424847060,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41419829","duration":960,"bikeId":"9169","endDate":1424848440,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1424847480,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41419894","duration":300,"bikeId":"1676","endDate":1424848200,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1424847900,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41419957","duration":720,"bikeId":"1315","endDate":1424848920,"endStationId":"680","endStationName":"Westbridge Road, Battersea","startDate":1424848200,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41420032","duration":1080,"bikeId":"1019","endDate":1424849580,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424848500,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41420093","duration":1260,"bikeId":"10338","endDate":1424850000,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424848740,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"41420163","duration":1080,"bikeId":"3153","endDate":1424850120,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1424849040,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41420216","duration":1020,"bikeId":"10549","endDate":1424850240,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1424849220,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"41420294","duration":300,"bikeId":"8435","endDate":1424849760,"endStationId":"522","endStationName":"Clinton Road, Mile End","startDate":1424849460,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"41420358","duration":1140,"bikeId":"4465","endDate":1424850780,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1424849640,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41420433","duration":360,"bikeId":"10439","endDate":1424850240,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1424849880,"startStationId":"20","startStationName":"Drummond Street , Euston"}, +{"_id":"41420486","duration":420,"bikeId":"7453","endDate":1424850420,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1424850000,"startStationId":"550","startStationName":"Harford Street, Mile End"}, +{"_id":"41420564","duration":120,"bikeId":"8358","endDate":1424850300,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1424850180,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"41420628","duration":300,"bikeId":"11333","endDate":1424850660,"endStationId":"722","endStationName":"Finnis Street, Bethnal Green","startDate":1424850360,"startStationId":"450","startStationName":"Jubilee Street, Stepney"}, +{"_id":"41420692","duration":840,"bikeId":"12589","endDate":1424851380,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1424850540,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41420748","duration":960,"bikeId":"900","endDate":1424851620,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1424850660,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"41420809","duration":1320,"bikeId":"1336","endDate":1424852100,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1424850780,"startStationId":"693","startStationName":"Felsham Road, Putney"}, +{"_id":"41420886","duration":540,"bikeId":"5859","endDate":1424851440,"endStationId":"588","endStationName":"Hoxton Street, Hoxton","startDate":1424850900,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"41420955","duration":300,"bikeId":"9875","endDate":1424851380,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1424851080,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41421013","duration":720,"bikeId":"1565","endDate":1424851920,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1424851200,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"41421084","duration":120,"bikeId":"12854","endDate":1424851440,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1424851320,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"41421162","duration":480,"bikeId":"7179","endDate":1424851920,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424851440,"startStationId":"204","startStationName":"Margery Street, Clerkenwell"}, +{"_id":"41421208","duration":300,"bikeId":"9425","endDate":1424851800,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1424851500,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41421298","duration":1860,"bikeId":"1245","endDate":1424853480,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1424851620,"startStationId":"738","startStationName":"Imperial Road, Sands End"}, +{"_id":"41421386","duration":2940,"bikeId":"3502","endDate":1424854680,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1424851740,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"41421437","duration":1020,"bikeId":"555","endDate":1424852880,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1424851860,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41421520","duration":660,"bikeId":"7877","endDate":1424852640,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1424851980,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41421546","duration":1440,"bikeId":"11369","endDate":1424853480,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1424852040,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"41421635","duration":660,"bikeId":"5551","endDate":1424852820,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1424852160,"startStationId":"409","startStationName":"Strata, Southwark"}, +{"_id":"41421702","duration":480,"bikeId":"9132","endDate":1424852700,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424852220,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41421752","duration":600,"bikeId":"2787","endDate":1424852880,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1424852280,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41421844","duration":960,"bikeId":"3827","endDate":1424853360,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1424852400,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41421875","duration":420,"bikeId":"11814","endDate":1424852880,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1424852460,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41421991","duration":840,"bikeId":"10374","endDate":1424853420,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1424852580,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41422041","duration":1440,"bikeId":"3028","endDate":1424854080,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424852640,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41422084","duration":600,"bikeId":"12801","endDate":1424853300,"endStationId":"745","endStationName":"Upcerne Road, West Chelsea","startDate":1424852700,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41422174","duration":960,"bikeId":"3168","endDate":1424853780,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1424852820,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"41422250","duration":1140,"bikeId":"11093","endDate":1424854080,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1424852940,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41422294","duration":600,"bikeId":"9106","endDate":1424853600,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1424853000,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41422387","duration":240,"bikeId":"8468","endDate":1424853360,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1424853120,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"41422456","duration":180,"bikeId":"11072","endDate":1424853360,"endStationId":"707","endStationName":"Barons Court Station, West Kensington","startDate":1424853180,"startStationId":"599","startStationName":"Manbre Road, Hammersmith"}, +{"_id":"41422480","duration":1260,"bikeId":"949","endDate":1424854500,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1424853240,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41422611","duration":37380,"bikeId":"3600","endDate":1424890740,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1424853360,"startStationId":"195","startStationName":"Milroy Walk, South Bank"}, +{"_id":"41422630","duration":840,"bikeId":"6213","endDate":1424854260,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1424853420,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41422723","duration":1140,"bikeId":"11011","endDate":1424854680,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1424853540,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41422770","duration":180,"bikeId":"6870","endDate":1424853780,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1424853600,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"41422851","duration":1500,"bikeId":"4162","endDate":1424855220,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1424853720,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"41422890","duration":480,"bikeId":"5639","endDate":1424854260,"endStationId":"735","endStationName":"Grant Road East, Clapham Junction","startDate":1424853780,"startStationId":"685","startStationName":"Osiers Road, Wandsworth"}, +{"_id":"41422977","duration":480,"bikeId":"4351","endDate":1424854320,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424853840,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41423057","duration":660,"bikeId":"5588","endDate":1424854620,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1424853960,"startStationId":"234","startStationName":"Liverpool Road (N1 Centre), Angel"}, +{"_id":"41423134","duration":240,"bikeId":"12608","endDate":1424854260,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1424854020,"startStationId":"451","startStationName":"Hermitage Court, Wapping"}, +{"_id":"41423191","duration":1200,"bikeId":"11426","endDate":1424855280,"endStationId":"44","endStationName":"Bruton Street, Mayfair","startDate":1424854080,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"41423212","duration":600,"bikeId":"2683","endDate":1424854740,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1424854140,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41423283","duration":360,"bikeId":"9674","endDate":1424854560,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424854200,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41423325","duration":1560,"bikeId":"11293","endDate":1424855820,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1424854260,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41423449","duration":1440,"bikeId":"5847","endDate":1424855820,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424854380,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"41423498","duration":480,"bikeId":"7355","endDate":1424854920,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1424854440,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41423564","duration":480,"bikeId":"458","endDate":1424855040,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424854560,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"41423621","duration":240,"bikeId":"9506","endDate":1424854860,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1424854620,"startStationId":"189","startStationName":"Claremont Square, Angel"}, +{"_id":"41423657","duration":960,"bikeId":"11884","endDate":1424855640,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1424854680,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41423751","duration":1080,"bikeId":"7099","endDate":1424855880,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424854800,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"41423843","duration":900,"bikeId":"11356","endDate":1424855820,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1424854920,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41423908","duration":420,"bikeId":"12647","endDate":1424855460,"endStationId":"571","endStationName":"Westfield Southern Terrace ,Shepherd's Bush","startDate":1424855040,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41423982","duration":360,"bikeId":"9796","endDate":1424855520,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1424855160,"startStationId":"605","startStationName":"Seymour Place, Marylebone"}, +{"_id":"41424024","duration":840,"bikeId":"6235","endDate":1424856060,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424855220,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41424111","duration":1140,"bikeId":"8765","endDate":1424856540,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1424855400,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41424156","duration":960,"bikeId":"10967","endDate":1424856480,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1424855520,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"41424248","duration":900,"bikeId":"2981","endDate":1424856540,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1424855640,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41424318","duration":360,"bikeId":"10142","endDate":1424856120,"endStationId":"289","endStationName":"South Audley Street, Mayfair","startDate":1424855760,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41424373","duration":300,"bikeId":"12832","endDate":1424856180,"endStationId":"433","endStationName":"Wren Street, Holborn","startDate":1424855880,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41424411","duration":1140,"bikeId":"11837","endDate":1424857140,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424856000,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"41424521","duration":420,"bikeId":"10282","endDate":1424856600,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424856180,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41424576","duration":540,"bikeId":"12063","endDate":1424856900,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1424856360,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"41424634","duration":1740,"bikeId":"5553","endDate":1424858280,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1424856540,"startStationId":"679","startStationName":"Orbel Street, Battersea"}, +{"_id":"41424712","duration":1320,"bikeId":"12375","endDate":1424858040,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1424856720,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41424769","duration":1560,"bikeId":"11908","endDate":1424858460,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1424856900,"startStationId":"644","startStationName":"Rainville Road, Hammersmith"}, +{"_id":"41424830","duration":1140,"bikeId":"10931","endDate":1424858220,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1424857080,"startStationId":"595","startStationName":"Hammersmith Road, Hammersmith"}, +{"_id":"41424910","duration":1140,"bikeId":"4515","endDate":1424858400,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1424857260,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41424974","duration":1380,"bikeId":"5064","endDate":1424858820,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1424857440,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41425036","duration":600,"bikeId":"11255","endDate":1424858280,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1424857680,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41425091","duration":900,"bikeId":"8260","endDate":1424858760,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1424857860,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"41425174","duration":960,"bikeId":"5180","endDate":1424859060,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1424858100,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41425245","duration":360,"bikeId":"2168","endDate":1424858700,"endStationId":"323","endStationName":"Clifton Street, Shoreditch","startDate":1424858340,"startStationId":"506","startStationName":"Bell Lane, Liverpool Street"}, +{"_id":"41425302","duration":240,"bikeId":"5109","endDate":1424858880,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1424858640,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"41425370","duration":1920,"bikeId":"10029","endDate":1424860860,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1424858940,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41425456","duration":660,"bikeId":"1863","endDate":1424859900,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1424859240,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"41425506","duration":1020,"bikeId":"2142","endDate":1424860500,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1424859480,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41425582","duration":1320,"bikeId":"5470","endDate":1424861100,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1424859780,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"41425641","duration":720,"bikeId":"4631","endDate":1424860800,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1424860080,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41425714","duration":360,"bikeId":"12560","endDate":1424860800,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1424860440,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41425776","duration":780,"bikeId":"2478","endDate":1424861520,"endStationId":"70","endStationName":"Calshot Street , King's Cross","startDate":1424860740,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41425851","duration":1020,"bikeId":"6415","endDate":1424862120,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1424861100,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"41425903","duration":8280,"bikeId":"7227","endDate":1424869620,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1424861340,"startStationId":"227","startStationName":"Great Percy Street, Clerkenwell"}, +{"_id":"41425997","duration":660,"bikeId":"12099","endDate":1424862300,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1424861640,"startStationId":"580","startStationName":"Doddington Grove, Kennington"}, +{"_id":"41426049","duration":5040,"bikeId":"2264","endDate":1424867040,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1424862000,"startStationId":"479","startStationName":"Pott Street, Bethnal Green"}, +{"_id":"41426125","duration":2700,"bikeId":"10978","endDate":1424864940,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1424862240,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41426191","duration":840,"bikeId":"3275","endDate":1424863380,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424862540,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41426258","duration":1980,"bikeId":"3977","endDate":1424864940,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1424862960,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41426329","duration":360,"bikeId":"9517","endDate":1424863680,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1424863320,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41426396","duration":1140,"bikeId":"9189","endDate":1424864820,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1424863680,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41426470","duration":420,"bikeId":"3593","endDate":1424864460,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1424864040,"startStationId":"163","startStationName":"Sloane Avenue, Knightsbridge"}, +{"_id":"41426536","duration":600,"bikeId":"7633","endDate":1424865000,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1424864400,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41426593","duration":720,"bikeId":"1106","endDate":1424865360,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1424864640,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41426678","duration":1080,"bikeId":"4055","endDate":1424866020,"endStationId":"147","endStationName":"Portugal Street, Holborn","startDate":1424864940,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41426743","duration":1020,"bikeId":"6550","endDate":1424866200,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1424865180,"startStationId":"72","startStationName":"Farringdon Lane, Clerkenwell"}, +{"_id":"41426807","duration":540,"bikeId":"5005","endDate":1424866020,"endStationId":"120","endStationName":"The Guildhall, Guildhall","startDate":1424865480,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41426892","duration":1380,"bikeId":"12965","endDate":1424867220,"endStationId":"291","endStationName":"Claverton Street, Pimlico","startDate":1424865840,"startStationId":"627","startStationName":"Holden Street, Battersea"}, +{"_id":"41426954","duration":1020,"bikeId":"8427","endDate":1424867100,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1424866080,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41427029","duration":180,"bikeId":"7126","endDate":1424866560,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1424866380,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"41427075","duration":240,"bikeId":"7857","endDate":1424866800,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1424866560,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41427162","duration":1440,"bikeId":"3084","endDate":1424868300,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1424866860,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41427229","duration":420,"bikeId":"6934","endDate":1424867580,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1424867160,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"41427289","duration":300,"bikeId":"12172","endDate":1424867640,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1424867340,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41427367","duration":780,"bikeId":"7360","endDate":1424868420,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424867640,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41427438","duration":240,"bikeId":"10961","endDate":1424868120,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1424867880,"startStationId":"38","startStationName":"Abingdon Villas, Kensington"}, +{"_id":"41427483","duration":1560,"bikeId":"10860","endDate":1424869620,"endStationId":"609","endStationName":"Sugden Road, Battersea","startDate":1424868060,"startStationId":"658","startStationName":"Ethelburga Estate, Battersea Park"}, +{"_id":"41427566","duration":900,"bikeId":"5478","endDate":1424869200,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1424868300,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41427635","duration":420,"bikeId":"7327","endDate":1424868960,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1424868540,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"41427708","duration":720,"bikeId":"8940","endDate":1424869500,"endStationId":"201","endStationName":"Dorset Square, Marylebone","startDate":1424868780,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"41427772","duration":660,"bikeId":"8360","endDate":1424869680,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424869020,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41427855","duration":300,"bikeId":"11174","endDate":1424869620,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1424869320,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41427902","duration":300,"bikeId":"11187","endDate":1424869800,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1424869500,"startStationId":"727","startStationName":"Chesilton Road, Fulham"}, +{"_id":"41427986","duration":360,"bikeId":"12752","endDate":1424870100,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424869740,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41428044","duration":360,"bikeId":"11131","endDate":1424870280,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1424869920,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41428122","duration":8400,"bikeId":"9946","endDate":1424878560,"endStationId":"180","endStationName":"North Audley Street, Mayfair","startDate":1424870160,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"41428175","duration":1020,"bikeId":"9307","endDate":1424871360,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1424870340,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41428253","duration":360,"bikeId":"8189","endDate":1424871000,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1424870640,"startStationId":"320","startStationName":"Queen Mother Sports Centre, Victoria"}, +{"_id":"41428323","duration":180,"bikeId":"10833","endDate":1424871000,"endStationId":"666","endStationName":"Olympia Way, Olympia","startDate":1424870820,"startStationId":"515","startStationName":"Russell Gardens, Holland Park"}, +{"_id":"41428386","duration":1260,"bikeId":"8278","endDate":1424872320,"endStationId":"562","endStationName":"Bury Place, Holborn","startDate":1424871060,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41428433","duration":1380,"bikeId":"12743","endDate":1424872680,"endStationId":"405","endStationName":"Gloucester Road Station, South Kensington","startDate":1424871300,"startStationId":"661","startStationName":"All Saints Church, Portobello"}, +{"_id":"41428491","duration":720,"bikeId":"4736","endDate":1424872200,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1424871480,"startStationId":"371","startStationName":"King Edward Walk, Waterloo"}, +{"_id":"41428582","duration":180,"bikeId":"9467","endDate":1424871900,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1424871720,"startStationId":"636","startStationName":"South Park, Sands End"}, +{"_id":"41428640","duration":420,"bikeId":"5535","endDate":1424872320,"endStationId":"403","endStationName":"George Place Mews, Marylebone","startDate":1424871900,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"41428726","duration":480,"bikeId":"5012","endDate":1424872620,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1424872140,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41428776","duration":1320,"bikeId":"4543","endDate":1424873640,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1424872320,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41428857","duration":1020,"bikeId":"4716","endDate":1424873640,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1424872620,"startStationId":"161","startStationName":"Guildhouse Street, Victoria"}, +{"_id":"41428917","duration":600,"bikeId":"1856","endDate":1424873460,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1424872860,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41428985","duration":780,"bikeId":"5323","endDate":1424873940,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1424873160,"startStationId":"397","startStationName":"Devonshire Terrace, Bayswater"}, +{"_id":"41429050","duration":180,"bikeId":"4968","endDate":1424873640,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424873460,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41429121","duration":720,"bikeId":"3546","endDate":1424874420,"endStationId":"505","endStationName":"Ackroyd Drive, Bow","startDate":1424873700,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"41429192","duration":540,"bikeId":"10510","endDate":1424874540,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1424874000,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41429250","duration":900,"bikeId":"207","endDate":1424875140,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424874240,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41429314","duration":540,"bikeId":"8792","endDate":1424875020,"endStationId":"650","endStationName":"St. Mark's Road, North Kensington","startDate":1424874480,"startStationId":"261","startStationName":"Princes Square, Bayswater"}, +{"_id":"41429386","duration":2880,"bikeId":"11285","endDate":1424877540,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1424874660,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41429465","duration":900,"bikeId":"5519","endDate":1424875800,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1424874900,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"41429524","duration":1560,"bikeId":"5429","endDate":1424876700,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1424875140,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"41429602","duration":240,"bikeId":"10424","endDate":1424875680,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1424875440,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"41429657","duration":300,"bikeId":"12147","endDate":1424875980,"endStationId":"443","endStationName":"Philpot Street, Whitechapel","startDate":1424875680,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"41429735","duration":480,"bikeId":"6972","endDate":1424876400,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1424875920,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41429794","duration":780,"bikeId":"1071","endDate":1424876940,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424876160,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"41429864","duration":1140,"bikeId":"10387","endDate":1424877540,"endStationId":"22","endStationName":"Northington Street , Holborn","startDate":1424876400,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41429941","duration":540,"bikeId":"7795","endDate":1424877240,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1424876700,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41429987","duration":1080,"bikeId":"7186","endDate":1424877960,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1424876880,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41430053","duration":1800,"bikeId":"8386","endDate":1424878920,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424877120,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41430129","duration":660,"bikeId":"2345","endDate":1424878080,"endStationId":"720","endStationName":"Star Road, West Kensington","startDate":1424877420,"startStationId":"739","startStationName":"Hortensia Road, West Brompton"}, +{"_id":"41430191","duration":420,"bikeId":"12351","endDate":1424878080,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424877660,"startStationId":"569","startStationName":"Pitfield Street Central, Hoxton"}, +{"_id":"41430282","duration":1500,"bikeId":"7218","endDate":1424879460,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1424877960,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"41430337","duration":180,"bikeId":"9877","endDate":1424878320,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1424878140,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"41430429","duration":720,"bikeId":"12341","endDate":1424879100,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1424878380,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"41430475","duration":360,"bikeId":"1267","endDate":1424878920,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1424878560,"startStationId":"287","startStationName":"Bedford Way, Bloomsbury"}, +{"_id":"41430544","duration":1260,"bikeId":"9884","endDate":1424880060,"endStationId":"85","endStationName":"Tanner Street, Bermondsey","startDate":1424878800,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41430616","duration":1380,"bikeId":"12203","endDate":1424880420,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424879040,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41430679","duration":600,"bikeId":"10305","endDate":1424879820,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1424879220,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41430749","duration":540,"bikeId":"10706","endDate":1424880060,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1424879520,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41430806","duration":1320,"bikeId":"1512","endDate":1424881020,"endStationId":"257","endStationName":"Westminster University, Marylebone","startDate":1424879700,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"41430878","duration":480,"bikeId":"13024","endDate":1424880420,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1424879940,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41430944","duration":600,"bikeId":"6582","endDate":1424880720,"endStationId":"299","endStationName":"Vincent Square, Westminster","startDate":1424880120,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41431024","duration":1320,"bikeId":"12776","endDate":1424881620,"endStationId":"324","endStationName":"Ontario Street, Elephant & Castle","startDate":1424880300,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"41431087","duration":660,"bikeId":"8544","endDate":1424881140,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424880480,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41431156","duration":360,"bikeId":"9322","endDate":1424881020,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1424880660,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41431226","duration":1560,"bikeId":"7827","endDate":1424882400,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424880840,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41431278","duration":660,"bikeId":"1186","endDate":1424881680,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1424881020,"startStationId":"486","startStationName":"Granby Street, Shoreditch"}, +{"_id":"41431339","duration":480,"bikeId":"7378","endDate":1424881620,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1424881140,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41431431","duration":600,"bikeId":"10661","endDate":1424881980,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424881380,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41431487","duration":780,"bikeId":"6573","endDate":1424882280,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1424881500,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41431554","duration":600,"bikeId":"477","endDate":1424882280,"endStationId":"250","endStationName":"Royal Avenue 1, Chelsea","startDate":1424881680,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41431656","duration":1320,"bikeId":"7637","endDate":1424883180,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1424881860,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41431724","duration":540,"bikeId":"6254","endDate":1424882520,"endStationId":"334","endStationName":"Concert Hall Approach 1, South Bank","startDate":1424881980,"startStationId":"203","startStationName":"West Smithfield Rotunda, Farringdon"}, +{"_id":"41431778","duration":420,"bikeId":"12710","endDate":1424882520,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424882100,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41431833","duration":840,"bikeId":"4199","endDate":1424883060,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424882220,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41431891","duration":720,"bikeId":"10535","endDate":1424883120,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424882400,"startStationId":"354","startStationName":"Northumberland Avenue, Strand"}, +{"_id":"41431947","duration":3420,"bikeId":"6657","endDate":1424885940,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1424882520,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"41432030","duration":540,"bikeId":"9394","endDate":1424883240,"endStationId":"260","endStationName":"Broadwick Street, Soho","startDate":1424882700,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41432145","duration":1320,"bikeId":"9105","endDate":1424884200,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1424882880,"startStationId":"662","startStationName":"Phene Street, Chelsea"}, +{"_id":"41432185","duration":1140,"bikeId":"4679","endDate":1424884140,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1424883000,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41432246","duration":540,"bikeId":"12873","endDate":1424883720,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1424883180,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"41432309","duration":1800,"bikeId":"5693","endDate":1424885100,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1424883300,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41432393","duration":1260,"bikeId":"8188","endDate":1424884740,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424883480,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41432449","duration":600,"bikeId":"5095","endDate":1424884200,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1424883600,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41432538","duration":1740,"bikeId":"3758","endDate":1424885460,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1424883720,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41432566","duration":1560,"bikeId":"1716","endDate":1424885340,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1424883780,"startStationId":"744","startStationName":"Ingrave Street, Battersea"}, +{"_id":"41432656","duration":480,"bikeId":"10707","endDate":1424884380,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424883900,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41432684","duration":1140,"bikeId":"6457","endDate":1424885100,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1424883960,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"41432796","duration":600,"bikeId":"5020","endDate":1424884680,"endStationId":"718","endStationName":"Ada Street, Hackney Central","startDate":1424884080,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41432877","duration":1140,"bikeId":"10978","endDate":1424885280,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424884140,"startStationId":"762","startStationName":"Storey's Gate, Westminster"}, +{"_id":"41432937","duration":720,"bikeId":"5096","endDate":1424884980,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424884260,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41432976","duration":600,"bikeId":"1826","endDate":1424884920,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1424884320,"startStationId":"507","startStationName":"Clarkson Street, Bethnal Green"}, +{"_id":"41433061","duration":480,"bikeId":"9503","endDate":1424884920,"endStationId":"387","endStationName":"Fire Brigade Pier, Vauxhall","startDate":1424884440,"startStationId":"240","startStationName":"Colombo Street, Southwark"}, +{"_id":"41433135","duration":1200,"bikeId":"9081","endDate":1424885700,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1424884500,"startStationId":"678","startStationName":"Esmond Street, Putney"}, +{"_id":"41433212","duration":540,"bikeId":"4732","endDate":1424885160,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1424884620,"startStationId":"118","startStationName":"Rochester Row, Westminster"}, +{"_id":"41433254","duration":3960,"bikeId":"11971","endDate":1424888640,"endStationId":"377","endStationName":"Waterloo Bridge, South Bank","startDate":1424884680,"startStationId":"283","startStationName":"Kingsway, Covent Garden"}, +{"_id":"41433307","duration":1440,"bikeId":"6891","endDate":1424886240,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424884800,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"41433372","duration":540,"bikeId":"7586","endDate":1424885460,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424884920,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41433447","duration":420,"bikeId":"8387","endDate":1424885460,"endStationId":"423","endStationName":"Eaton Square (South), Belgravia","startDate":1424885040,"startStationId":"353","startStationName":"Greycoat Street , Westminster"}, +{"_id":"41433492","duration":600,"bikeId":"6256","endDate":1424885700,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1424885100,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"41433593","duration":600,"bikeId":"12664","endDate":1424885820,"endStationId":"229","endStationName":"Whitehall Place, Strand","startDate":1424885220,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"41433678","duration":960,"bikeId":"3278","endDate":1424886300,"endStationId":"627","endStationName":"Holden Street, Battersea","startDate":1424885340,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41433729","duration":780,"bikeId":"3890","endDate":1424886180,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424885400,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41433824","duration":300,"bikeId":"5959","endDate":1424885820,"endStationId":"626","endStationName":"Normand Park, Fulham","startDate":1424885520,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"41433848","duration":840,"bikeId":"6286","endDate":1424886420,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424885580,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41433925","duration":780,"bikeId":"2771","endDate":1424886420,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1424885640,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41434024","duration":360,"bikeId":"3197","endDate":1424886120,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1424885760,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41434080","duration":660,"bikeId":"8328","endDate":1424886480,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1424885820,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41434085","duration":1680,"bikeId":"9781","endDate":1424887560,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424885880,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41434165","duration":1080,"bikeId":"4351","endDate":1424887020,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1424885940,"startStationId":"42","startStationName":"Wenlock Road , Hoxton"}, +{"_id":"41434292","duration":660,"bikeId":"9820","endDate":1424886720,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1424886060,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"41434323","duration":600,"bikeId":"8870","endDate":1424886720,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424886120,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41434380","duration":1260,"bikeId":"26","endDate":1424887440,"endStationId":"653","endStationName":"Simpson Street, Battersea","startDate":1424886180,"startStationId":"608","startStationName":"Colet Gardens, Hammersmith"}, +{"_id":"41434481","duration":780,"bikeId":"1343","endDate":1424887080,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424886300,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41434551","duration":1020,"bikeId":"7068","endDate":1424887380,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1424886360,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41434587","duration":540,"bikeId":"10549","endDate":1424886960,"endStationId":"569","endStationName":"Pitfield Street Central, Hoxton","startDate":1424886420,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41434693","duration":180,"bikeId":"4096","endDate":1424886720,"endStationId":"489","endStationName":"Christian Street, Whitechapel","startDate":1424886540,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41434714","duration":420,"bikeId":"11271","endDate":1424887020,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1424886600,"startStationId":"393","startStationName":"Snow Hill, Farringdon"}, +{"_id":"41434771","duration":840,"bikeId":"7020","endDate":1424887500,"endStationId":"330","endStationName":"Eastbourne Mews, Paddington","startDate":1424886660,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41434896","duration":420,"bikeId":"4113","endDate":1424887200,"endStationId":"578","endStationName":"Hollybush Gardens, Bethnal Green","startDate":1424886780,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41434960","duration":600,"bikeId":"10525","endDate":1424887440,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424886840,"startStationId":"382","startStationName":"Farm Street, Mayfair"}, +{"_id":"41434982","duration":1200,"bikeId":"227","endDate":1424888100,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1424886900,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"41435047","duration":360,"bikeId":"6568","endDate":1424887320,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1424886960,"startStationId":"759","startStationName":"Broadley Terrace, Marylebone"}, +{"_id":"41435161","duration":1080,"bikeId":"10646","endDate":1424888160,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1424887080,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"41435203","duration":120,"bikeId":"11975","endDate":1424887260,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424887140,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41435258","duration":960,"bikeId":"11430","endDate":1424888220,"endStationId":"186","endStationName":"South Wharf Road, Paddington","startDate":1424887260,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41435357","duration":1440,"bikeId":"3275","endDate":1424888760,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1424887320,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41435385","duration":240,"bikeId":"7752","endDate":1424887620,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1424887380,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41435463","duration":420,"bikeId":"3380","endDate":1424887860,"endStationId":"318","endStationName":"Sackville Street, Mayfair","startDate":1424887440,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41435567","duration":660,"bikeId":"2471","endDate":1424888220,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424887560,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41435627","duration":480,"bikeId":"5413","endDate":1424888100,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424887620,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41435645","duration":540,"bikeId":"5699","endDate":1424888220,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424887680,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"41435770","duration":600,"bikeId":"6455","endDate":1424888400,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424887800,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41435802","duration":1080,"bikeId":"3806","endDate":1424888940,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1424887860,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41435847","duration":540,"bikeId":"5911","endDate":1424888460,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1424887920,"startStationId":"291","startStationName":"Claverton Street, Pimlico"}, +{"_id":"41435946","duration":900,"bikeId":"1544","endDate":1424888940,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424888040,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41435967","duration":960,"bikeId":"1092","endDate":1424889060,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1424888100,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41436087","duration":600,"bikeId":"6517","endDate":1424888820,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424888220,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41436167","duration":1140,"bikeId":"10228","endDate":1424889480,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424888340,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41436207","duration":600,"bikeId":"3164","endDate":1424889000,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1424888400,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41436228","duration":1020,"bikeId":"6363","endDate":1424889480,"endStationId":"652","endStationName":"Evesham Street, Avondale","startDate":1424888460,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41436342","duration":480,"bikeId":"10986","endDate":1424889060,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1424888580,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41436378","duration":840,"bikeId":"10885","endDate":1424889480,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424888640,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41436454","duration":780,"bikeId":"7682","endDate":1424889540,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1424888760,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41436504","duration":0,"bikeId":"9882","endDate":1424888820,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424888820,"startStationId":"314","startStationName":"Tyers Gate, Bermondsey"}, +{"_id":"41436598","duration":1140,"bikeId":"2206","endDate":1424890080,"endStationId":"37","endStationName":"Penywern Road, Earl's Court","startDate":1424888940,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"41436668","duration":360,"bikeId":"7612","endDate":1424889420,"endStationId":"761","endStationName":"Humbolt Road, Fulham","startDate":1424889060,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"41436728","duration":900,"bikeId":"312","endDate":1424890080,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1424889180,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41436842","duration":1320,"bikeId":"9284","endDate":1424890620,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1424889300,"startStationId":"583","startStationName":"Abingdon Green, Great College Street"}, +{"_id":"41436860","duration":180,"bikeId":"9519","endDate":1424889540,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1424889360,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41436904","duration":480,"bikeId":"5834","endDate":1424889900,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1424889420,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"41437012","duration":840,"bikeId":"9815","endDate":1424890380,"endStationId":"544","endStationName":"Percival Street, Finsbury","startDate":1424889540,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41437052","duration":960,"bikeId":"4803","endDate":1424890560,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1424889600,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41437152","duration":480,"bikeId":"6873","endDate":1424890200,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424889720,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"41437246","duration":720,"bikeId":"9875","endDate":1424890560,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1424889840,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41437269","duration":1140,"bikeId":"10780","endDate":1424891040,"endStationId":"700","endStationName":"Battersea Church Road, Battersea","startDate":1424889900,"startStationId":"558","startStationName":"Page Street, Westminster"}, +{"_id":"41437356","duration":900,"bikeId":"433","endDate":1424890920,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1424890020,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41437409","duration":960,"bikeId":"9666","endDate":1424891100,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1424890140,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41437508","duration":360,"bikeId":"7346","endDate":1424890620,"endStationId":"747","endStationName":"Ormonde Gate, Chelsea","startDate":1424890260,"startStationId":"610","startStationName":"Danvers Street, West Chelsea"}, +{"_id":"41437565","duration":240,"bikeId":"12061","endDate":1424890620,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1424890380,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41437612","duration":660,"bikeId":"5318","endDate":1424891100,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1424890440,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41437663","duration":540,"bikeId":"1371","endDate":1424891100,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424890560,"startStationId":"114","startStationName":"Park Road (Baker Street), Regent's Park"}, +{"_id":"41437733","duration":480,"bikeId":"10942","endDate":1424891220,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424890740,"startStationId":"136","startStationName":"Queen Victoria Street, St. Paul's"}, +{"_id":"41437797","duration":360,"bikeId":"3849","endDate":1424891220,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1424890860,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41437876","duration":720,"bikeId":"8614","endDate":1424891700,"endStationId":"392","endStationName":"Imperial College, Knightsbridge","startDate":1424890980,"startStationId":"389","startStationName":"Upper Grosvenor Street, Mayfair"}, +{"_id":"41437955","duration":1020,"bikeId":"1020","endDate":1424892120,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1424891100,"startStationId":"388","startStationName":"Southampton Street, Strand"}, +{"_id":"41438014","duration":1440,"bikeId":"7937","endDate":1424892720,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1424891280,"startStationId":"389","startStationName":"Upper Grosvenor Street, Mayfair"}, +{"_id":"41438092","duration":960,"bikeId":"4147","endDate":1424892360,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1424891400,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"41438136","duration":120,"bikeId":"12898","endDate":1424891640,"endStationId":"124","endStationName":"Eaton Square, Belgravia","startDate":1424891520,"startStationId":"207","startStationName":"Grosvenor Crescent, Belgravia"}, +{"_id":"41438215","duration":180,"bikeId":"7349","endDate":1424891820,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1424891640,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41438291","duration":540,"bikeId":"8614","endDate":1424892360,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1424891820,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41438358","duration":1680,"bikeId":"4129","endDate":1424893680,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1424892000,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41438416","duration":180,"bikeId":"1041","endDate":1424892300,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424892120,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"41438475","duration":17400,"bikeId":"1923","endDate":1424909700,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1424892300,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"41438537","duration":780,"bikeId":"12081","endDate":1424893260,"endStationId":"538","endStationName":"Naval Row, Blackwall","startDate":1424892480,"startStationId":"496","startStationName":"Devons Road, Bow"}, +{"_id":"41438620","duration":180,"bikeId":"6430","endDate":1424892840,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1424892660,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41438692","duration":180,"bikeId":"7729","endDate":1424893020,"endStationId":"467","endStationName":"Southern Grove, Bow","startDate":1424892840,"startStationId":"518","startStationName":"Antill Road, Mile End"}, +{"_id":"41438746","duration":300,"bikeId":"4823","endDate":1424893260,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1424892960,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41438807","duration":540,"bikeId":"9652","endDate":1424893680,"endStationId":"521","endStationName":"Driffield Road, Old Ford","startDate":1424893140,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"41438887","duration":1620,"bikeId":"10875","endDate":1424894940,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1424893320,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41438963","duration":360,"bikeId":"10199","endDate":1424893920,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1424893560,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"41439037","duration":1020,"bikeId":"11317","endDate":1424894820,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1424893800,"startStationId":"475","startStationName":"Lightermans Road, Millwall"}, +{"_id":"41439094","duration":1200,"bikeId":"7382","endDate":1424895180,"endStationId":"512","endStationName":"Pritchard's Road, Bethnal Green","startDate":1424893980,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41439170","duration":120,"bikeId":"3268","endDate":1424894280,"endStationId":"81","endStationName":"Great Titchfield Street, Fitzrovia","startDate":1424894160,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"41439236","duration":1020,"bikeId":"10113","endDate":1424895420,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1424894400,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41439292","duration":1620,"bikeId":"4177","endDate":1424896260,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1424894640,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41439368","duration":300,"bikeId":"11881","endDate":1424895180,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1424894880,"startStationId":"333","startStationName":"Palace Gardens Terrace, Notting Hill"}, +{"_id":"41439430","duration":660,"bikeId":"4718","endDate":1424895720,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1424895060,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41439495","duration":1020,"bikeId":"7709","endDate":1424896260,"endStationId":"527","endStationName":"Hansard Mews, Shepherds Bush","startDate":1424895240,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"41439553","duration":420,"bikeId":"11159","endDate":1424895900,"endStationId":"709","endStationName":"Montserrat Road , Putney","startDate":1424895480,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"41439638","duration":1020,"bikeId":"10768","endDate":1424896800,"endStationId":"506","endStationName":"Bell Lane, Liverpool Street","startDate":1424895780,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"41439698","duration":960,"bikeId":"11999","endDate":1424896980,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1424896020,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"41439760","duration":600,"bikeId":"3379","endDate":1424896860,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1424896260,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"41439828","duration":120,"bikeId":"7640","endDate":1424896740,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424896620,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41439892","duration":2580,"bikeId":"11119","endDate":1424899500,"endStationId":"681","endStationName":"Bishop's Avenue, Fulham","startDate":1424896920,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41439969","duration":600,"bikeId":"10424","endDate":1424897760,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424897160,"startStationId":"91","startStationName":"Walnut Tree Walk, Vauxhall"}, +{"_id":"41440025","duration":360,"bikeId":"6542","endDate":1424897820,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1424897460,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41440110","duration":480,"bikeId":"2028","endDate":1424898180,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424897700,"startStationId":"85","startStationName":"Tanner Street, Bermondsey"}, +{"_id":"41440156","duration":720,"bikeId":"3472","endDate":1424898660,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1424897940,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41440242","duration":600,"bikeId":"9535","endDate":1424898960,"endStationId":"447","endStationName":"Jubilee Crescent, Cubitt Town","startDate":1424898360,"startStationId":"532","startStationName":"Jubilee Plaza, Canary Wharf"}, +{"_id":"41531578","duration":120,"bikeId":"3502","endDate":1424898780,"endStationId":"550","endStationName":"Harford Street, Mile End","startDate":1424898660,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"41440370","duration":300,"bikeId":"11033","endDate":1424899260,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1424898960,"startStationId":"281","startStationName":"Smith Square, Westminster"}, +{"_id":"41440437","duration":1020,"bikeId":"12985","endDate":1424900280,"endStationId":"447","endStationName":"Jubilee Crescent, Cubitt Town","startDate":1424899260,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"41440505","duration":10740,"bikeId":"11271","endDate":1424910420,"endStationId":"518","endStationName":"Antill Road, Mile End","startDate":1424899680,"startStationId":"518","startStationName":"Antill Road, Mile End"}, +{"_id":"41440584","duration":480,"bikeId":"12448","endDate":1424900580,"endStationId":"451","endStationName":"Hermitage Court, Wapping","startDate":1424900100,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41440635","duration":720,"bikeId":"9722","endDate":1424901180,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1424900460,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41440709","duration":900,"bikeId":"7817","endDate":1424901660,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1424900760,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41440789","duration":840,"bikeId":"3110","endDate":1424902020,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1424901180,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41440861","duration":960,"bikeId":"2185","endDate":1424902560,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1424901600,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41440932","duration":840,"bikeId":"4127","endDate":1424902800,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1424901960,"startStationId":"511","startStationName":"Sutton Street, Shadwell"}, +{"_id":"41441000","duration":720,"bikeId":"1021","endDate":1424902920,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1424902200,"startStationId":"226","startStationName":"Charles II Street, West End"}, +{"_id":"41441067","duration":240,"bikeId":"4996","endDate":1424902920,"endStationId":"151","endStationName":"Chepstow Villas, Notting Hill","startDate":1424902680,"startStationId":"105","startStationName":"Westbourne Grove, Bayswater"}, +{"_id":"41441149","duration":480,"bikeId":"7512","endDate":1424903520,"endStationId":"524","endStationName":"Lancaster Gate , Bayswater","startDate":1424903040,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41441218","duration":360,"bikeId":"9821","endDate":1424903880,"endStationId":"662","endStationName":"Phene Street, Chelsea","startDate":1424903520,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41441269","duration":120,"bikeId":"6968","endDate":1424903880,"endStationId":"769","endStationName":"Sandilands Road, Walham Green","startDate":1424903760,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41441347","duration":1500,"bikeId":"8044","endDate":1424905860,"endStationId":"710","endStationName":"Albert Bridge Road, Battersea Park","startDate":1424904360,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"41441414","duration":420,"bikeId":"153","endDate":1424905380,"endStationId":"289","endStationName":"South Audley Street, Mayfair","startDate":1424904960,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41441482","duration":360,"bikeId":"7747","endDate":1424905920,"endStationId":"296","endStationName":"Knaresborough Place, Earl's Court","startDate":1424905560,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41441553","duration":1740,"bikeId":"8442","endDate":1424907720,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1424905980,"startStationId":"83","startStationName":"Panton Street, West End"}, +{"_id":"41441624","duration":1140,"bikeId":"8202","endDate":1424907720,"endStationId":"30","endStationName":"Windsor Terrace, Hoxton","startDate":1424906580,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41441696","duration":420,"bikeId":"10905","endDate":1424907660,"endStationId":"771","endStationName":"Rifle Place, Avondale","startDate":1424907240,"startStationId":"337","startStationName":"Pembridge Villas, Notting Hill"}, +{"_id":"41441769","duration":1320,"bikeId":"1362","endDate":1424909400,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424908080,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41441833","duration":300,"bikeId":"10762","endDate":1424909340,"endStationId":"279","endStationName":"North Wharf Road, Paddington","startDate":1424909040,"startStationId":"759","startStationName":"Broadley Terrace, Marylebone"}, +{"_id":"41441900","duration":360,"bikeId":"6064","endDate":1424911020,"endStationId":"746","endStationName":"Lots Road, West Chelsea","startDate":1424910660,"startStationId":"737","startStationName":"Fulham Broadway, Walham Green"}, +{"_id":"41441968","duration":600,"bikeId":"10127","endDate":1424913060,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1424912460,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41442041","duration":300,"bikeId":"6545","endDate":1424914260,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1424913960,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"41442111","duration":3000,"bikeId":"2974","endDate":1424920020,"endStationId":"274","endStationName":"Warwick Road, Olympia","startDate":1424917020,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41442199","duration":4380,"bikeId":"2852","endDate":1424925840,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1424921460,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41442280","duration":480,"bikeId":"8377","endDate":1424927760,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1424927280,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"41442347","duration":840,"bikeId":"4453","endDate":1424930820,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1424929980,"startStationId":"297","startStationName":"Geraldine Street, Elephant & Castle"}, +{"_id":"41442412","duration":420,"bikeId":"10183","endDate":1424931420,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424931000,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41442482","duration":420,"bikeId":"5846","endDate":1424932080,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1424931660,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41442547","duration":960,"bikeId":"4048","endDate":1424933100,"endStationId":"668","endStationName":"Ravenscourt Park Station, Hammersmith","startDate":1424932140,"startStationId":"671","startStationName":"Parsons Green Station, Parsons Green"}, +{"_id":"41442602","duration":1260,"bikeId":"4847","endDate":1424933760,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1424932500,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"41442672","duration":900,"bikeId":"5721","endDate":1424933760,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1424932860,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41442752","duration":360,"bikeId":"12365","endDate":1424933640,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1424933280,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41442815","duration":1920,"bikeId":"7131","endDate":1424935440,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1424933520,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41442881","duration":1680,"bikeId":"10942","endDate":1424935440,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1424933760,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41442948","duration":660,"bikeId":"3749","endDate":1424934660,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1424934000,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41443012","duration":900,"bikeId":"5104","endDate":1424935140,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1424934240,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"41443081","duration":480,"bikeId":"12786","endDate":1424934960,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424934480,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41443154","duration":300,"bikeId":"4680","endDate":1424934960,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424934660,"startStationId":"308","startStationName":"Long Lane , Bermondsey"}, +{"_id":"41443202","duration":540,"bikeId":"3146","endDate":1424935380,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1424934840,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41443280","duration":720,"bikeId":"2717","endDate":1424935740,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1424935020,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41443345","duration":1500,"bikeId":"7092","endDate":1424936700,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1424935200,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41443402","duration":780,"bikeId":"7327","endDate":1424936100,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1424935320,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41443455","duration":1080,"bikeId":"8500","endDate":1424936520,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1424935440,"startStationId":"117","startStationName":"Lollard Street, Vauxhall"}, +{"_id":"41443526","duration":780,"bikeId":"4082","endDate":1424936400,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1424935620,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41443585","duration":120,"bikeId":"289","endDate":1424935860,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1424935740,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41443646","duration":1320,"bikeId":"2768","endDate":1424937180,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424935860,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"41443734","duration":180,"bikeId":"10633","endDate":1424936160,"endStationId":"613","endStationName":"Woodstock Grove, Shepherd's Bush","startDate":1424935980,"startStationId":"657","startStationName":"Blythe Road West, Shepherd's Bush"}, +{"_id":"41443793","duration":600,"bikeId":"3914","endDate":1424936700,"endStationId":"359","endStationName":"Butler Place, Westminster","startDate":1424936100,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41443884","duration":600,"bikeId":"210","endDate":1424936820,"endStationId":"570","endStationName":"Upper Bank Street, Canary Wharf","startDate":1424936220,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41443924","duration":540,"bikeId":"2604","endDate":1424936880,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1424936340,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41444036","duration":540,"bikeId":"6017","endDate":1424937000,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424936460,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41444073","duration":1140,"bikeId":"10796","endDate":1424937660,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1424936520,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41444159","duration":960,"bikeId":"9926","endDate":1424937600,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424936640,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"41444214","duration":600,"bikeId":"10311","endDate":1424937300,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424936700,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41444273","duration":360,"bikeId":"11403","endDate":1424937120,"endStationId":"659","endStationName":"Grant Road West, Clapham Junction","startDate":1424936760,"startStationId":"675","startStationName":"Usk Road, Battersea"}, +{"_id":"41444368","duration":840,"bikeId":"3521","endDate":1424937720,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1424936880,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41444423","duration":300,"bikeId":"9873","endDate":1424937240,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1424936940,"startStationId":"445","startStationName":"Cheshire Street, Bethnal Green"}, +{"_id":"41444474","duration":1800,"bikeId":"4832","endDate":1424938860,"endStationId":"119","endStationName":"Bath Street, St. Luke's","startDate":1424937060,"startStationId":"186","startStationName":"South Wharf Road, Paddington"}, +{"_id":"41444543","duration":1260,"bikeId":"11952","endDate":1424938380,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1424937120,"startStationId":"89","startStationName":"Tavistock Place, Bloomsbury"}, +{"_id":"41444623","duration":720,"bikeId":"12953","endDate":1424937960,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1424937240,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41444711","duration":840,"bikeId":"10174","endDate":1424938200,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424937360,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41444748","duration":960,"bikeId":"11827","endDate":1424938440,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1424937480,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"41444810","duration":1140,"bikeId":"10669","endDate":1424938680,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1424937540,"startStationId":"689","startStationName":"Spanish Road, Wandsworth"}, +{"_id":"41444908","duration":720,"bikeId":"12497","endDate":1424938380,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1424937660,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41444959","duration":600,"bikeId":"3504","endDate":1424938320,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424937720,"startStationId":"722","startStationName":"Finnis Street, Bethnal Green"}, +{"_id":"41445021","duration":240,"bikeId":"5073","endDate":1424938020,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1424937780,"startStationId":"86","startStationName":"Sancroft Street, Vauxhall"}, +{"_id":"41445086","duration":1500,"bikeId":"10158","endDate":1424939400,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1424937900,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41445132","duration":1560,"bikeId":"5275","endDate":1424939520,"endStationId":"277","endStationName":"Kensington Church Street, Kensington","startDate":1424937960,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41445223","duration":1140,"bikeId":"946","endDate":1424939160,"endStationId":"118","endStationName":"Rochester Row, Westminster","startDate":1424938020,"startStationId":"232","startStationName":"Carey Street, Holborn"}, +{"_id":"41445327","duration":900,"bikeId":"9041","endDate":1424939040,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1424938140,"startStationId":"453","startStationName":"Garnet Street, Shadwell"}, +{"_id":"41445391","duration":900,"bikeId":"2212","endDate":1424939100,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1424938200,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41445407","duration":360,"bikeId":"6660","endDate":1424938620,"endStationId":"611","endStationName":"Princedale Road , Holland Park","startDate":1424938260,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41445481","duration":600,"bikeId":"1192","endDate":1424938920,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1424938320,"startStationId":"439","startStationName":"Killick Street, Kings Cross"}, +{"_id":"41445561","duration":600,"bikeId":"9230","endDate":1424938980,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1424938380,"startStationId":"674","startStationName":"Carnegie Street, King's Cross"}, +{"_id":"41445612","duration":480,"bikeId":"10157","endDate":1424938920,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1424938440,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41445649","duration":960,"bikeId":"11067","endDate":1424939460,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1424938500,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41445806","duration":540,"bikeId":"1307","endDate":1424939160,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424938620,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41445753","duration":900,"bikeId":"12630","endDate":1424939520,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424938620,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41445885","duration":420,"bikeId":"7122","endDate":1424939160,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1424938740,"startStationId":"403","startStationName":"George Place Mews, Marylebone"}, +{"_id":"41445962","duration":720,"bikeId":"11884","endDate":1424939520,"endStationId":"184","endStationName":"Portland Place, Marylebone","startDate":1424938800,"startStationId":"110","startStationName":"Wellington Road, St. John's Wood"}, +{"_id":"41446037","duration":360,"bikeId":"9648","endDate":1424939220,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1424938860,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"41446108","duration":720,"bikeId":"12056","endDate":1424939640,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1424938920,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41446140","duration":120,"bikeId":"4232","endDate":1424939100,"endStationId":"478","endStationName":"Stepney Green Station, Stepney","startDate":1424938980,"startStationId":"561","startStationName":"Rectory Square, Stepney"}, +{"_id":"41446230","duration":240,"bikeId":"11112","endDate":1424939280,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1424939040,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41446298","duration":300,"bikeId":"487","endDate":1424939400,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1424939100,"startStationId":"509","startStationName":"Fore Street, Guildhall"}, +{"_id":"41446313","duration":1140,"bikeId":"651","endDate":1424940300,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424939160,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41446399","duration":600,"bikeId":"4085","endDate":1424939820,"endStationId":"17","endStationName":"Hatton Wall, Holborn","startDate":1424939220,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41446530","duration":1200,"bikeId":"2550","endDate":1424940480,"endStationId":"448","endStationName":"Fishermans Walk West, Canary Wharf","startDate":1424939280,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41446550","duration":720,"bikeId":"9632","endDate":1424940060,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1424939340,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41446608","duration":1140,"bikeId":"10659","endDate":1424940540,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1424939400,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41446680","duration":1140,"bikeId":"12602","endDate":1424940600,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1424939460,"startStationId":"468","startStationName":"Cantrell Road, Bow"}, +{"_id":"41446783","duration":480,"bikeId":"11721","endDate":1424940000,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424939520,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"41446749","duration":600,"bikeId":"10039","endDate":1424940120,"endStationId":"135","endStationName":"Clerkenwell Green, Clerkenwell","startDate":1424939520,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41446943","duration":600,"bikeId":"3131","endDate":1424940240,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1424939640,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41447022","duration":1260,"bikeId":"5021","endDate":1424940960,"endStationId":"353","endStationName":"Greycoat Street , Westminster","startDate":1424939700,"startStationId":"670","startStationName":"Ashley Crescent, Battersea"}, +{"_id":"41447035","duration":840,"bikeId":"2831","endDate":1424940600,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424939760,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41447069","duration":780,"bikeId":"3817","endDate":1424940540,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1424939760,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"41447144","duration":300,"bikeId":"5360","endDate":1424940120,"endStationId":"357","endStationName":"Howland Street, Fitzrovia","startDate":1424939820,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"41447197","duration":1260,"bikeId":"268","endDate":1424941140,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1424939880,"startStationId":"698","startStationName":"Shoreditch Court, Haggerston"}, +{"_id":"41447288","duration":780,"bikeId":"7649","endDate":1424940720,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1424939940,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"41447356","duration":360,"bikeId":"2068","endDate":1424940360,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424940000,"startStationId":"202","startStationName":"Leman Street, Aldgate"}, +{"_id":"41447397","duration":1020,"bikeId":"5220","endDate":1424941080,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424940060,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41447470","duration":840,"bikeId":"1250","endDate":1424940960,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1424940120,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41447544","duration":1140,"bikeId":"12467","endDate":1424941320,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1424940180,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"41447651","duration":420,"bikeId":"8202","endDate":1424940660,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424940240,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41447713","duration":1500,"bikeId":"12845","endDate":1424941800,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1424940300,"startStationId":"655","startStationName":"Crabtree Lane, Fulham"}, +{"_id":"41447797","duration":600,"bikeId":"1226","endDate":1424940960,"endStationId":"276","endStationName":"Lower Thames Street, Monument","startDate":1424940360,"startStationId":"52","startStationName":"Roscoe Street, St. Luke's"}, +{"_id":"41447745","duration":1800,"bikeId":"1524","endDate":1424942160,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424940360,"startStationId":"290","startStationName":"Winsland Street, Paddington"}, +{"_id":"41447885","duration":840,"bikeId":"2665","endDate":1424941260,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1424940420,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"41447922","duration":660,"bikeId":"9974","endDate":1424941140,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1424940480,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"41448010","duration":240,"bikeId":"3044","endDate":1424940780,"endStationId":"659","endStationName":"Grant Road West, Clapham Junction","startDate":1424940540,"startStationId":"673","startStationName":"Hibbert Street, Battersea"}, +{"_id":"41448083","duration":540,"bikeId":"10198","endDate":1424941140,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1424940600,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"41448152","duration":480,"bikeId":"9599","endDate":1424941140,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1424940660,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41448183","duration":540,"bikeId":"11536","endDate":1424941260,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1424940720,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41448301","duration":480,"bikeId":"10941","endDate":1424941320,"endStationId":"360","endStationName":"Howick Place, Westminster","startDate":1424940840,"startStationId":"146","startStationName":"Vauxhall Bridge , Pimlico"}, +{"_id":"41449921","duration":1200,"bikeId":"10353","endDate":1424942100,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1424940900,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41448411","duration":360,"bikeId":"4223","endDate":1424941320,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1424940960,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41448460","duration":1320,"bikeId":"8929","endDate":1424942340,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1424941020,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41448562","duration":1200,"bikeId":"9655","endDate":1424942280,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1424941080,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"41448573","duration":660,"bikeId":"9443","endDate":1424941800,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1424941140,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"41448693","duration":720,"bikeId":"10756","endDate":1424941980,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424941260,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41448757","duration":900,"bikeId":"2582","endDate":1424942220,"endStationId":"314","endStationName":"Tyers Gate, Bermondsey","startDate":1424941320,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41448818","duration":600,"bikeId":"9364","endDate":1424941980,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1424941380,"startStationId":"187","startStationName":"Queen's Gate (South), South Kensington"}, +{"_id":"41448879","duration":1020,"bikeId":"1668","endDate":1424942460,"endStationId":"264","endStationName":"Tysoe Street, Clerkenwell","startDate":1424941440,"startStationId":"718","startStationName":"Ada Street, Hackney Central"}, +{"_id":"41448954","duration":360,"bikeId":"1735","endDate":1424941920,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1424941560,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"41448995","duration":1140,"bikeId":"8042","endDate":1424942760,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1424941620,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"41449130","duration":660,"bikeId":"9646","endDate":1424942400,"endStationId":"205","endStationName":"New Road 2, Whitechapel","startDate":1424941740,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41449136","duration":360,"bikeId":"5989","endDate":1424942160,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1424941800,"startStationId":"485","startStationName":"Old Ford Road, Bethnal Green"}, +{"_id":"41449207","duration":1380,"bikeId":"5215","endDate":1424943240,"endStationId":"231","endStationName":"Queen's Gate (Central), South Kensington","startDate":1424941860,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41449306","duration":720,"bikeId":"7326","endDate":1424942700,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1424941980,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41449361","duration":300,"bikeId":"6050","endDate":1424942400,"endStationId":"284","endStationName":"Lambeth North Station, Waterloo","startDate":1424942100,"startStationId":"117","startStationName":"Lollard Street, Vauxhall"}, +{"_id":"41449421","duration":1320,"bikeId":"9739","endDate":1424943540,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1424942220,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41449478","duration":540,"bikeId":"5180","endDate":1424942820,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1424942280,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"41449555","duration":1560,"bikeId":"1260","endDate":1424943960,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424942400,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"41449597","duration":960,"bikeId":"1364","endDate":1424943480,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1424942520,"startStationId":"312","startStationName":"Grove End Road, St. John's Wood"}, +{"_id":"41449691","duration":780,"bikeId":"4441","endDate":1424943480,"endStationId":"141","endStationName":"Chapel Place, Marylebone","startDate":1424942700,"startStationId":"316","startStationName":"Cardinal Place, Victoria"}, +{"_id":"41449755","duration":660,"bikeId":"10036","endDate":1424943480,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1424942820,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41449824","duration":1200,"bikeId":"12860","endDate":1424944200,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1424943000,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"41449879","duration":900,"bikeId":"12145","endDate":1424944020,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1424943120,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"41449986","duration":720,"bikeId":"4071","endDate":1424944080,"endStationId":"276","endStationName":"Lower Thames Street, Monument","startDate":1424943360,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41450014","duration":900,"bikeId":"2910","endDate":1424944380,"endStationId":"174","endStationName":"Strand, Strand","startDate":1424943480,"startStationId":"61","startStationName":"Great Dover Street, Borough"}, +{"_id":"41450096","duration":540,"bikeId":"1872","endDate":1424944200,"endStationId":"310","endStationName":"Black Prince Road, Vauxhall","startDate":1424943660,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"41450179","duration":900,"bikeId":"10009","endDate":1424944680,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1424943780,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41450234","duration":660,"bikeId":"11925","endDate":1424944620,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1424943960,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"41450317","duration":360,"bikeId":"4234","endDate":1424944500,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1424944140,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41450371","duration":120,"bikeId":"3261","endDate":1424944440,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1424944320,"startStationId":"233","startStationName":"Pall Mall East, West End"}, +{"_id":"41450440","duration":480,"bikeId":"7232","endDate":1424944980,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1424944500,"startStationId":"168","startStationName":"Argyll Road, Kensington"}, +{"_id":"41450510","duration":1200,"bikeId":"10630","endDate":1424945940,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1424944740,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41450583","duration":360,"bikeId":"8111","endDate":1424945340,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424944980,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41450654","duration":840,"bikeId":"12189","endDate":1424946120,"endStationId":"400","endStationName":"George Street, Marylebone","startDate":1424945280,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41450714","duration":780,"bikeId":"7740","endDate":1424946300,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1424945520,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41450774","duration":1140,"bikeId":"8872","endDate":1424947020,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1424945880,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"41450844","duration":720,"bikeId":"128","endDate":1424946900,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1424946180,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"41450906","duration":1440,"bikeId":"9689","endDate":1424947860,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1424946420,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41450977","duration":240,"bikeId":"7071","endDate":1424947020,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1424946780,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"41451051","duration":540,"bikeId":"3942","endDate":1424947680,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1424947140,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41451101","duration":1200,"bikeId":"8059","endDate":1424948640,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1424947440,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"41451182","duration":240,"bikeId":"10003","endDate":1424948160,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1424947920,"startStationId":"131","startStationName":"Eversholt Street , Camden Town"}, +{"_id":"41451247","duration":2040,"bikeId":"8675","endDate":1424950920,"endStationId":"224","endStationName":"Whiteley's, Bayswater","startDate":1424948880,"startStationId":"178","startStationName":"Warwick Square, Pimlico"}, +{"_id":"41451314","duration":840,"bikeId":"5060","endDate":1424950620,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1424949780,"startStationId":"330","startStationName":"Eastbourne Mews, Paddington"}, +{"_id":"41451379","duration":840,"bikeId":"10542","endDate":1424951460,"endStationId":"83","endStationName":"Panton Street, West End","startDate":1424950620,"startStationId":"425","startStationName":"Harrington Square 2, Camden Town"}, +{"_id":"41451437","duration":1500,"bikeId":"11065","endDate":1424952780,"endStationId":"625","endStationName":"Queen's Circus, Battersea Park","startDate":1424951280,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41451509","duration":1560,"bikeId":"5473","endDate":1424953860,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1424952300,"startStationId":"777","startStationName":"Limburg Road, Clapham Common"}, +{"_id":"41451578","duration":720,"bikeId":"12775","endDate":1424953740,"endStationId":"366","endStationName":"Millennium Hotel, Mayfair","startDate":1424953020,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41451642","duration":780,"bikeId":"5952","endDate":1424954700,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1424953920,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"41451712","duration":600,"bikeId":"11749","endDate":1424955420,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1424954820,"startStationId":"200","startStationName":"LMU Commercial Road, Whitechapel"}, +{"_id":"41451773","duration":1620,"bikeId":"4394","endDate":1424957220,"endStationId":"379","endStationName":"Turquoise Island, Notting Hill","startDate":1424955600,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41451837","duration":300,"bikeId":"10604","endDate":1424956500,"endStationId":"738","endStationName":"Imperial Road, Sands End","startDate":1424956200,"startStationId":"691","startStationName":"Erin Close, Walham Green"}, +{"_id":"41451908","duration":180,"bikeId":"1752","endDate":1424957280,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1424957100,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41451969","duration":480,"bikeId":"6198","endDate":1424958480,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1424958000,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41452046","duration":240,"bikeId":"7750","endDate":1424959020,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1424958780,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41452114","duration":600,"bikeId":"1029","endDate":1424960100,"endStationId":"188","endStationName":"Nutford Place, Marylebone","startDate":1424959500,"startStationId":"366","startStationName":"Millennium Hotel, Mayfair"}, +{"_id":"41452183","duration":1560,"bikeId":"9810","endDate":1424961720,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1424960160,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41452241","duration":540,"bikeId":"5797","endDate":1424961420,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1424960880,"startStationId":"742","startStationName":"Blenheim Crescent, Ladbroke Grove"}, +{"_id":"41452316","duration":540,"bikeId":"3495","endDate":1424962080,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1424961540,"startStationId":"432","startStationName":"Exhibition Road Museums, Knightsbridge"}, +{"_id":"41452385","duration":420,"bikeId":"9603","endDate":1424962560,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1424962140,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41452450","duration":360,"bikeId":"11888","endDate":1424962980,"endStationId":"36","endStationName":"De Vere Gardens, Kensington","startDate":1424962620,"startStationId":"155","startStationName":"Lexham Gardens, Kensington"}, +{"_id":"41452519","duration":1560,"bikeId":"11783","endDate":1424964660,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1424963100,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41452590","duration":720,"bikeId":"11047","endDate":1424964180,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1424963460,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41452659","duration":300,"bikeId":"9657","endDate":1424964120,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1424963820,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"41452716","duration":1800,"bikeId":"10851","endDate":1424965920,"endStationId":"156","endStationName":"New Kent Road, Borough","startDate":1424964120,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41452791","duration":180,"bikeId":"2737","endDate":1424964660,"endStationId":"755","endStationName":"The Vale, Chelsea","startDate":1424964480,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41452849","duration":540,"bikeId":"12289","endDate":1424965320,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1424964780,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41452927","duration":240,"bikeId":"4877","endDate":1424965440,"endStationId":"149","endStationName":"Kennington Road Post Office, Oval","startDate":1424965200,"startStationId":"654","startStationName":"Ashmole Estate, Oval"}, +{"_id":"41453007","duration":360,"bikeId":"13011","endDate":1424965860,"endStationId":"333","endStationName":"Palace Gardens Terrace, Notting Hill","startDate":1424965500,"startStationId":"375","startStationName":"Kensington Town Hall, Kensington"}, +{"_id":"41453059","duration":240,"bikeId":"13075","endDate":1424965980,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1424965740,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"41453134","duration":480,"bikeId":"11552","endDate":1424966580,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1424966100,"startStationId":"28","startStationName":"Bolsover Street, Fitzrovia"}, +{"_id":"41453197","duration":840,"bikeId":"1477","endDate":1424967180,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424966340,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41453270","duration":600,"bikeId":"10506","endDate":1424967240,"endStationId":"87","endStationName":"Devonshire Square, Liverpool Street","startDate":1424966640,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41453336","duration":960,"bikeId":"7070","endDate":1424967840,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424966880,"startStationId":"69","startStationName":"Euston Road, Euston"}, +{"_id":"41453402","duration":180,"bikeId":"1764","endDate":1424967360,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424967180,"startStationId":"441","startStationName":"Sail Street, Vauxhall"}, +{"_id":"41453462","duration":540,"bikeId":"2870","endDate":1424967960,"endStationId":"27","endStationName":"Bouverie Street, Temple","startDate":1424967420,"startStationId":"77","startStationName":"Russell Square Station, Bloomsbury"}, +{"_id":"41453521","duration":1260,"bikeId":"8810","endDate":1424968860,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1424967600,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41453588","duration":360,"bikeId":"2457","endDate":1424968200,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1424967840,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41453659","duration":360,"bikeId":"12971","endDate":1424968380,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1424968020,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41453730","duration":2820,"bikeId":"12491","endDate":1424971080,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1424968260,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"41453803","duration":480,"bikeId":"3480","endDate":1424968920,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1424968440,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"41453869","duration":480,"bikeId":"11888","endDate":1424969100,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1424968620,"startStationId":"36","startStationName":"De Vere Gardens, Kensington"}, +{"_id":"41453937","duration":540,"bikeId":"8177","endDate":1424969340,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1424968800,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41453989","duration":20400,"bikeId":"5569","endDate":1424989380,"endStationId":"768","endStationName":"Clapham Common Northside, Clapham Common","startDate":1424968980,"startStationId":"768","startStationName":"Clapham Common Northside, Clapham Common"}, +{"_id":"41454072","duration":300,"bikeId":"6677","endDate":1424969460,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1424969160,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"41454129","duration":720,"bikeId":"6853","endDate":1424970060,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1424969340,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41454200","duration":3060,"bikeId":"7098","endDate":1424972580,"endStationId":"257","endStationName":"Westminster University, Marylebone","startDate":1424969520,"startStationId":"257","startStationName":"Westminster University, Marylebone"}, +{"_id":"41454287","duration":960,"bikeId":"9329","endDate":1424970720,"endStationId":"163","endStationName":"Sloane Avenue, Knightsbridge","startDate":1424969760,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"41454333","duration":840,"bikeId":"7491","endDate":1424970720,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424969880,"startStationId":"498","startStationName":"Bow Road Station, Bow"}, +{"_id":"41454388","duration":660,"bikeId":"1241","endDate":1424970660,"endStationId":"289","endStationName":"South Audley Street, Mayfair","startDate":1424970000,"startStationId":"49","startStationName":"Curzon Street, Mayfair"}, +{"_id":"41454466","duration":780,"bikeId":"7609","endDate":1424970900,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424970120,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41454575","duration":1500,"bikeId":"6734","endDate":1424971740,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424970240,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41454609","duration":1080,"bikeId":"565","endDate":1424971380,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1424970300,"startStationId":"276","startStationName":"Lower Thames Street, Monument"}, +{"_id":"41454673","duration":1200,"bikeId":"10422","endDate":1424971620,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1424970420,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41454737","duration":1080,"bikeId":"82","endDate":1424971620,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1424970540,"startStationId":"288","startStationName":"Elizabeth Bridge, Victoria"}, +{"_id":"41454812","duration":2220,"bikeId":"6739","endDate":1424972880,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1424970660,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41454897","duration":1800,"bikeId":"7457","endDate":1424972580,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1424970780,"startStationId":"259","startStationName":"Embankment (Horse Guards), Westminster"}, +{"_id":"41454937","duration":2460,"bikeId":"9943","endDate":1424973300,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1424970840,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41455002","duration":420,"bikeId":"12021","endDate":1424971380,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1424970960,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41455083","duration":480,"bikeId":"7100","endDate":1424971560,"endStationId":"421","endStationName":"Southwark Station 2, Southwark","startDate":1424971080,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41455142","duration":300,"bikeId":"10661","endDate":1424971500,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1424971200,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41455215","duration":300,"bikeId":"13018","endDate":1424971620,"endStationId":"669","endStationName":"Teversham Lane, Stockwell","startDate":1424971320,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41455275","duration":720,"bikeId":"5425","endDate":1424972160,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1424971440,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41455361","duration":540,"bikeId":"9810","endDate":1424972100,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424971560,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41455411","duration":240,"bikeId":"6291","endDate":1424971920,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1424971680,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41455473","duration":1140,"bikeId":"7585","endDate":1424972940,"endStationId":"42","endStationName":"Wenlock Road , Hoxton","startDate":1424971800,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41455532","duration":1380,"bikeId":"5898","endDate":1424973240,"endStationId":"725","endStationName":"Thessaly Road North, Nine Elms","startDate":1424971860,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41455621","duration":180,"bikeId":"3606","endDate":1424972160,"endStationId":"344","endStationName":"Goswell Road (City Uni), Finsbury","startDate":1424971980,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41455690","duration":720,"bikeId":"8302","endDate":1424972760,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1424972040,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"41455743","duration":540,"bikeId":"10664","endDate":1424972700,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424972160,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41455821","duration":480,"bikeId":"7000","endDate":1424972700,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1424972220,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"41455859","duration":600,"bikeId":"11413","endDate":1424972880,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1424972280,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"41455942","duration":600,"bikeId":"2138","endDate":1424973000,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1424972400,"startStationId":"170","startStationName":"Hardwick Street, Clerkenwell"}, +{"_id":"41456025","duration":180,"bikeId":"4616","endDate":1424972640,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1424972460,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41456078","duration":660,"bikeId":"1551","endDate":1424973180,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1424972520,"startStationId":"557","startStationName":"King Edward Street, St Pauls"}, +{"_id":"41456133","duration":300,"bikeId":"9442","endDate":1424972940,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1424972640,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41456214","duration":300,"bikeId":"11423","endDate":1424973000,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1424972700,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41456296","duration":900,"bikeId":"892","endDate":1424973720,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1424972820,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41456317","duration":1380,"bikeId":"11881","endDate":1424974260,"endStationId":"601","endStationName":"BBC White City, White City","startDate":1424972880,"startStationId":"373","startStationName":"Prince Consort Road, Knightsbridge"}, +{"_id":"41456413","duration":900,"bikeId":"6957","endDate":1424973900,"endStationId":"288","endStationName":"Elizabeth Bridge, Victoria","startDate":1424973000,"startStationId":"106","startStationName":"Woodstock Street, Mayfair"}, +{"_id":"41456445","duration":1500,"bikeId":"3016","endDate":1424974560,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1424973060,"startStationId":"51","startStationName":"Finsbury Library , Finsbury"}, +{"_id":"41456547","duration":480,"bikeId":"7541","endDate":1424973660,"endStationId":"249","endStationName":"Harper Road, Borough","startDate":1424973180,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41456587","duration":780,"bikeId":"4417","endDate":1424974020,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1424973240,"startStationId":"291","startStationName":"Claverton Street, Pimlico"}, +{"_id":"41456667","duration":720,"bikeId":"4314","endDate":1424974080,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1424973360,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41456755","duration":480,"bikeId":"4719","endDate":1424973960,"endStationId":"411","endStationName":"Walworth Road, Southwark","startDate":1424973480,"startStationId":"706","startStationName":"Snowsfields, London Bridge"}, +{"_id":"41456802","duration":1380,"bikeId":"2129","endDate":1424974920,"endStationId":"463","endStationName":"Thurtle Road, Haggerston","startDate":1424973540,"startStationId":"237","startStationName":"Vaughan Way, Wapping"}, +{"_id":"41456857","duration":120,"bikeId":"3419","endDate":1424973780,"endStationId":"209","endStationName":"Denyer Street, Knightsbridge","startDate":1424973660,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"41456950","duration":300,"bikeId":"8139","endDate":1424974080,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1424973780,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"41456969","duration":900,"bikeId":"4738","endDate":1424974740,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1424973840,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"41457066","duration":420,"bikeId":"1130","endDate":1424974380,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1424973960,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41457123","duration":420,"bikeId":"9813","endDate":1424974440,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1424974020,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41457210","duration":180,"bikeId":"3400","endDate":1424974320,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1424974140,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41457245","duration":240,"bikeId":"4889","endDate":1424974440,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1424974200,"startStationId":"606","startStationName":"Addison Road, Holland Park"}, +{"_id":"41457294","duration":540,"bikeId":"7825","endDate":1424974800,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1424974260,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41457371","duration":780,"bikeId":"9430","endDate":1424975100,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1424974320,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41457434","duration":420,"bikeId":"4329","endDate":1424974860,"endStationId":"195","endStationName":"Milroy Walk, South Bank","startDate":1424974440,"startStationId":"703","startStationName":"St. Bride Street, Holborn"}, +{"_id":"41457539","duration":840,"bikeId":"1215","endDate":1424975400,"endStationId":"36","endStationName":"De Vere Gardens, Kensington","startDate":1424974560,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41457588","duration":1500,"bikeId":"3596","endDate":1424976120,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1424974620,"startStationId":"361","startStationName":"Waterloo Station 2, Waterloo"}, +{"_id":"41457637","duration":1500,"bikeId":"12590","endDate":1424976240,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1424974740,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41457725","duration":960,"bikeId":"11033","endDate":1424975820,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1424974860,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41457778","duration":1080,"bikeId":"3357","endDate":1424976000,"endStationId":"697","endStationName":"Charlotte Terrace, Angel","startDate":1424974920,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41457834","duration":1140,"bikeId":"7091","endDate":1424976180,"endStationId":"445","endStationName":"Cheshire Street, Bethnal Green","startDate":1424975040,"startStationId":"26","startStationName":"Ampton Street , Clerkenwell"}, +{"_id":"41457921","duration":540,"bikeId":"6872","endDate":1424975700,"endStationId":"227","endStationName":"Great Percy Street, Clerkenwell","startDate":1424975160,"startStationId":"13","startStationName":"Scala Street, Fitzrovia"}, +{"_id":"41457985","duration":660,"bikeId":"3987","endDate":1424975940,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1424975280,"startStationId":"54","startStationName":"Golden Lane, Barbican"}, +{"_id":"41458064","duration":540,"bikeId":"2944","endDate":1424975880,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424975340,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41458128","duration":840,"bikeId":"12086","endDate":1424976300,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424975460,"startStationId":"436","startStationName":"Red Lion Street, Holborn"}, +{"_id":"41458209","duration":600,"bikeId":"7061","endDate":1424976180,"endStationId":"660","endStationName":"West Kensington Station, West Kensington","startDate":1424975580,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"41458262","duration":660,"bikeId":"9513","endDate":1424976360,"endStationId":"263","endStationName":"St. Mary Axe, Aldgate","startDate":1424975700,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41458333","duration":840,"bikeId":"4468","endDate":1424976600,"endStationId":"452","endStationName":"St Katharines Way, Tower","startDate":1424975760,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41458401","duration":660,"bikeId":"5664","endDate":1424976540,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424975880,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41458457","duration":720,"bikeId":"2549","endDate":1424976720,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1424976000,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41458529","duration":420,"bikeId":"8857","endDate":1424976540,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1424976120,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41458610","duration":720,"bikeId":"3489","endDate":1424976960,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1424976240,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41458645","duration":900,"bikeId":"7500","endDate":1424977260,"endStationId":"259","endStationName":"Embankment (Horse Guards), Westminster","startDate":1424976360,"startStationId":"150","startStationName":"Holy Trinity Brompton, Knightsbridge"}, +{"_id":"41458729","duration":600,"bikeId":"11948","endDate":1424977080,"endStationId":"246","endStationName":"Berry Street, Clerkenwell","startDate":1424976480,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41458784","duration":240,"bikeId":"2685","endDate":1424976840,"endStationId":"91","endStationName":"Walnut Tree Walk, Vauxhall","startDate":1424976600,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41458870","duration":900,"bikeId":"10269","endDate":1424977620,"endStationId":"679","endStationName":"Orbel Street, Battersea","startDate":1424976720,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"41458915","duration":300,"bikeId":"3235","endDate":1424977140,"endStationId":"644","endStationName":"Rainville Road, Hammersmith","startDate":1424976840,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"41458993","duration":960,"bikeId":"8282","endDate":1424977920,"endStationId":"255","endStationName":"Clifton Road, Maida Vale","startDate":1424976960,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41459060","duration":60,"bikeId":"8089","endDate":1424977140,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1424977080,"startStationId":"185","startStationName":"Alderney Street, Pimlico"}, +{"_id":"41459132","duration":600,"bikeId":"9392","endDate":1424977860,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1424977260,"startStationId":"405","startStationName":"Gloucester Road Station, South Kensington"}, +{"_id":"41459199","duration":1440,"bikeId":"9875","endDate":1424978820,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1424977380,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41459272","duration":660,"bikeId":"6963","endDate":1424978160,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1424977500,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41459353","duration":600,"bikeId":"7239","endDate":1424978280,"endStationId":"748","endStationName":"Hertford Road, De Beauvoir Town","startDate":1424977680,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"41459419","duration":1740,"bikeId":"4934","endDate":1424979540,"endStationId":"178","endStationName":"Warwick Square, Pimlico","startDate":1424977800,"startStationId":"684","startStationName":"Neville Gill Close, Wandsworth"}, +{"_id":"41459486","duration":900,"bikeId":"5556","endDate":1424978820,"endStationId":"775","endStationName":"Little Brook Green, Brook Green","startDate":1424977920,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41459534","duration":1080,"bikeId":"12787","endDate":1424979120,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1424978040,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41459618","duration":600,"bikeId":"11554","endDate":1424978760,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1424978160,"startStationId":"500","startStationName":"Sidney Street, Stepney"}, +{"_id":"41459681","duration":180,"bikeId":"6247","endDate":1424978520,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1424978340,"startStationId":"467","startStationName":"Southern Grove, Bow"}, +{"_id":"41459735","duration":960,"bikeId":"5490","endDate":1424979420,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1424978460,"startStationId":"709","startStationName":"Montserrat Road , Putney"}, +{"_id":"41459854","duration":420,"bikeId":"9139","endDate":1424979060,"endStationId":"620","endStationName":"Surrey Lane, Battersea","startDate":1424978640,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41459902","duration":420,"bikeId":"9601","endDate":1424979240,"endStationId":"173","endStationName":"Waterloo Roundabout, Waterloo","startDate":1424978820,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41459945","duration":900,"bikeId":"2746","endDate":1424979900,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1424979000,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41460014","duration":780,"bikeId":"11293","endDate":1424980020,"endStationId":"290","endStationName":"Winsland Street, Paddington","startDate":1424979240,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"41460064","duration":600,"bikeId":"12877","endDate":1424979960,"endStationId":"586","endStationName":"Mudchute DLR, Cubitt Town","startDate":1424979360,"startStationId":"510","startStationName":"Westferry DLR, Limehouse"}, +{"_id":"41460149","duration":1260,"bikeId":"12493","endDate":1424980800,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1424979540,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41460205","duration":360,"bikeId":"10873","endDate":1424980080,"endStationId":"80","endStationName":"Webber Street , Southwark","startDate":1424979720,"startStationId":"197","startStationName":"Stamford Street, South Bank"}, +{"_id":"41460290","duration":720,"bikeId":"345","endDate":1424980740,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1424980020,"startStationId":"172","startStationName":"Sumner Place, South Kensington"}, +{"_id":"41460352","duration":960,"bikeId":"9293","endDate":1424981160,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1424980200,"startStationId":"391","startStationName":"Clifford Street, Mayfair"}, +{"_id":"41460429","duration":420,"bikeId":"4956","endDate":1424980860,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1424980440,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41460485","duration":960,"bikeId":"35","endDate":1424981640,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1424980680,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41460545","duration":1320,"bikeId":"5037","endDate":1424982180,"endStationId":"486","endStationName":"Granby Street, Shoreditch","startDate":1424980860,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41460604","duration":480,"bikeId":"9189","endDate":1424981640,"endStationId":"732","endStationName":"Duke Street Hill, London Bridge","startDate":1424981160,"startStationId":"120","startStationName":"The Guildhall, Guildhall"}, +{"_id":"41460690","duration":540,"bikeId":"12444","endDate":1424982000,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1424981460,"startStationId":"43","startStationName":"Crawford Street, Marylebone"}, +{"_id":"41460736","duration":2220,"bikeId":"758","endDate":1424983860,"endStationId":"670","endStationName":"Ashley Crescent, Battersea","startDate":1424981640,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41460817","duration":180,"bikeId":"9293","endDate":1424982180,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1424982000,"startStationId":"456","startStationName":"Parkway, Camden Town"}, +{"_id":"41460886","duration":240,"bikeId":"6717","endDate":1424982600,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1424982360,"startStationId":"707","startStationName":"Barons Court Station, West Kensington"}, +{"_id":"41460951","duration":540,"bikeId":"7724","endDate":1424983200,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1424982660,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"41461017","duration":660,"bikeId":"839","endDate":1424983560,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1424982900,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"41461090","duration":480,"bikeId":"12698","endDate":1424983740,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1424983260,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41461142","duration":1500,"bikeId":"8429","endDate":1424985060,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1424983560,"startStationId":"351","startStationName":"Macclesfield Rd, St Lukes"}, +{"_id":"41461212","duration":480,"bikeId":"487","endDate":1424984460,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1424983980,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41461290","duration":1680,"bikeId":"8589","endDate":1424985960,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1424984280,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41461355","duration":420,"bikeId":"11463","endDate":1424985000,"endStationId":"558","endStationName":"Page Street, Westminster","startDate":1424984580,"startStationId":"74","startStationName":"Vauxhall Cross, Vauxhall"}, +{"_id":"41461416","duration":660,"bikeId":"2305","endDate":1424985540,"endStationId":"204","endStationName":"Margery Street, Clerkenwell","startDate":1424984880,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41461491","duration":120,"bikeId":"9895","endDate":1424985360,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1424985240,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"41461545","duration":360,"bikeId":"1795","endDate":1424985900,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424985540,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41461603","duration":540,"bikeId":"1500","endDate":1424986440,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1424985900,"startStationId":"296","startStationName":"Knaresborough Place, Earl's Court"}, +{"_id":"41461671","duration":1200,"bikeId":"7054","endDate":1424987580,"endStationId":"487","endStationName":"Canton Street, Poplar","startDate":1424986380,"startStationId":"564","startStationName":"Somerset House, Strand"}, +{"_id":"41461749","duration":660,"bikeId":"4181","endDate":1424987400,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1424986740,"startStationId":"56","startStationName":"Paddington Street, Marylebone"}, +{"_id":"41461804","duration":120,"bikeId":"11972","endDate":1424987280,"endStationId":"38","endStationName":"Abingdon Villas, Kensington","startDate":1424987160,"startStationId":"157","startStationName":"Wright's Lane, Kensington"}, +{"_id":"41461878","duration":1680,"bikeId":"8415","endDate":1424989260,"endStationId":"218","endStationName":"St. Luke's Church, Chelsea","startDate":1424987580,"startStationId":"88","startStationName":"Bayley Street , Bloomsbury"}, +{"_id":"41461940","duration":120,"bikeId":"11109","endDate":1424988180,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1424988060,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"41462014","duration":600,"bikeId":"6942","endDate":1424989020,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1424988420,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"41462080","duration":720,"bikeId":"9648","endDate":1424989500,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1424988780,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41462232","duration":600,"bikeId":"8827","endDate":1424989920,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1424989320,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41462221","duration":840,"bikeId":"1200","endDate":1424990700,"endStationId":"695","endStationName":"Islington Green, Angel","startDate":1424989860,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41462296","duration":300,"bikeId":"10580","endDate":1424990760,"endStationId":"464","endStationName":"St. Mary and St. Michael Church, Stepney","startDate":1424990460,"startStationId":"552","startStationName":"Watney Street, Shadwell"}, +{"_id":"41462365","duration":300,"bikeId":"2012","endDate":1424991240,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1424990940,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41462417","duration":300,"bikeId":"2808","endDate":1424991780,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1424991480,"startStationId":"144","startStationName":"Kennington Cross, Kennington"}, +{"_id":"41462486","duration":600,"bikeId":"4776","endDate":1424992560,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1424991960,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41462558","duration":240,"bikeId":"776","endDate":1424992860,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1424992620,"startStationId":"420","startStationName":"Southwark Station 1, Southwark"}, +{"_id":"41462621","duration":1500,"bikeId":"1123","endDate":1424994660,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1424993160,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"41462695","duration":720,"bikeId":"3906","endDate":1424994600,"endStationId":"731","endStationName":"Michael Road, Walham Green","startDate":1424993880,"startStationId":"231","startStationName":"Queen's Gate (Central), South Kensington"}, +{"_id":"41462758","duration":960,"bikeId":"4034","endDate":1424995560,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1424994600,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41462827","duration":1380,"bikeId":"12499","endDate":1424996820,"endStationId":"693","endStationName":"Felsham Road, Putney","startDate":1424995440,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41462894","duration":780,"bikeId":"4818","endDate":1424997240,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1424996460,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41462957","duration":360,"bikeId":"13046","endDate":1424998380,"endStationId":"774","endStationName":"Hurlingham Park, Parsons Green","startDate":1424998020,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"41463030","duration":780,"bikeId":"6104","endDate":1425000480,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1424999700,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41463099","duration":1140,"bikeId":"4748","endDate":1425002880,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1425001740,"startStationId":"329","startStationName":"Prince Albert Road, Regent's Park"}, +{"_id":"41463161","duration":1860,"bikeId":"4713","endDate":1425005940,"endStationId":"475","endStationName":"Lightermans Road, Millwall","startDate":1425004080,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41463232","duration":1440,"bikeId":"12660","endDate":1425009840,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1425008400,"startStationId":"127","startStationName":"Wood Street, Guildhall"}, +{"_id":"41463308","duration":1380,"bikeId":"6375","endDate":1425015060,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1425013680,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"41463373","duration":360,"bikeId":"10738","endDate":1425016920,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1425016560,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41463441","duration":1020,"bikeId":"13025","endDate":1425018840,"endStationId":"55","endStationName":"Finsbury Circus, Liverpool Street","startDate":1425017820,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41463501","duration":300,"bikeId":"10413","endDate":1425018660,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1425018360,"startStationId":"94","startStationName":"Bricklayers Arms, Borough"}, +{"_id":"41463572","duration":600,"bikeId":"11082","endDate":1425019500,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1425018900,"startStationId":"748","startStationName":"Hertford Road, De Beauvoir Town"}, +{"_id":"41463635","duration":180,"bikeId":"11943","endDate":1425019560,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1425019380,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"41463703","duration":180,"bikeId":"7816","endDate":1425019860,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1425019680,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41463764","duration":1200,"bikeId":"2019","endDate":1425021180,"endStationId":"511","endStationName":"Sutton Street, Shadwell","startDate":1425019980,"startStationId":"447","startStationName":"Jubilee Crescent, Cubitt Town"}, +{"_id":"41463839","duration":1080,"bikeId":"7060","endDate":1425021300,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1425020220,"startStationId":"113","startStationName":"Gloucester Road (Central), South Kensington"}, +{"_id":"41463894","duration":300,"bikeId":"7143","endDate":1425020760,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1425020460,"startStationId":"128","startStationName":"Emperor's Gate, South Kensington"}, +{"_id":"41463961","duration":660,"bikeId":"8889","endDate":1425021360,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1425020700,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41464034","duration":180,"bikeId":"4353","endDate":1425021120,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1425020940,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41464107","duration":540,"bikeId":"8878","endDate":1425021720,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1425021180,"startStationId":"190","startStationName":"Rampayne Street, Pimlico"}, +{"_id":"41464154","duration":540,"bikeId":"8667","endDate":1425021900,"endStationId":"621","endStationName":"Wandsworth Town Station, Wandsworth","startDate":1425021360,"startStationId":"617","startStationName":"Elysium Place, Fulham"}, +{"_id":"41464214","duration":240,"bikeId":"12845","endDate":1425021780,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1425021540,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41464305","duration":1500,"bikeId":"12327","endDate":1425023220,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1425021720,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41464352","duration":900,"bikeId":"8846","endDate":1425022740,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1425021840,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41464436","duration":720,"bikeId":"2031","endDate":1425022740,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1425022020,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41464493","duration":1560,"bikeId":"7320","endDate":1425023700,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1425022140,"startStationId":"47","startStationName":"Warwick Avenue Station, Maida Vale"}, +{"_id":"41464566","duration":1740,"bikeId":"7004","endDate":1425024000,"endStationId":"182","endStationName":"Bell Street , Marylebone","startDate":1425022260,"startStationId":"93","startStationName":"Cloudesley Road, Angel"}, +{"_id":"41464630","duration":660,"bikeId":"4598","endDate":1425023100,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1425022440,"startStationId":"214","startStationName":"Endsleigh Gardens, Euston"}, +{"_id":"41464704","duration":360,"bikeId":"12317","endDate":1425022920,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1425022560,"startStationId":"700","startStationName":"Battersea Church Road, Battersea"}, +{"_id":"41464743","duration":1320,"bikeId":"1211","endDate":1425024000,"endStationId":"542","endStationName":"Salmon Lane, Limehouse","startDate":1425022680,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41464816","duration":420,"bikeId":"911","endDate":1425023220,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1425022800,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41464865","duration":540,"bikeId":"2289","endDate":1425023400,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1425022860,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41464944","duration":600,"bikeId":"6287","endDate":1425023580,"endStationId":"637","endStationName":"Spencer Park, Wandsworth Common","startDate":1425022980,"startStationId":"690","startStationName":"Stanley Grove, Battersea"}, +{"_id":"41465020","duration":420,"bikeId":"253","endDate":1425023520,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1425023100,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41465096","duration":480,"bikeId":"10932","endDate":1425023700,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1425023220,"startStationId":"87","startStationName":"Devonshire Square, Liverpool Street"}, +{"_id":"41465128","duration":600,"bikeId":"5667","endDate":1425023880,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1425023280,"startStationId":"45","startStationName":"Boston Place, Marylebone"}, +{"_id":"41465215","duration":1320,"bikeId":"51","endDate":1425024720,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1425023400,"startStationId":"768","startStationName":"Clapham Common Northside, Clapham Common"}, +{"_id":"41465279","duration":660,"bikeId":"2584","endDate":1425024180,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1425023520,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41465383","duration":540,"bikeId":"9248","endDate":1425024120,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1425023580,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41465409","duration":780,"bikeId":"10448","endDate":1425024480,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1425023700,"startStationId":"194","startStationName":"Hop Exchange, The Borough"}, +{"_id":"41466390","duration":660,"bikeId":"5620","endDate":1425024480,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1425023820,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41465543","duration":960,"bikeId":"11183","endDate":1425024900,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1425023940,"startStationId":"255","startStationName":"Clifton Road, Maida Vale"}, +{"_id":"41465587","duration":720,"bikeId":"1300","endDate":1425024720,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1425024000,"startStationId":"421","startStationName":"Southwark Station 2, Southwark"}, +{"_id":"41467660","duration":600,"bikeId":"13021","endDate":1425024720,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1425024120,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41465728","duration":1080,"bikeId":"3024","endDate":1425025260,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1425024180,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41465791","duration":900,"bikeId":"12908","endDate":1425025140,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1425024240,"startStationId":"244","startStationName":"Earnshaw Street , Covent Garden"}, +{"_id":"41465869","duration":420,"bikeId":"12972","endDate":1425024780,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1425024360,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41465904","duration":1200,"bikeId":"13080","endDate":1425025620,"endStationId":"370","endStationName":"Paddington Green, Paddington","startDate":1425024420,"startStationId":"545","startStationName":"Arlington Road, Camden Town"}, +{"_id":"41466004","duration":360,"bikeId":"37","endDate":1425024900,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1425024540,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"41466062","duration":720,"bikeId":"12806","endDate":1425025320,"endStationId":"88","endStationName":"Bayley Street , Bloomsbury","startDate":1425024600,"startStationId":"108","startStationName":"Abbey Orchard Street, Westminster"}, +{"_id":"41466095","duration":840,"bikeId":"8683","endDate":1425025500,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1425024660,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41466202","duration":600,"bikeId":"10640","endDate":1425025380,"endStationId":"583","endStationName":"Abingdon Green, Great College Street","startDate":1425024780,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41466264","duration":1380,"bikeId":"11193","endDate":1425026220,"endStationId":"276","endStationName":"Lower Thames Street, Monument","startDate":1425024840,"startStationId":"475","startStationName":"Lightermans Road, Millwall"}, +{"_id":"41466312","duration":360,"bikeId":"690","endDate":1425025260,"endStationId":"708","endStationName":"Disraeli Road, Putney","startDate":1425024900,"startStationId":"728","startStationName":"Putney Bridge Road, East Putney"}, +{"_id":"41466376","duration":840,"bikeId":"10032","endDate":1425025800,"endStationId":"175","endStationName":"Appold Street, Liverpool Street","startDate":1425024960,"startStationId":"751","startStationName":"Newton Street, Covent Garden"}, +{"_id":"41466456","duration":540,"bikeId":"13074","endDate":1425025620,"endStationId":"611","endStationName":"Princedale Road , Holland Park","startDate":1425025080,"startStationId":"158","startStationName":"Trebovir Road, Earl's Court"}, +{"_id":"41466506","duration":540,"bikeId":"5045","endDate":1425025680,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1425025140,"startStationId":"488","startStationName":"Reardon Street, Wapping"}, +{"_id":"41466553","duration":1200,"bikeId":"3754","endDate":1425026400,"endStationId":"309","endStationName":"Embankment (Savoy), Strand","startDate":1425025200,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41466628","duration":1440,"bikeId":"6586","endDate":1425026700,"endStationId":"16","endStationName":"Cartwright Gardens , Bloomsbury","startDate":1425025260,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41466760","duration":900,"bikeId":"148","endDate":1425026280,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1425025380,"startStationId":"33","startStationName":"Altab Ali Park, Whitechapel"}, +{"_id":"41467898","duration":780,"bikeId":"4688","endDate":1425026220,"endStationId":"101","endStationName":"Queen Street, Bank","startDate":1425025440,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41466872","duration":660,"bikeId":"12244","endDate":1425026160,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1425025500,"startStationId":"321","startStationName":"Bermondsey Street, Bermondsey"}, +{"_id":"41466923","duration":600,"bikeId":"5314","endDate":1425026160,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1425025560,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41466999","duration":660,"bikeId":"11035","endDate":1425026280,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1425025620,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41467013","duration":420,"bikeId":"1233","endDate":1425026040,"endStationId":"174","endStationName":"Strand, Strand","startDate":1425025620,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41467065","duration":900,"bikeId":"8380","endDate":1425026580,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1425025680,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41467150","duration":720,"bikeId":"1399","endDate":1425026520,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1425025800,"startStationId":"723","startStationName":"Stephendale Road, Sands End"}, +{"_id":"41467200","duration":840,"bikeId":"12509","endDate":1425026700,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1425025860,"startStationId":"356","startStationName":"South Kensington Station, South Kensington"}, +{"_id":"41467244","duration":60,"bikeId":"9057","endDate":1425025980,"endStationId":"439","endStationName":"Killick Street, Kings Cross","startDate":1425025920,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41467301","duration":780,"bikeId":"10464","endDate":1425026760,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1425025980,"startStationId":"444","startStationName":"Bethnal Green Gardens, Bethnal Green"}, +{"_id":"41467385","duration":420,"bikeId":"7419","endDate":1425026460,"endStationId":"295","endStationName":"Swan Street, The Borough","startDate":1425026040,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"41467436","duration":480,"bikeId":"7851","endDate":1425026580,"endStationId":"319","endStationName":"Baldwin Street, St. Luke's","startDate":1425026100,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41467523","duration":1380,"bikeId":"3977","endDate":1425027540,"endStationId":"169","endStationName":"Porchester Place, Paddington","startDate":1425026160,"startStationId":"600","startStationName":"South Lambeth Road, Vauxhall"}, +{"_id":"41467569","duration":660,"bikeId":"6982","endDate":1425026880,"endStationId":"595","endStationName":"Hammersmith Road, Hammersmith","startDate":1425026220,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41467631","duration":60,"bikeId":"5609","endDate":1425026340,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1425026280,"startStationId":"206","startStationName":"New Road 1 , Whitechapel"}, +{"_id":"41467694","duration":420,"bikeId":"12111","endDate":1425026760,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1425026340,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41467794","duration":840,"bikeId":"7796","endDate":1425027240,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1425026400,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41467945","duration":600,"bikeId":"7335","endDate":1425027060,"endStationId":"596","endStationName":"Parson's Green , Parson's Green","startDate":1425026460,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41468012","duration":1380,"bikeId":"9991","endDate":1425027900,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1425026520,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"41468077","duration":1080,"bikeId":"6189","endDate":1425027660,"endStationId":"104","endStationName":"Crosswall, Tower","startDate":1425026580,"startStationId":"339","startStationName":"Risinghill Street, Angel"}, +{"_id":"41468112","duration":1140,"bikeId":"6244","endDate":1425027720,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1425026580,"startStationId":"710","startStationName":"Albert Bridge Road, Battersea Park"}, +{"_id":"41468214","duration":0,"bikeId":"8883","endDate":1425026640,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1425026640,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41468245","duration":1140,"bikeId":"12705","endDate":1425027840,"endStationId":"298","endStationName":"Curlew Street, Shad Thames","startDate":1425026700,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"41468323","duration":660,"bikeId":"13069","endDate":1425027420,"endStationId":"376","endStationName":"Millbank House, Pimlico","startDate":1425026760,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41468386","duration":360,"bikeId":"8439","endDate":1425027180,"endStationId":"162","endStationName":"Southampton Place, Holborn","startDate":1425026820,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41468445","duration":540,"bikeId":"8096","endDate":1425027420,"endStationId":"254","endStationName":"Chadwell Street, Angel","startDate":1425026880,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41468565","duration":600,"bikeId":"6969","endDate":1425027540,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1425026940,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41468669","duration":1560,"bikeId":"8780","endDate":1425028620,"endStationId":"525","endStationName":"Churchill Place, Canary Wharf","startDate":1425027060,"startStationId":"749","startStationName":"Haggerston Road, Haggerston"}, +{"_id":"41468673","duration":720,"bikeId":"5897","endDate":1425027780,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1425027060,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41468756","duration":420,"bikeId":"11753","endDate":1425027600,"endStationId":"436","endStationName":"Red Lion Street, Holborn","startDate":1425027180,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41468844","duration":960,"bikeId":"6882","endDate":1425028200,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1425027240,"startStationId":"322","startStationName":"Palissy Street, Shoreditch"}, +{"_id":"41468966","duration":720,"bikeId":"5839","endDate":1425028020,"endStationId":"320","endStationName":"Queen Mother Sports Centre, Victoria","startDate":1425027300,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41468942","duration":540,"bikeId":"6006","endDate":1425027900,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1425027360,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41468984","duration":300,"bikeId":"1618","endDate":1425027720,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1425027420,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41469122","duration":1260,"bikeId":"3210","endDate":1425028800,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1425027540,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"41469150","duration":420,"bikeId":"13009","endDate":1425028020,"endStationId":"287","endStationName":"Bedford Way, Bloomsbury","startDate":1425027600,"startStationId":"70","startStationName":"Calshot Street , King's Cross"}, +{"_id":"41469223","duration":1380,"bikeId":"12386","endDate":1425029040,"endStationId":"226","endStationName":"Charles II Street, West End","startDate":1425027660,"startStationId":"225","startStationName":"Notting Hill Gate Station, Notting Hill"}, +{"_id":"41469307","duration":180,"bikeId":"3977","endDate":1425027960,"endStationId":"514","endStationName":"Portman Square, Marylebone","startDate":1425027780,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"41469381","duration":540,"bikeId":"4588","endDate":1425028380,"endStationId":"165","endStationName":"Orsett Terrace, Bayswater","startDate":1425027840,"startStationId":"663","startStationName":"Clarendon Road, Avondale"}, +{"_id":"41469423","duration":660,"bikeId":"10026","endDate":1425028560,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1425027900,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"41469470","duration":600,"bikeId":"4152","endDate":1425028620,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1425028020,"startStationId":"462","startStationName":"Bonny Street, Camden Town"}, +{"_id":"41469549","duration":960,"bikeId":"11218","endDate":1425029040,"endStationId":"269","endStationName":"Empire Square, The Borough","startDate":1425028080,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41469644","duration":1440,"bikeId":"2152","endDate":1425029640,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1425028200,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41469705","duration":660,"bikeId":"5790","endDate":1425028980,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1425028320,"startStationId":"119","startStationName":"Bath Street, St. Luke's"}, +{"_id":"41469744","duration":1320,"bikeId":"3405","endDate":1425029700,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1425028380,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41469843","duration":300,"bikeId":"4449","endDate":1425028800,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1425028500,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41469914","duration":840,"bikeId":"7323","endDate":1425029460,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1425028620,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41469933","duration":1080,"bikeId":"2723","endDate":1425029760,"endStationId":"280","endStationName":"Royal Avenue 2, Chelsea","startDate":1425028680,"startStationId":"600","startStationName":"South Lambeth Road, Vauxhall"}, +{"_id":"41470012","duration":900,"bikeId":"1365","endDate":1425029700,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1425028800,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41470090","duration":780,"bikeId":"7842","endDate":1425029700,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1425028920,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41470157","duration":540,"bikeId":"12912","endDate":1425029580,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1425029040,"startStationId":"633","startStationName":"Vereker Road, West Kensington"}, +{"_id":"41470221","duration":540,"bikeId":"1590","endDate":1425029700,"endStationId":"67","endStationName":"Hatton Garden, Holborn","startDate":1425029160,"startStationId":"75","startStationName":"Torrens Street, Angel"}, +{"_id":"41470298","duration":840,"bikeId":"5459","endDate":1425030180,"endStationId":"256","endStationName":"Houghton Street, Strand","startDate":1425029340,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41470373","duration":780,"bikeId":"10538","endDate":1425030240,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1425029460,"startStationId":"544","startStationName":"Percival Street, Finsbury"}, +{"_id":"41470443","duration":360,"bikeId":"5642","endDate":1425030000,"endStationId":"112","endStationName":"Stonecutter Street, Holborn","startDate":1425029640,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41470529","duration":780,"bikeId":"4459","endDate":1425030540,"endStationId":"557","endStationName":"King Edward Street, St Pauls","startDate":1425029760,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"41470572","duration":960,"bikeId":"10288","endDate":1425030840,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1425029880,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41470636","duration":540,"bikeId":"3992","endDate":1425030540,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1425030000,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41470704","duration":360,"bikeId":"5481","endDate":1425030540,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1425030180,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41470766","duration":600,"bikeId":"9806","endDate":1425030900,"endStationId":"106","endStationName":"Woodstock Street, Mayfair","startDate":1425030300,"startStationId":"592","startStationName":"Bishop's Bridge Road East, Bayswater"}, +{"_id":"41470866","duration":660,"bikeId":"8245","endDate":1425031200,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1425030540,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41470908","duration":720,"bikeId":"2573","endDate":1425031380,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1425030660,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"41470974","duration":960,"bikeId":"12017","endDate":1425031860,"endStationId":"750","endStationName":"Culvert Road, Battersea","startDate":1425030900,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41471048","duration":1380,"bikeId":"12565","endDate":1425032460,"endStationId":"306","endStationName":"Rathbone Street, Fitzrovia","startDate":1425031080,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41471116","duration":1380,"bikeId":"5972","endDate":1425032640,"endStationId":"668","endStationName":"Ravenscourt Park Station, Hammersmith","startDate":1425031260,"startStationId":"688","startStationName":"Northfields, Wandsworth"}, +{"_id":"41471176","duration":1140,"bikeId":"10986","endDate":1425032580,"endStationId":"268","endStationName":"Belgrave Road, Victoria","startDate":1425031440,"startStationId":"223","startStationName":"Rodney Road , Walworth"}, +{"_id":"41471266","duration":480,"bikeId":"4888","endDate":1425032160,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1425031680,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"41471327","duration":780,"bikeId":"4407","endDate":1425032580,"endStationId":"428","endStationName":"Exhibition Road, Knightsbridge","startDate":1425031800,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41471384","duration":2340,"bikeId":"12375","endDate":1425034380,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1425032040,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41471459","duration":660,"bikeId":"11838","endDate":1425032940,"endStationId":"210","endStationName":"Hinde Street, Marylebone","startDate":1425032280,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"41471530","duration":1380,"bikeId":"9284","endDate":1425033840,"endStationId":"150","endStationName":"Holy Trinity Brompton, Knightsbridge","startDate":1425032460,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41471616","duration":420,"bikeId":"7075","endDate":1425033120,"endStationId":"602","endStationName":"Union Grove, Wandsworth Road","startDate":1425032700,"startStationId":"772","startStationName":"Binfield Road, Stockwell"}, +{"_id":"41471657","duration":1500,"bikeId":"12215","endDate":1425034380,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1425032880,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41471730","duration":660,"bikeId":"10789","endDate":1425033780,"endStationId":"594","endStationName":"Kingsway Southbound, Strand","startDate":1425033120,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41471819","duration":11340,"bikeId":"12383","endDate":1425044700,"endStationId":"19","endStationName":"Taviton Street, Bloomsbury","startDate":1425033360,"startStationId":"265","startStationName":"Southwick Street, Paddington"}, +{"_id":"41471890","duration":480,"bikeId":"12626","endDate":1425034080,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1425033600,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41471943","duration":660,"bikeId":"10005","endDate":1425034500,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1425033840,"startStationId":"616","startStationName":"Aintree Street, Fulham"}, +{"_id":"41472010","duration":1440,"bikeId":"2975","endDate":1425035460,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1425034020,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41472079","duration":600,"bikeId":"9701","endDate":1425034920,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1425034320,"startStationId":"230","startStationName":"Poured Lines, Bankside"}, +{"_id":"41472145","duration":960,"bikeId":"9578","endDate":1425035580,"endStationId":"373","endStationName":"Prince Consort Road, Knightsbridge","startDate":1425034620,"startStationId":"696","startStationName":"Charing Cross Hospital, Hammersmith"}, +{"_id":"41472225","duration":180,"bikeId":"6548","endDate":1425035040,"endStationId":"158","endStationName":"Trebovir Road, Earl's Court","startDate":1425034860,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"41472292","duration":3120,"bikeId":"7681","endDate":1425038220,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1425035100,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41472361","duration":1020,"bikeId":"5546","endDate":1425036420,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1425035400,"startStationId":"645","startStationName":"Great Suffolk Street, The Borough"}, +{"_id":"41472428","duration":1500,"bikeId":"390","endDate":1425037140,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1425035640,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41472500","duration":1200,"bikeId":"5565","endDate":1425037080,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1425035880,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"41472563","duration":1500,"bikeId":"5492","endDate":1425037620,"endStationId":"362","endStationName":"Royal College Street, Camden Town","startDate":1425036120,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41472622","duration":1320,"bikeId":"6148","endDate":1425037740,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1425036420,"startStationId":"495","startStationName":"Bow Church Station, Bow"}, +{"_id":"41472697","duration":1200,"bikeId":"9073","endDate":1425037980,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1425036780,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41472777","duration":420,"bikeId":"10923","endDate":1425037440,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1425037020,"startStationId":"63","startStationName":"Murray Grove , Hoxton"}, +{"_id":"41472835","duration":2400,"bikeId":"5332","endDate":1425039600,"endStationId":"315","endStationName":"The Tennis Courts, Regent's Park","startDate":1425037200,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"41472900","duration":660,"bikeId":"10491","endDate":1425038040,"endStationId":"166","endStationName":"Seville Street, Knightsbridge","startDate":1425037380,"startStationId":"359","startStationName":"Butler Place, Westminster"}, +{"_id":"41472974","duration":360,"bikeId":"432","endDate":1425038040,"endStationId":"528","endStationName":"Clarges Street, West End","startDate":1425037680,"startStationId":"99","startStationName":"Old Quebec Street, Marylebone"}, +{"_id":"41473032","duration":1080,"bikeId":"3289","endDate":1425038940,"endStationId":"587","endStationName":"Monument Street, Monument","startDate":1425037860,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"41473112","duration":600,"bikeId":"7901","endDate":1425038700,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1425038100,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41473167","duration":1080,"bikeId":"5402","endDate":1425039420,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1425038340,"startStationId":"733","startStationName":"Park Lane, Mayfair"}, +{"_id":"41473250","duration":840,"bikeId":"12954","endDate":1425039420,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1425038580,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41473316","duration":7680,"bikeId":"6649","endDate":1425046440,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1425038760,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41473372","duration":360,"bikeId":"7361","endDate":1425039300,"endStationId":"82","endStationName":"Chancery Lane, Holborn","startDate":1425038940,"startStationId":"341","startStationName":"Craven Street, Strand"}, +{"_id":"41473461","duration":420,"bikeId":"7726","endDate":1425039600,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1425039180,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41473530","duration":3060,"bikeId":"9552","endDate":1425042420,"endStationId":"160","endStationName":"Waterloo Place, St. James's","startDate":1425039360,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41473598","duration":360,"bikeId":"9778","endDate":1425039900,"endStationId":"15","endStationName":"Great Russell Street, Bloomsbury","startDate":1425039540,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41473684","duration":240,"bikeId":"1631","endDate":1425040020,"endStationId":"208","endStationName":"Mallory Street, Marylebone","startDate":1425039780,"startStationId":"201","startStationName":"Dorset Square, Marylebone"}, +{"_id":"41473741","duration":180,"bikeId":"1354","endDate":1425040140,"endStationId":"51","endStationName":"Finsbury Library , Finsbury","startDate":1425039960,"startStationId":"78","startStationName":"Sadlers Sports Centre, Finsbury"}, +{"_id":"41473805","duration":300,"bikeId":"11437","endDate":1425040440,"endStationId":"57","endStationName":"Guilford Street , Bloomsbury","startDate":1425040140,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41473871","duration":900,"bikeId":"8480","endDate":1425041160,"endStationId":"181","endStationName":"Belgrave Square, Belgravia","startDate":1425040260,"startStationId":"289","startStationName":"South Audley Street, Mayfair"}, +{"_id":"41473923","duration":1860,"bikeId":"8564","endDate":1425042300,"endStationId":"658","endStationName":"Ethelburga Estate, Battersea Park","startDate":1425040440,"startStationId":"726","startStationName":"Alfreda Street, Battersea Park"}, +{"_id":"41473992","duration":1980,"bikeId":"7914","endDate":1425042600,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1425040620,"startStationId":"332","startStationName":"Nevern Place, Earl's Court"}, +{"_id":"41474076","duration":1920,"bikeId":"12088","endDate":1425042720,"endStationId":"391","endStationName":"Clifford Street, Mayfair","startDate":1425040800,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"41474155","duration":960,"bikeId":"7464","endDate":1425041940,"endStationId":"458","endStationName":"Wapping Lane, Wapping","startDate":1425040980,"startStationId":"499","startStationName":"Furze Green, Bow"}, +{"_id":"41474214","duration":360,"bikeId":"7162","endDate":1425041520,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1425041160,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41474279","duration":480,"bikeId":"1368","endDate":1425041820,"endStationId":"202","endStationName":"Leman Street, Aldgate","startDate":1425041340,"startStationId":"513","startStationName":"Watney Market, Stepney"}, +{"_id":"41474336","duration":540,"bikeId":"3077","endDate":1425042060,"endStationId":"49","endStationName":"Curzon Street, Mayfair","startDate":1425041520,"startStationId":"213","startStationName":"Wellington Arch, Hyde Park"}, +{"_id":"41474403","duration":240,"bikeId":"9353","endDate":1425041940,"endStationId":"471","endStationName":"Hewison Street, Old Ford","startDate":1425041700,"startStationId":"472","startStationName":"Malmesbury Road, Bow"}, +{"_id":"41474456","duration":1140,"bikeId":"5045","endDate":1425043020,"endStationId":"386","endStationName":"Moor Street, Soho","startDate":1425041880,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41474548","duration":120,"bikeId":"7738","endDate":1425042240,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1425042120,"startStationId":"424","startStationName":"Ebury Bridge, Pimlico"}, +{"_id":"41474602","duration":660,"bikeId":"10509","endDate":1425042960,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1425042300,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41474677","duration":2160,"bikeId":"6957","endDate":1425044640,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1425042480,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41474743","duration":1260,"bikeId":"6765","endDate":1425043920,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1425042660,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41474807","duration":1440,"bikeId":"4297","endDate":1425044340,"endStationId":"395","endStationName":"Cadogan Gardens, Sloane Square","startDate":1425042900,"startStationId":"720","startStationName":"Star Road, West Kensington"}, +{"_id":"41474865","duration":960,"bikeId":"1372","endDate":1425044040,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1425043080,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41474952","duration":300,"bikeId":"8730","endDate":1425043620,"endStationId":"340","endStationName":"Bank of England Museum, Bank","startDate":1425043320,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41475034","duration":300,"bikeId":"1340","endDate":1425043860,"endStationId":"113","endStationName":"Gloucester Road (Central), South Kensington","startDate":1425043560,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41475070","duration":3360,"bikeId":"9118","endDate":1425047040,"endStationId":"137","endStationName":"Bourne Street, Belgravia","startDate":1425043680,"startStationId":"693","startStationName":"Felsham Road, Putney"}, +{"_id":"41475151","duration":480,"bikeId":"10301","endDate":1425044340,"endStationId":"383","endStationName":"Frith Street, Soho","startDate":1425043860,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"41475211","duration":300,"bikeId":"7009","endDate":1425044340,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1425044040,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"41475280","duration":780,"bikeId":"4114","endDate":1425045000,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1425044220,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"41475357","duration":420,"bikeId":"12777","endDate":1425044880,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1425044460,"startStationId":"217","startStationName":"Wormwood Street, Liverpool Street"}, +{"_id":"41475435","duration":480,"bikeId":"10604","endDate":1425045120,"endStationId":"9","endStationName":"New Globe Walk, Bankside","startDate":1425044640,"startStationId":"27","startStationName":"Bouverie Street, Temple"}, +{"_id":"41475469","duration":660,"bikeId":"698","endDate":1425045420,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1425044760,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41475549","duration":300,"bikeId":"11082","endDate":1425045240,"endStationId":"393","endStationName":"Snow Hill, Farringdon","startDate":1425044940,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41475616","duration":1740,"bikeId":"7502","endDate":1425046860,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1425045120,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41475689","duration":540,"bikeId":"3582","endDate":1425045900,"endStationId":"365","endStationName":"City Road, Angel","startDate":1425045360,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41475736","duration":600,"bikeId":"3644","endDate":1425046140,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1425045540,"startStationId":"548","startStationName":"Westminster Bridge Road, Elephant & Castle"}, +{"_id":"41475816","duration":780,"bikeId":"9702","endDate":1425046500,"endStationId":"311","endStationName":"Foley Street, Fitzrovia","startDate":1425045720,"startStationId":"22","startStationName":"Northington Street , Holborn"}, +{"_id":"41475881","duration":180,"bikeId":"12656","endDate":1425046140,"endStationId":"294","endStationName":"St. George's Square, Pimlico","startDate":1425045960,"startStationId":"148","startStationName":"Tachbrook Street, Victoria"}, +{"_id":"41477972","duration":480,"bikeId":"12663","endDate":1425046680,"endStationId":"509","endStationName":"Fore Street, Guildhall","startDate":1425046200,"startStationId":"132","startStationName":"Bethnal Green Road, Shoreditch"}, +{"_id":"41476009","duration":600,"bikeId":"7248","endDate":1425046980,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1425046380,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41476095","duration":1500,"bikeId":"799","endDate":1425048120,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1425046620,"startStationId":"34","startStationName":"Pancras Road, King's Cross"}, +{"_id":"41476156","duration":480,"bikeId":"8014","endDate":1425047280,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1425046800,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41476223","duration":1380,"bikeId":"6838","endDate":1425048360,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1425046980,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41476295","duration":300,"bikeId":"2360","endDate":1425047460,"endStationId":"68","endStationName":"Theobalds Road , Holborn","startDate":1425047160,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41476352","duration":540,"bikeId":"4323","endDate":1425047880,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1425047340,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41476390","duration":2580,"bikeId":"11195","endDate":1425050100,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1425047520,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"41476485","duration":180,"bikeId":"7946","endDate":1425047940,"endStationId":"99","endStationName":"Old Quebec Street, Marylebone","startDate":1425047760,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"41476559","duration":420,"bikeId":"5457","endDate":1425048360,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1425047940,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41476618","duration":1440,"bikeId":"12123","endDate":1425049560,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1425048120,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41476690","duration":720,"bikeId":"7528","endDate":1425049080,"endStationId":"177","endStationName":"Ashley Place, Victoria","startDate":1425048360,"startStationId":"389","startStationName":"Upper Grosvenor Street, Mayfair"}, +{"_id":"41476757","duration":720,"bikeId":"8929","endDate":1425049260,"endStationId":"136","endStationName":"Queen Victoria Street, St. Paul's","startDate":1425048540,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41476824","duration":660,"bikeId":"9022","endDate":1425049380,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1425048720,"startStationId":"264","startStationName":"Tysoe Street, Clerkenwell"}, +{"_id":"41476883","duration":1740,"bikeId":"6969","endDate":1425050580,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1425048840,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41476946","duration":360,"bikeId":"3303","endDate":1425049380,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1425049020,"startStationId":"323","startStationName":"Clifton Street, Shoreditch"}, +{"_id":"41477006","duration":1380,"bikeId":"8670","endDate":1425050580,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1425049200,"startStationId":"773","startStationName":"Tallis Street, Temple"}, +{"_id":"41477089","duration":2100,"bikeId":"2849","endDate":1425051540,"endStationId":"442","endStationName":"Walmer Road, Notting Hill","startDate":1425049440,"startStationId":"622","startStationName":"Lansdowne Road, Ladbroke Grove"}, +{"_id":"41477145","duration":780,"bikeId":"9699","endDate":1425050400,"endStationId":"423","endStationName":"Eaton Square (South), Belgravia","startDate":1425049620,"startStationId":"514","startStationName":"Portman Square, Marylebone"}, +{"_id":"41477213","duration":1620,"bikeId":"7741","endDate":1425051420,"endStationId":"273","endStationName":"Belvedere Road, South Bank","startDate":1425049800,"startStationId":"298","startStationName":"Curlew Street, Shad Thames"}, +{"_id":"41477287","duration":840,"bikeId":"8864","endDate":1425050820,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1425049980,"startStationId":"406","startStationName":"Speakers' Corner 2, Hyde Park"}, +{"_id":"41477350","duration":1680,"bikeId":"5449","endDate":1425051840,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1425050160,"startStationId":"12","startStationName":"Malet Street, Bloomsbury"}, +{"_id":"41477409","duration":2820,"bikeId":"8587","endDate":1425053160,"endStationId":"454","endStationName":"Napier Avenue, Millwall","startDate":1425050340,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"41477500","duration":360,"bikeId":"3523","endDate":1425050880,"endStationId":"673","endStationName":"Hibbert Street, Battersea","startDate":1425050520,"startStationId":"701","startStationName":"Vicarage Crescent, Battersea"}, +{"_id":"41477541","duration":780,"bikeId":"2984","endDate":1425051480,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1425050700,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41477617","duration":900,"bikeId":"10593","endDate":1425051780,"endStationId":"261","endStationName":"Princes Square, Bayswater","startDate":1425050880,"startStationId":"301","startStationName":"Marylebone Lane, Marylebone"}, +{"_id":"41477688","duration":300,"bikeId":"4175","endDate":1425051360,"endStationId":"215","endStationName":"Moorfields, Moorgate","startDate":1425051060,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41477753","duration":480,"bikeId":"11375","endDate":1425051660,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1425051180,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41477816","duration":4740,"bikeId":"6969","endDate":1425056100,"endStationId":"153","endStationName":"Bayswater Road, Hyde Park","startDate":1425051360,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41477892","duration":660,"bikeId":"7582","endDate":1425052200,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1425051540,"startStationId":"154","startStationName":"Waterloo Station 3, Waterloo"}, +{"_id":"41477941","duration":600,"bikeId":"8695","endDate":1425052320,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1425051720,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41478040","duration":420,"bikeId":"10837","endDate":1425052320,"endStationId":"71","endStationName":"Newgate Street , St. Paul's","startDate":1425051900,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41478094","duration":600,"bikeId":"2345","endDate":1425052680,"endStationId":"52","endStationName":"Roscoe Street, St. Luke's","startDate":1425052080,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"41478154","duration":420,"bikeId":"112","endDate":1425052680,"endStationId":"518","endStationName":"Antill Road, Mile End","startDate":1425052260,"startStationId":"578","startStationName":"Hollybush Gardens, Bethnal Green"}, +{"_id":"41487369","duration":540,"bikeId":"8175","endDate":1425052980,"endStationId":"50","endStationName":"East Road, Hoxton","startDate":1425052440,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41478298","duration":1080,"bikeId":"2842","endDate":1425053700,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1425052620,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41478361","duration":3000,"bikeId":"1533","endDate":1425055740,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1425052740,"startStationId":"643","startStationName":"All Saints' Road, Portobello"}, +{"_id":"41478417","duration":480,"bikeId":"2417","endDate":1425053400,"endStationId":"39","endStationName":"Shoreditch High Street, Shoreditch","startDate":1425052920,"startStationId":"465","startStationName":"Pitfield Street (North),Hoxton"}, +{"_id":"41478483","duration":540,"bikeId":"12550","endDate":1425053580,"endStationId":"516","endStationName":"Chrisp Street Market, Poplar","startDate":1425053040,"startStationId":"712","startStationName":"Mile End Stadium, Mile End"}, +{"_id":"41478564","duration":660,"bikeId":"10269","endDate":1425053880,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1425053220,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41478643","duration":540,"bikeId":"11425","endDate":1425053940,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1425053400,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41478680","duration":960,"bikeId":"6525","endDate":1425054480,"endStationId":"462","endStationName":"Bonny Street, Camden Town","startDate":1425053520,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41478762","duration":2400,"bikeId":"3505","endDate":1425056100,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1425053700,"startStationId":"389","startStationName":"Upper Grosvenor Street, Mayfair"}, +{"_id":"41478839","duration":1200,"bikeId":"9248","endDate":1425055080,"endStationId":"699","endStationName":"Belford House, Haggerston","startDate":1425053880,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41478874","duration":1680,"bikeId":"7589","endDate":1425055680,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1425054000,"startStationId":"304","startStationName":"Cumberland Gate, Hyde Park"}, +{"_id":"41478970","duration":3240,"bikeId":"6580","endDate":1425057420,"endStationId":"711","endStationName":"Everington Street, Fulham","startDate":1425054180,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41479028","duration":420,"bikeId":"12021","endDate":1425054780,"endStationId":"171","endStationName":"Collingham Gardens, Earl's Court","startDate":1425054360,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41479079","duration":1500,"bikeId":"6377","endDate":1425055980,"endStationId":"157","endStationName":"Wright's Lane, Kensington","startDate":1425054480,"startStationId":"664","startStationName":"Austin Road, Battersea"}, +{"_id":"41479185","duration":840,"bikeId":"4881","endDate":1425055500,"endStationId":"127","endStationName":"Wood Street, Guildhall","startDate":1425054660,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41479235","duration":480,"bikeId":"8986","endDate":1425055260,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1425054780,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41479274","duration":1200,"bikeId":"10702","endDate":1425056100,"endStationId":"350","endStationName":"Queen's Gate, Kensington Gardens","startDate":1425054900,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41479378","duration":600,"bikeId":"1221","endDate":1425055680,"endStationId":"361","endStationName":"Waterloo Station 2, Waterloo","startDate":1425055080,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41479442","duration":300,"bikeId":"12134","endDate":1425055500,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1425055200,"startStationId":"184","startStationName":"Portland Place, Marylebone"}, +{"_id":"41479490","duration":780,"bikeId":"1676","endDate":1425056100,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1425055320,"startStationId":"104","startStationName":"Crosswall, Tower"}, +{"_id":"41479556","duration":480,"bikeId":"8321","endDate":1425055920,"endStationId":"11","endStationName":"Brunswick Square, Bloomsbury","startDate":1425055440,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"41479646","duration":660,"bikeId":"1292","endDate":1425056280,"endStationId":"635","endStationName":"Greyhound Road, Hammersmith","startDate":1425055620,"startStationId":"37","startStationName":"Penywern Road, Earl's Court"}, +{"_id":"41479709","duration":1020,"bikeId":"12443","endDate":1425056760,"endStationId":"463","endStationName":"Thurtle Road, Haggerston","startDate":1425055740,"startStationId":"112","startStationName":"Stonecutter Street, Holborn"}, +{"_id":"41479760","duration":660,"bikeId":"5686","endDate":1425056520,"endStationId":"572","endStationName":"Greenland Road, Camden Town","startDate":1425055860,"startStationId":"343","startStationName":"London Zoo Car Park, Regent's Park"}, +{"_id":"41479811","duration":1680,"bikeId":"6398","endDate":1425057660,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1425055980,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41479912","duration":480,"bikeId":"10480","endDate":1425056640,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1425056160,"startStationId":"546","startStationName":"New Fetter Lane, Holborn"}, +{"_id":"41479957","duration":480,"bikeId":"11075","endDate":1425056760,"endStationId":"20","endStationName":"Drummond Street , Euston","startDate":1425056280,"startStationId":"271","startStationName":"London Zoo, Regents Park"}, +{"_id":"41480036","duration":540,"bikeId":"9096","endDate":1425056940,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1425056400,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"41480088","duration":300,"bikeId":"11737","endDate":1425056820,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1425056520,"startStationId":"17","startStationName":"Hatton Wall, Holborn"}, +{"_id":"41480125","duration":1380,"bikeId":"10015","endDate":1425057960,"endStationId":"3","endStationName":"Christopher Street, Liverpool Street","startDate":1425056580,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41480251","duration":240,"bikeId":"2279","endDate":1425056940,"endStationId":"140","endStationName":"Finsbury Square , Moorgate","startDate":1425056700,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"41480284","duration":420,"bikeId":"5811","endDate":1425057180,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1425056760,"startStationId":"4","startStationName":"St. Chad's Street, King's Cross"}, +{"_id":"41480334","duration":1560,"bikeId":"2700","endDate":1425058380,"endStationId":"531","endStationName":"Twig Folly Bridge, Mile End","startDate":1425056820,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41480420","duration":960,"bikeId":"12539","endDate":1425057900,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1425056940,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41480476","duration":480,"bikeId":"6609","endDate":1425057480,"endStationId":"292","endStationName":"Montpelier Street, Knightsbridge","startDate":1425057000,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41480564","duration":720,"bikeId":"12312","endDate":1425057840,"endStationId":"579","endStationName":"Queen Street 2, Bank","startDate":1425057120,"startStationId":"68","startStationName":"Theobalds Road , Holborn"}, +{"_id":"41480580","duration":1320,"bikeId":"12855","endDate":1425058500,"endStationId":"329","endStationName":"Prince Albert Road, Regent's Park","startDate":1425057180,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41480696","duration":540,"bikeId":"13078","endDate":1425057840,"endStationId":"108","endStationName":"Abbey Orchard Street, Westminster","startDate":1425057300,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"41480748","duration":300,"bikeId":"3748","endDate":1425057720,"endStationId":"203","endStationName":"West Smithfield Rotunda, Farringdon","startDate":1425057420,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41480819","duration":1500,"bikeId":"3322","endDate":1425058980,"endStationId":"248","endStationName":"Triangle Car Park, Hyde Park","startDate":1425057480,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41480882","duration":1200,"bikeId":"760","endDate":1425058800,"endStationId":"461","endStationName":"Aston Street, Stepney","startDate":1425057600,"startStationId":"196","startStationName":"Union Street, The Borough"}, +{"_id":"41480925","duration":360,"bikeId":"11893","endDate":1425058020,"endStationId":"597","endStationName":"Fulham Park Road, Fulham","startDate":1425057660,"startStationId":"769","startStationName":"Sandilands Road, Walham Green"}, +{"_id":"41481022","duration":180,"bikeId":"2229","endDate":1425057960,"endStationId":"305","endStationName":"Kennington Lane Tesco, Vauxhall","startDate":1425057780,"startStationId":"440","startStationName":"Kennington Oval, Oval"}, +{"_id":"41481066","duration":1140,"bikeId":"324","endDate":1425058980,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1425057840,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41481145","duration":600,"bikeId":"2168","endDate":1425058560,"endStationId":"265","endStationName":"Southwick Street, Paddington","startDate":1425057960,"startStationId":"364","startStationName":"Alfred Place, Bloomsbury"}, +{"_id":"41481239","duration":1140,"bikeId":"11432","endDate":1425059220,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1425058080,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41481294","duration":1020,"bikeId":"4368","endDate":1425059160,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1425058140,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41481377","duration":1140,"bikeId":"7874","endDate":1425059400,"endStationId":"440","endStationName":"Kennington Oval, Oval","startDate":1425058260,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41481424","duration":1260,"bikeId":"5667","endDate":1425059580,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1425058320,"startStationId":"84","startStationName":"Breams Buildings, Holborn"}, +{"_id":"41481501","duration":600,"bikeId":"12383","endDate":1425059040,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1425058440,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41481563","duration":1380,"bikeId":"11058","endDate":1425059880,"endStationId":"197","endStationName":"Stamford Street, South Bank","startDate":1425058500,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"41481608","duration":1140,"bikeId":"12047","endDate":1425059700,"endStationId":"72","endStationName":"Farringdon Lane, Clerkenwell","startDate":1425058560,"startStationId":"387","startStationName":"Fire Brigade Pier, Vauxhall"}, +{"_id":"41481747","duration":1080,"bikeId":"11785","endDate":1425059760,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1425058680,"startStationId":"41","startStationName":"Sun Street, Liverpool Street"}, +{"_id":"41481780","duration":300,"bikeId":"3711","endDate":1425059040,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1425058740,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"41481838","duration":1440,"bikeId":"3942","endDate":1425060240,"endStationId":"639","endStationName":"Coomer Place, West Kensington","startDate":1425058800,"startStationId":"243","startStationName":"Gloucester Street, Pimlico"}, +{"_id":"41481853","duration":1740,"bikeId":"5929","endDate":1425060600,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1425058860,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41481961","duration":780,"bikeId":"2778","endDate":1425059700,"endStationId":"214","endStationName":"Endsleigh Gardens, Euston","startDate":1425058920,"startStationId":"64","startStationName":"William IV Street, Strand"}, +{"_id":"41482052","duration":120,"bikeId":"12961","endDate":1425059160,"endStationId":"687","endStationName":"Maclise Road, Olympia","startDate":1425059040,"startStationId":"666","startStationName":"Olympia Way, Olympia"}, +{"_id":"41482061","duration":1500,"bikeId":"10417","endDate":1425060600,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1425059100,"startStationId":"573","startStationName":"Limerston Street, Chelsea"}, +{"_id":"41482175","duration":600,"bikeId":"5626","endDate":1425059820,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1425059220,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41482233","duration":1200,"bikeId":"6812","endDate":1425060480,"endStationId":"213","endStationName":"Wellington Arch, Hyde Park","startDate":1425059280,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41482282","duration":1020,"bikeId":"876","endDate":1425060360,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1425059340,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41482378","duration":1140,"bikeId":"10605","endDate":1425060600,"endStationId":"29","endStationName":"Hereford Road, Bayswater","startDate":1425059460,"startStationId":"216","startStationName":"Old Brompton Road, South Kensington"}, +{"_id":"41482429","duration":660,"bikeId":"4446","endDate":1425060180,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1425059520,"startStationId":"634","startStationName":"Brook Green South, Brook Green"}, +{"_id":"41482521","duration":900,"bikeId":"10650","endDate":1425060540,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1425059640,"startStationId":"3","startStationName":"Christopher Street, Liverpool Street"}, +{"_id":"41482564","duration":120,"bikeId":"3043","endDate":1425059820,"endStationId":"529","endStationName":"Manresa Road, Chelsea","startDate":1425059700,"startStationId":"430","startStationName":"South Parade, Chelsea"}, +{"_id":"41482653","duration":1680,"bikeId":"8967","endDate":1425061500,"endStationId":"676","endStationName":"Hartington Road, Stockwell","startDate":1425059820,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41482702","duration":960,"bikeId":"10013","endDate":1425060900,"endStationId":"316","endStationName":"Cardinal Place, Victoria","startDate":1425059940,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41482761","duration":1080,"bikeId":"6859","endDate":1425061080,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1425060000,"startStationId":"84","startStationName":"Breams Buildings, Holborn"}, +{"_id":"41482836","duration":840,"bikeId":"13068","endDate":1425060960,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1425060120,"startStationId":"175","startStationName":"Appold Street, Liverpool Street"}, +{"_id":"41482926","duration":600,"bikeId":"3919","endDate":1425060840,"endStationId":"424","endStationName":"Ebury Bridge, Pimlico","startDate":1425060240,"startStationId":"221","startStationName":"Horseferry Road, Westminster"}, +{"_id":"41482984","duration":1560,"bikeId":"2832","endDate":1425061860,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1425060300,"startStationId":"502","startStationName":"South Quay West, Canary Wharf"}, +{"_id":"41483063","duration":360,"bikeId":"7755","endDate":1425060780,"endStationId":"14","endStationName":"Belgrove Street , King's Cross","startDate":1425060420,"startStationId":"65","startStationName":"Gower Place , Euston"}, +{"_id":"41483074","duration":1560,"bikeId":"964","endDate":1425062040,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1425060480,"startStationId":"116","startStationName":"Little Argyll Street, West End"}, +{"_id":"41483189","duration":480,"bikeId":"10118","endDate":1425061080,"endStationId":"193","endStationName":"Bankside Mix, Bankside","startDate":1425060600,"startStationId":"594","startStationName":"Kingsway Southbound, Strand"}, +{"_id":"41483250","duration":1260,"bikeId":"12990","endDate":1425061980,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1425060720,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41483295","duration":1200,"bikeId":"5333","endDate":1425061980,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1425060780,"startStationId":"48","startStationName":"Godliman Street, St. Paul's"}, +{"_id":"41483372","duration":420,"bikeId":"7528","endDate":1425061320,"endStationId":"270","endStationName":"Kennington Lane Rail Bridge, Vauxhall","startDate":1425060900,"startStationId":"177","startStationName":"Ashley Place, Victoria"}, +{"_id":"41483449","duration":1140,"bikeId":"10896","endDate":1425062160,"endStationId":"742","endStationName":"Blenheim Crescent, Ladbroke Grove","startDate":1425061020,"startStationId":"53","startStationName":"Grafton Street, Mayfair"}, +{"_id":"41483510","duration":180,"bikeId":"4793","endDate":1425061320,"endStationId":"552","endStationName":"Watney Street, Shadwell","startDate":1425061140,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41483552","duration":1680,"bikeId":"12060","endDate":1425062880,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1425061200,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41483631","duration":420,"bikeId":"3927","endDate":1425061740,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1425061320,"startStationId":"311","startStationName":"Foley Street, Fitzrovia"}, +{"_id":"41483702","duration":2040,"bikeId":"5736","endDate":1425063480,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1425061440,"startStationId":"360","startStationName":"Howick Place, Westminster"}, +{"_id":"41483766","duration":960,"bikeId":"1552","endDate":1425062520,"endStationId":"47","endStationName":"Warwick Avenue Station, Maida Vale","startDate":1425061560,"startStationId":"428","startStationName":"Exhibition Road, Knightsbridge"}, +{"_id":"41483839","duration":600,"bikeId":"11393","endDate":1425062280,"endStationId":"240","endStationName":"Colombo Street, Southwark","startDate":1425061680,"startStationId":"55","startStationName":"Finsbury Circus, Liverpool Street"}, +{"_id":"41531655","duration":180,"bikeId":"9324","endDate":1425061980,"endStationId":"491","endStationName":"Queen Marys, Mile End","startDate":1425061800,"startStationId":"478","startStationName":"Stepney Green Station, Stepney"}, +{"_id":"41484196","duration":1320,"bikeId":"10233","endDate":1425063180,"endStationId":"378","endStationName":"Natural History Museum, South Kensington","startDate":1425061860,"startStationId":"638","startStationName":"Falcon Road, Clapham Junction"}, +{"_id":"41484023","duration":660,"bikeId":"6871","endDate":1425062640,"endStationId":"584","endStationName":"Ilchester Gardens, Bayswater","startDate":1425061980,"startStationId":"142","startStationName":"West Cromwell Road, Earl's Court"}, +{"_id":"41484095","duration":1020,"bikeId":"4174","endDate":1425063120,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1425062100,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41484159","duration":300,"bikeId":"4733","endDate":1425062520,"endStationId":"546","endStationName":"New Fetter Lane, Holborn","startDate":1425062220,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41484235","duration":960,"bikeId":"5747","endDate":1425063300,"endStationId":"533","endStationName":"Wellington Row, Bethnal Green","startDate":1425062340,"startStationId":"431","startStationName":"Crinan Street, King's Cross"}, +{"_id":"41484277","duration":780,"bikeId":"9430","endDate":1425063240,"endStationId":"310","endStationName":"Black Prince Road, Vauxhall","startDate":1425062460,"startStationId":"256","startStationName":"Houghton Street, Strand"}, +{"_id":"41484340","duration":1080,"bikeId":"4598","endDate":1425063660,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1425062580,"startStationId":"67","startStationName":"Hatton Garden, Holborn"}, +{"_id":"41484423","duration":1140,"bikeId":"2761","endDate":1425063840,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1425062700,"startStationId":"254","startStationName":"Chadwell Street, Angel"}, +{"_id":"41484492","duration":1020,"bikeId":"10816","endDate":1425063900,"endStationId":"321","endStationName":"Bermondsey Street, Bermondsey","startDate":1425062880,"startStationId":"358","startStationName":"High Holborn , Covent Garden"}, +{"_id":"41484559","duration":120,"bikeId":"4637","endDate":1425063120,"endStationId":"252","endStationName":"Jubilee Gardens, South Bank","startDate":1425063000,"startStationId":"273","startStationName":"Belvedere Road, South Bank"}, +{"_id":"41484622","duration":540,"bikeId":"8384","endDate":1425063660,"endStationId":"31","endStationName":"Fanshaw Street, Hoxton","startDate":1425063120,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41484669","duration":540,"bikeId":"8436","endDate":1425063780,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1425063240,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41484745","duration":11880,"bikeId":"4666","endDate":1425075240,"endStationId":"703","endStationName":"St. Bride Street, Holborn","startDate":1425063360,"startStationId":"215","startStationName":"Moorfields, Moorgate"}, +{"_id":"41484819","duration":660,"bikeId":"2420","endDate":1425064200,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1425063540,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41484877","duration":1800,"bikeId":"2069","endDate":1425065460,"endStationId":"624","endStationName":"Courland Grove, Wandsworth Road","startDate":1425063660,"startStationId":"338","startStationName":"Wellington Street , Strand"}, +{"_id":"41484959","duration":1440,"bikeId":"4295","endDate":1425065280,"endStationId":"409","endStationName":"Strata, Southwark","startDate":1425063840,"startStationId":"612","startStationName":"Wandsworth Rd, Isley Court, Wandsworth Road"}, +{"_id":"41484990","duration":5460,"bikeId":"6628","endDate":1425069420,"endStationId":"341","endStationName":"Craven Street, Strand","startDate":1425063960,"startStationId":"377","startStationName":"Waterloo Bridge, South Bank"}, +{"_id":"41485087","duration":600,"bikeId":"7636","endDate":1425064740,"endStationId":"217","endStationName":"Wormwood Street, Liverpool Street","startDate":1425064140,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41485117","duration":780,"bikeId":"12811","endDate":1425065040,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1425064260,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41485204","duration":120,"bikeId":"4818","endDate":1425064560,"endStationId":"655","endStationName":"Crabtree Lane, Fulham","startDate":1425064440,"startStationId":"599","startStationName":"Manbre Road, Hammersmith"}, +{"_id":"41485286","duration":1140,"bikeId":"9633","endDate":1425065760,"endStationId":"281","endStationName":"Smith Square, Westminster","startDate":1425064620,"startStationId":"193","startStationName":"Bankside Mix, Bankside"}, +{"_id":"41485346","duration":120,"bikeId":"8065","endDate":1425064920,"endStationId":"18","endStationName":"Drury Lane, Covent Garden","startDate":1425064800,"startStationId":"162","startStationName":"Southampton Place, Holborn"}, +{"_id":"41485403","duration":1320,"bikeId":"10581","endDate":1425066300,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1425064980,"startStationId":"613","startStationName":"Woodstock Grove, Shepherd's Bush"}, +{"_id":"41485481","duration":600,"bikeId":"74","endDate":1425065760,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1425065160,"startStationId":"520","startStationName":"Bancroft Road, Bethnal Green"}, +{"_id":"41485545","duration":360,"bikeId":"651","endDate":1425065760,"endStationId":"4","endStationName":"St. Chad's Street, King's Cross","startDate":1425065400,"startStationId":"24","startStationName":"British Museum, Bloomsbury"}, +{"_id":"41485618","duration":540,"bikeId":"12750","endDate":1425066180,"endStationId":"196","endStationName":"Union Street, The Borough","startDate":1425065640,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41485685","duration":180,"bikeId":"149","endDate":1425066000,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1425065820,"startStationId":"95","startStationName":"Aldersgate Street, Barbican"}, +{"_id":"41485721","duration":600,"bikeId":"202","endDate":1425066600,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1425066000,"startStationId":"71","startStationName":"Newgate Street , St. Paul's"}, +{"_id":"41485803","duration":720,"bikeId":"1186","endDate":1425067020,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1425066300,"startStationId":"23","startStationName":"Red Lion Square, Holborn"}, +{"_id":"41485878","duration":1440,"bikeId":"5069","endDate":1425067980,"endStationId":"235","endStationName":"Kennington Road , Vauxhall","startDate":1425066540,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41485946","duration":1500,"bikeId":"9977","endDate":1425068280,"endStationId":"249","endStationName":"Harper Road, Borough","startDate":1425066780,"startStationId":"310","startStationName":"Black Prince Road, Vauxhall"}, +{"_id":"41486003","duration":240,"bikeId":"2999","endDate":1425067200,"endStationId":"501","endStationName":"Cephas Street, Bethnal Green","startDate":1425066960,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41486080","duration":540,"bikeId":"698","endDate":1425067740,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1425067200,"startStationId":"535","startStationName":"Gloucester Avenue, Camden Town"}, +{"_id":"41486138","duration":420,"bikeId":"8549","endDate":1425067860,"endStationId":"95","endStationName":"Aldersgate Street, Barbican","startDate":1425067440,"startStationId":"30","startStationName":"Windsor Terrace, Hoxton"}, +{"_id":"41486204","duration":1560,"bikeId":"6972","endDate":1425069300,"endStationId":"32","endStationName":"Leonard Circus , Shoreditch","startDate":1425067740,"startStationId":"448","startStationName":"Fishermans Walk West, Canary Wharf"}, +{"_id":"41486271","duration":120,"bikeId":"6462","endDate":1425068160,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1425068040,"startStationId":"1","startStationName":"River Street , Clerkenwell"}, +{"_id":"41486336","duration":300,"bikeId":"10620","endDate":1425068580,"endStationId":"741","endStationName":"Freston Road, Avondale","startDate":1425068280,"startStationId":"571","startStationName":"Westfield Southern Terrace ,Shepherd's Bush"}, +{"_id":"41486391","duration":480,"bikeId":"4845","endDate":1425068940,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1425068460,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"41486472","duration":360,"bikeId":"4820","endDate":1425069180,"endStationId":"534","endStationName":"Goldsmiths Row, Haggerston","startDate":1425068820,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41486534","duration":1380,"bikeId":"6163","endDate":1425070440,"endStationId":"406","endStationName":"Speakers' Corner 2, Hyde Park","startDate":1425069060,"startStationId":"169","startStationName":"Porchester Place, Paddington"}, +{"_id":"41486600","duration":600,"bikeId":"5575","endDate":1425070020,"endStationId":"110","endStationName":"Wellington Road, St. John's Wood","startDate":1425069420,"startStationId":"238","startStationName":"Frampton Street, Paddington"}, +{"_id":"41486676","duration":240,"bikeId":"10118","endDate":1425069960,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1425069720,"startStationId":"353","startStationName":"Greycoat Street , Westminster"}, +{"_id":"41486744","duration":360,"bikeId":"7525","endDate":1425070440,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1425070080,"startStationId":"147","startStationName":"Portugal Street, Holborn"}, +{"_id":"41486801","duration":660,"bikeId":"447","endDate":1425071100,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1425070440,"startStationId":"747","startStationName":"Ormonde Gate, Chelsea"}, +{"_id":"41486875","duration":1020,"bikeId":"8783","endDate":1425071880,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1425070860,"startStationId":"711","startStationName":"Everington Street, Fulham"}, +{"_id":"41486952","duration":360,"bikeId":"4729","endDate":1425071640,"endStationId":"671","endStationName":"Parsons Green Station, Parsons Green","startDate":1425071280,"startStationId":"626","startStationName":"Normand Park, Fulham"}, +{"_id":"41487017","duration":480,"bikeId":"8027","endDate":1425072240,"endStationId":"65","endStationName":"Gower Place , Euston","startDate":1425071760,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41487076","duration":1140,"bikeId":"1859","endDate":1425073320,"endStationId":"456","endStationName":"Parkway, Camden Town","startDate":1425072180,"startStationId":"242","startStationName":"Beaumont Street, Marylebone"}, +{"_id":"41487148","duration":540,"bikeId":"8380","endDate":1425073200,"endStationId":"123","endStationName":"St. John Street, Finsbury","startDate":1425072660,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41487214","duration":1140,"bikeId":"848","endDate":1425074220,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1425073080,"startStationId":"357","startStationName":"Howland Street, Fitzrovia"}, +{"_id":"41487284","duration":420,"bikeId":"4959","endDate":1425073920,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1425073500,"startStationId":"386","startStationName":"Moor Street, Soho"}, +{"_id":"41487372","duration":1620,"bikeId":"1893","endDate":1425075660,"endStationId":"508","endStationName":"Fournier Street, Whitechapel","startDate":1425074040,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41487487","duration":360,"bikeId":"12837","endDate":1425074880,"endStationId":"765","endStationName":"Ranelagh Gardens, Fulham","startDate":1425074520,"startStationId":"619","startStationName":"Irene Road, Parsons Green"}, +{"_id":"41487551","duration":600,"bikeId":"5984","endDate":1425075600,"endStationId":"190","endStationName":"Rampayne Street, Pimlico","startDate":1425075000,"startStationId":"368","startStationName":"Harriet Street, Knightsbridge"}, +{"_id":"41487619","duration":720,"bikeId":"12651","endDate":1425076080,"endStationId":"367","endStationName":"Harrowby Street, Marylebone","startDate":1425075360,"startStationId":"239","startStationName":"Warren Street Station, Euston"}, +{"_id":"41487682","duration":19800,"bikeId":"6504","endDate":1425095580,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1425075780,"startStationId":"574","startStationName":"Eagle Wharf Road, Hoxton"}, +{"_id":"41487766","duration":300,"bikeId":"8231","endDate":1425076680,"endStationId":"86","endStationName":"Sancroft Street, Vauxhall","startDate":1425076380,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41487836","duration":1560,"bikeId":"7336","endDate":1425078300,"endStationId":"593","endStationName":"Northdown Street, King's Cross","startDate":1425076740,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41487899","duration":180,"bikeId":"12258","endDate":1425077580,"endStationId":"139","endStationName":"Lambeth Road, Vauxhall","startDate":1425077400,"startStationId":"284","startStationName":"Lambeth North Station, Waterloo"}, +{"_id":"41487965","duration":960,"bikeId":"8984","endDate":1425079020,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1425078060,"startStationId":"260","startStationName":"Broadwick Street, Soho"}, +{"_id":"41488036","duration":1020,"bikeId":"9791","endDate":1425079560,"endStationId":"249","endStationName":"Harper Road, Borough","startDate":1425078540,"startStationId":"702","startStationName":"Durant Street, Bethnal Green"}, +{"_id":"41488098","duration":1020,"bikeId":"11861","endDate":1425080040,"endStationId":"717","endStationName":"Dunston Road , Haggerston","startDate":1425079020,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41488162","duration":600,"bikeId":"1219","endDate":1425080160,"endStationId":"539","endStationName":"Hoxton Station, Haggerston","startDate":1425079560,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41488234","duration":300,"bikeId":"10659","endDate":1425080340,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1425080040,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41488305","duration":540,"bikeId":"8916","endDate":1425081180,"endStationId":"603","endStationName":"Caldwell Street, Stockwell","startDate":1425080640,"startStationId":"235","startStationName":"Kennington Road , Vauxhall"}, +{"_id":"41488370","duration":1200,"bikeId":"4273","endDate":1425082500,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1425081300,"startStationId":"19","startStationName":"Taviton Street, Bloomsbury"}, +{"_id":"41488433","duration":10560,"bikeId":"7967","endDate":1425092400,"endStationId":"568","endStationName":"Bishop's Bridge Road West, Bayswater","startDate":1425081840,"startStationId":"568","startStationName":"Bishop's Bridge Road West, Bayswater"}, +{"_id":"41488501","duration":420,"bikeId":"10730","endDate":1425082800,"endStationId":"773","endStationName":"Tallis Street, Temple","startDate":1425082380,"startStationId":"372","startStationName":"Sardinia Street, Holborn"}, +{"_id":"41488571","duration":420,"bikeId":"1506","endDate":1425083520,"endStationId":"751","endStationName":"Newton Street, Covent Garden","startDate":1425083100,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41488644","duration":1500,"bikeId":"4794","endDate":1425085260,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1425083760,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"41488713","duration":720,"bikeId":"879","endDate":1425085080,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1425084360,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"41488786","duration":1320,"bikeId":"11167","endDate":1425086280,"endStationId":"729","endStationName":"St. Peter's Terrace, Fulham","startDate":1425084960,"startStationId":"167","startStationName":"Eccleston Place, Victoria"}, +{"_id":"41488851","duration":1680,"bikeId":"9411","endDate":1425087360,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1425085680,"startStationId":"174","startStationName":"Strand, Strand"}, +{"_id":"41488917","duration":300,"bikeId":"4324","endDate":1425086580,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1425086280,"startStationId":"188","startStationName":"Nutford Place, Marylebone"}, +{"_id":"41488983","duration":300,"bikeId":"5458","endDate":1425087180,"endStationId":"520","endStationName":"Bancroft Road, Bethnal Green","startDate":1425086880,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41489056","duration":480,"bikeId":"6727","endDate":1425088380,"endStationId":"26","endStationName":"Ampton Street , Clerkenwell","startDate":1425087900,"startStationId":"109","startStationName":"Soho Square , Soho"}, +{"_id":"41489125","duration":2040,"bikeId":"9334","endDate":1425090840,"endStationId":"614","endStationName":"Bradmead, Nine Elms","startDate":1425088800,"startStationId":"681","startStationName":"Bishop's Avenue, Fulham"}, +{"_id":"41489202","duration":540,"bikeId":"3967","endDate":1425090120,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1425089580,"startStationId":"539","startStationName":"Hoxton Station, Haggerston"}, +{"_id":"41489278","duration":1320,"bikeId":"1869","endDate":1425091980,"endStationId":"78","endStationName":"Sadlers Sports Centre, Finsbury","startDate":1425090660,"startStationId":"40","startStationName":"Commercial Street, Shoreditch"}, +{"_id":"41489353","duration":1380,"bikeId":"2294","endDate":1425093360,"endStationId":"549","endStationName":"Gaywood Street, Elephant & Castle","startDate":1425091980,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"41489421","duration":840,"bikeId":"5088","endDate":1425093720,"endStationId":"308","endStationName":"Long Lane , Bermondsey","startDate":1425092880,"startStationId":"508","startStationName":"Fournier Street, Whitechapel"}, +{"_id":"41489494","duration":1500,"bikeId":"11332","endDate":1425095640,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1425094140,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41489578","duration":60,"bikeId":"8970","endDate":1425095880,"endStationId":"444","endStationName":"Bethnal Green Gardens, Bethnal Green","startDate":1425095820,"startStationId":"446","startStationName":"York Hall, Bethnal Green"}, +{"_id":"41489675","duration":1440,"bikeId":"10689","endDate":1425099180,"endStationId":"737","endStationName":"Fulham Broadway, Walham Green","startDate":1425097740,"startStationId":"601","startStationName":"BBC White City, White City"}, +{"_id":"41489750","duration":180,"bikeId":"8949","endDate":1425100140,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1425099960,"startStationId":"512","startStationName":"Pritchard's Road, Bethnal Green"}, +{"_id":"41489822","duration":720,"bikeId":"12700","endDate":1425103380,"endStationId":"154","endStationName":"Waterloo Station 3, Waterloo","startDate":1425102660,"startStationId":"57","startStationName":"Guilford Street , Bloomsbury"}, +{"_id":"41489889","duration":540,"bikeId":"4427","endDate":1425106200,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1425105660,"startStationId":"483","startStationName":"Albert Gardens, Stepney"}, +{"_id":"41489957","duration":420,"bikeId":"1413","endDate":1425108480,"endStationId":"54","endStationName":"Golden Lane, Barbican","startDate":1425108060,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41490024","duration":1080,"bikeId":"8505","endDate":1425110400,"endStationId":"760","endStationName":"Rossmore Road, Marylebone","startDate":1425109320,"startStationId":"524","startStationName":"Lancaster Gate , Bayswater"}, +{"_id":"41490085","duration":660,"bikeId":"9279","endDate":1425110820,"endStationId":"347","endStationName":"Lower Marsh, Waterloo","startDate":1425110160,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41490157","duration":540,"bikeId":"8789","endDate":1425111720,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1425111180,"startStationId":"293","startStationName":"Kensington Olympia Station, Olympia"}, +{"_id":"41490223","duration":780,"bikeId":"6208","endDate":1425112800,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1425112020,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"41490294","duration":1620,"bikeId":"12780","endDate":1425114180,"endStationId":"554","endStationName":"Aberfeldy Street, Poplar","startDate":1425112560,"startStationId":"554","startStationName":"Aberfeldy Street, Poplar"}, +{"_id":"41490363","duration":600,"bikeId":"5459","endDate":1425113580,"endStationId":"73","endStationName":"Old Street Station, St. Luke's","startDate":1425112980,"startStationId":"536","startStationName":"Queensbridge Road, Haggerston"}, +{"_id":"41490419","duration":600,"bikeId":"634","endDate":1425114060,"endStationId":"102","endStationName":"Jewry Street, Aldgate","startDate":1425113460,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41490494","duration":240,"bikeId":"2236","endDate":1425114180,"endStationId":"536","endStationName":"Queensbridge Road, Haggerston","startDate":1425113940,"startStationId":"717","startStationName":"Dunston Road , Haggerston"}, +{"_id":"41490556","duration":120,"bikeId":"2003","endDate":1425114540,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1425114420,"startStationId":"344","startStationName":"Goswell Road (City Uni), Finsbury"}, +{"_id":"41490624","duration":600,"bikeId":"7377","endDate":1425115620,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1425115020,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41490694","duration":1320,"bikeId":"500","endDate":1425116820,"endStationId":"126","endStationName":"Museum of London, Barbican","startDate":1425115500,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"41490764","duration":720,"bikeId":"4641","endDate":1425116640,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1425115920,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"41490836","duration":900,"bikeId":"1538","endDate":1425117180,"endStationId":"479","endStationName":"Pott Street, Bethnal Green","startDate":1425116280,"startStationId":"365","startStationName":"City Road, Angel"}, +{"_id":"41490903","duration":1020,"bikeId":"7750","endDate":1425117600,"endStationId":"345","endStationName":"Flood Street, Chelsea","startDate":1425116580,"startStationId":"29","startStationName":"Hereford Road, Bayswater"}, +{"_id":"41490969","duration":840,"bikeId":"8631","endDate":1425117780,"endStationId":"75","endStationName":"Torrens Street, Angel","startDate":1425116940,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"41491032","duration":300,"bikeId":"6479","endDate":1425117540,"endStationId":"1","endStationName":"River Street , Clerkenwell","startDate":1425117240,"startStationId":"697","startStationName":"Charlotte Terrace, Angel"}, +{"_id":"41491101","duration":360,"bikeId":"4863","endDate":1425117900,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1425117540,"startStationId":"458","startStationName":"Wapping Lane, Wapping"}, +{"_id":"41491166","duration":1500,"bikeId":"10600","endDate":1425119400,"endStationId":"12","endStationName":"Malet Street, Bloomsbury","startDate":1425117900,"startStationId":"695","startStationName":"Islington Green, Angel"}, +{"_id":"41491232","duration":840,"bikeId":"9411","endDate":1425119040,"endStationId":"107","endStationName":"Finsbury Leisure Centre, St. Luke's","startDate":1425118200,"startStationId":"115","startStationName":"Braham Street, Aldgate"}, +{"_id":"41491313","duration":420,"bikeId":"7078","endDate":1425119040,"endStationId":"465","endStationName":"Pitfield Street (North),Hoxton","startDate":1425118620,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41491369","duration":1260,"bikeId":"4681","endDate":1425120180,"endStationId":"459","endStationName":"Gun Makers Lane, Old Ford","startDate":1425118920,"startStationId":"459","startStationName":"Gun Makers Lane, Old Ford"}, +{"_id":"41491448","duration":540,"bikeId":"12056","endDate":1425119700,"endStationId":"94","endStationName":"Bricklayers Arms, Borough","startDate":1425119160,"startStationId":"587","startStationName":"Monument Street, Monument"}, +{"_id":"41491521","duration":420,"bikeId":"7538","endDate":1425119880,"endStationId":"574","endStationName":"Eagle Wharf Road, Hoxton","startDate":1425119460,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41491593","duration":1560,"bikeId":"4660","endDate":1425121320,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1425119760,"startStationId":"464","startStationName":"St. Mary and St. Michael Church, Stepney"}, +{"_id":"41491655","duration":180,"bikeId":"5506","endDate":1425120180,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1425120000,"startStationId":"191","startStationName":"Hyde Park Corner, Hyde Park"}, +{"_id":"41491736","duration":2280,"bikeId":"3155","endDate":1425122520,"endStationId":"709","endStationName":"Montserrat Road , Putney","startDate":1425120240,"startStationId":"649","startStationName":"World's End Place, West Chelsea"}, +{"_id":"41491782","duration":5040,"bikeId":"2132","endDate":1425125520,"endStationId":"540","endStationName":"Albany Street, Regent's Park","startDate":1425120480,"startStationId":"540","startStationName":"Albany Street, Regent's Park"}, +{"_id":"41491875","duration":600,"bikeId":"584","endDate":1425121320,"endStationId":"105","endStationName":"Westbourne Grove, Bayswater","startDate":1425120720,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"41491940","duration":16380,"bikeId":"12704","endDate":1425137340,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1425120960,"startStationId":"451","startStationName":"Hermitage Court, Wapping"}, +{"_id":"41492008","duration":360,"bikeId":"2163","endDate":1425121560,"endStationId":"58","endStationName":"New Inn Yard, Shoreditch","startDate":1425121200,"startStationId":"319","startStationName":"Baldwin Street, St. Luke's"}, +{"_id":"41492080","duration":1620,"bikeId":"1930","endDate":1425123060,"endStationId":"56","endStationName":"Paddington Street, Marylebone","startDate":1425121440,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41492149","duration":1560,"bikeId":"7775","endDate":1425123240,"endStationId":"500","endStationName":"Sidney Street, Stepney","startDate":1425121680,"startStationId":"449","startStationName":"Shadwell Station, Shadwell"}, +{"_id":"41492215","duration":360,"bikeId":"8915","endDate":1425122340,"endStationId":"92","endStationName":"Borough Road, Elephant & Castle","startDate":1425121980,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"41492289","duration":180,"bikeId":"1091","endDate":1425122400,"endStationId":"253","endStationName":"Shoreditch Park, Hoxton","startDate":1425122220,"startStationId":"50","startStationName":"East Road, Hoxton"}, +{"_id":"41492377","duration":420,"bikeId":"6020","endDate":1425123000,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1425122580,"startStationId":"251","startStationName":"Brushfield Street, Liverpool Street"}, +{"_id":"41492429","duration":120,"bikeId":"1575","endDate":1425122940,"endStationId":"34","endStationName":"Pancras Road, King's Cross","startDate":1425122820,"startStationId":"362","startStationName":"Royal College Street, Camden Town"}, +{"_id":"41492500","duration":1260,"bikeId":"1200","endDate":1425124260,"endStationId":"128","endStationName":"Emperor's Gate, South Kensington","startDate":1425123000,"startStationId":"268","startStationName":"Belgrave Road, Victoria"}, +{"_id":"41492571","duration":660,"bikeId":"10243","endDate":1425123960,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1425123300,"startStationId":"9","startStationName":"New Globe Walk, Bankside"}, +{"_id":"41492647","duration":660,"bikeId":"5993","endDate":1425124200,"endStationId":"21","endStationName":"Hampstead Road (Cartmel), Euston","startDate":1425123540,"startStationId":"433","startStationName":"Wren Street, Holborn"}, +{"_id":"41492713","duration":360,"bikeId":"8004","endDate":1425124200,"endStationId":"313","endStationName":"Wells Street, Fitzrovia","startDate":1425123840,"startStationId":"141","startStationName":"Chapel Place, Marylebone"}, +{"_id":"41492771","duration":1920,"bikeId":"9149","endDate":1425125940,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1425124020,"startStationId":"676","startStationName":"Hartington Road, Stockwell"}, +{"_id":"41492838","duration":720,"bikeId":"7161","endDate":1425124920,"endStationId":"223","endStationName":"Rodney Road , Walworth","startDate":1425124200,"startStationId":"269","startStationName":"Empire Square, The Borough"}, +{"_id":"41492916","duration":2160,"bikeId":"2792","endDate":1425126600,"endStationId":"401","endStationName":"Columbia Road, Weavers","startDate":1425124440,"startStationId":"401","startStationName":"Columbia Road, Weavers"}, +{"_id":"41492972","duration":360,"bikeId":"4606","endDate":1425125040,"endStationId":"466","endStationName":"Whiston Road, Haggerston","startDate":1425124680,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41493046","duration":2880,"bikeId":"6717","endDate":1425127740,"endStationId":"66","endStationName":"Holborn Circus, Holborn","startDate":1425124860,"startStationId":"315","startStationName":"The Tennis Courts, Regent's Park"}, +{"_id":"41493122","duration":720,"bikeId":"4711","endDate":1425125820,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1425125100,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41493178","duration":2880,"bikeId":"11246","endDate":1425128160,"endStationId":"643","endStationName":"All Saints' Road, Portobello","startDate":1425125280,"startStationId":"133","startStationName":"Derry Street, Kensington"}, +{"_id":"41493242","duration":240,"bikeId":"1668","endDate":1425125760,"endStationId":"148","endStationName":"Tachbrook Street, Victoria","startDate":1425125520,"startStationId":"267","startStationName":"Regency Street, Westminster"}, +{"_id":"41493318","duration":480,"bikeId":"4273","endDate":1425126240,"endStationId":"267","endStationName":"Regency Street, Westminster","startDate":1425125760,"startStationId":"161","startStationName":"Guildhouse Street, Victoria"}, +{"_id":"41493381","duration":840,"bikeId":"3421","endDate":1425126720,"endStationId":"633","endStationName":"Vereker Road, West Kensington","startDate":1425125880,"startStationId":"618","startStationName":"Eel Brook Common, Walham Green"}, +{"_id":"41493455","duration":840,"bikeId":"4168","endDate":1425126960,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1425126120,"startStationId":"92","startStationName":"Borough Road, Elephant & Castle"}, +{"_id":"41493505","duration":540,"bikeId":"9702","endDate":1425126840,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1425126300,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41493592","duration":720,"bikeId":"1945","endDate":1425127260,"endStationId":"131","endStationName":"Eversholt Street , Camden Town","startDate":1425126540,"startStationId":"129","startStationName":"Golden Square, Soho"}, +{"_id":"41493654","duration":7500,"bikeId":"1096","endDate":1425134220,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1425126720,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41493730","duration":360,"bikeId":"3377","endDate":1425127260,"endStationId":"589","endStationName":"Drayton Gardens, Chelsea","startDate":1425126900,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41493794","duration":720,"bikeId":"1727","endDate":1425127800,"endStationId":"164","endStationName":"Cleveland Gardens, Bayswater","startDate":1425127080,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41493874","duration":420,"bikeId":"2489","endDate":1425127680,"endStationId":"372","endStationName":"Sardinia Street, Holborn","startDate":1425127260,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41493943","duration":1320,"bikeId":"7527","endDate":1425128760,"endStationId":"684","endStationName":"Neville Gill Close, Wandsworth","startDate":1425127440,"startStationId":"602","startStationName":"Union Grove, Wandsworth Road"}, +{"_id":"41494037","duration":540,"bikeId":"942","endDate":1425128220,"endStationId":"577","endStationName":"Globe Town Market, Bethnal Green","startDate":1425127680,"startStationId":"471","startStationName":"Hewison Street, Old Ford"}, +{"_id":"41494091","duration":1200,"bikeId":"2062","endDate":1425129060,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1425127860,"startStationId":"107","startStationName":"Finsbury Leisure Centre, St. Luke's"}, +{"_id":"41494160","duration":1080,"bikeId":"2123","endDate":1425129120,"endStationId":"638","endStationName":"Falcon Road, Clapham Junction","startDate":1425128040,"startStationId":"345","startStationName":"Flood Street, Chelsea"}, +{"_id":"41494221","duration":2700,"bikeId":"10564","endDate":1425130920,"endStationId":"772","endStationName":"Binfield Road, Stockwell","startDate":1425128220,"startStationId":"603","startStationName":"Caldwell Street, Stockwell"}, +{"_id":"41494308","duration":720,"bikeId":"545","endDate":1425129120,"endStationId":"706","endStationName":"Snowsfields, London Bridge","startDate":1425128400,"startStationId":"295","startStationName":"Swan Street, The Borough"}, +{"_id":"41494364","duration":1980,"bikeId":"4715","endDate":1425130560,"endStationId":"115","endStationName":"Braham Street, Aldgate","startDate":1425128580,"startStationId":"475","startStationName":"Lightermans Road, Millwall"}, +{"_id":"41494439","duration":1440,"bikeId":"12701","endDate":1425130200,"endStationId":"610","endStationName":"Danvers Street, West Chelsea","startDate":1425128760,"startStationId":"766","startStationName":"Ram Street, Wandsworth"}, +{"_id":"41494522","duration":780,"bikeId":"3217","endDate":1425129780,"endStationId":"25","endStationName":"Doric Way , Somers Town","startDate":1425129000,"startStationId":"82","startStationName":"Chancery Lane, Holborn"}, +{"_id":"41494583","duration":1320,"bikeId":"6139","endDate":1425130500,"endStationId":"548","endStationName":"Westminster Bridge Road, Elephant & Castle","startDate":1425129180,"startStationId":"272","startStationName":"Baylis Road, Waterloo"}, +{"_id":"41494655","duration":1380,"bikeId":"4986","endDate":1425130740,"endStationId":"606","endStationName":"Addison Road, Holland Park","startDate":1425129360,"startStationId":"161","startStationName":"Guildhouse Street, Victoria"}, +{"_id":"41494713","duration":1680,"bikeId":"591","endDate":1425131160,"endStationId":"541","endStationName":"Green Park Station, West End","startDate":1425129480,"startStationId":"300","startStationName":"Serpentine Car Park, Hyde Park"}, +{"_id":"41494790","duration":600,"bikeId":"1246","endDate":1425130260,"endStationId":"736","endStationName":"Queensdale Road, Shepherd's Bush","startDate":1425129660,"startStationId":"650","startStationName":"St. Mark's Road, North Kensington"}, +{"_id":"41494837","duration":420,"bikeId":"7490","endDate":1425130260,"endStationId":"432","endStationName":"Exhibition Road Museums, Knightsbridge","startDate":1425129840,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41494927","duration":1080,"bikeId":"8388","endDate":1425131160,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1425130080,"startStationId":"125","startStationName":"Borough High Street, The Borough"}, +{"_id":"41494997","duration":2880,"bikeId":"10346","endDate":1425133140,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1425130260,"startStationId":"335","startStationName":"Tavistock Street, Covent Garden"}, +{"_id":"41495072","duration":1440,"bikeId":"2284","endDate":1425131880,"endStationId":"573","endStationName":"Limerston Street, Chelsea","startDate":1425130440,"startStationId":"111","startStationName":"Park Lane , Hyde Park"}, +{"_id":"41495152","duration":1440,"bikeId":"3396","endDate":1425132120,"endStationId":"116","endStationName":"Little Argyll Street, West End","startDate":1425130680,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41495224","duration":1440,"bikeId":"4682","endDate":1425132300,"endStationId":"498","endStationName":"Bow Road Station, Bow","startDate":1425130860,"startStationId":"126","startStationName":"Museum of London, Barbican"}, +{"_id":"41495303","duration":1080,"bikeId":"5683","endDate":1425132120,"endStationId":"343","endStationName":"London Zoo Car Park, Regent's Park","startDate":1425131040,"startStationId":"16","startStationName":"Cartwright Gardens , Bloomsbury"}, +{"_id":"41495364","duration":360,"bikeId":"12517","endDate":1425131580,"endStationId":"446","endStationName":"York Hall, Bethnal Green","startDate":1425131220,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41495446","duration":480,"bikeId":"2902","endDate":1425131880,"endStationId":"374","endStationName":"Waterloo Station 1, Waterloo","startDate":1425131400,"startStationId":"80","startStationName":"Webber Street , Southwark"}, +{"_id":"41495522","duration":480,"bikeId":"2167","endDate":1425132060,"endStationId":"338","endStationName":"Wellington Street , Strand","startDate":1425131580,"startStationId":"262","startStationName":"LSBU (Borough Road), Elephant & Castle"}, +{"_id":"41495564","duration":1320,"bikeId":"9825","endDate":1425133020,"endStationId":"354","endStationName":"Northumberland Avenue, Strand","startDate":1425131700,"startStationId":"408","startStationName":"Paddington Green Police Station, Paddington"}, +{"_id":"41495657","duration":1080,"bikeId":"3374","endDate":1425133080,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1425132000,"startStationId":"140","startStationName":"Finsbury Square , Moorgate"}, +{"_id":"41495693","duration":1320,"bikeId":"408","endDate":1425133440,"endStationId":"470","endStationName":"Mostyn Grove, Bow","startDate":1425132120,"startStationId":"522","startStationName":"Clinton Road, Mile End"}, +{"_id":"41495782","duration":900,"bikeId":"9599","endDate":1425133260,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1425132360,"startStationId":"278","startStationName":"Tooley Street, Bermondsey"}, +{"_id":"41495855","duration":720,"bikeId":"4894","endDate":1425133260,"endStationId":"358","endStationName":"High Holborn , Covent Garden","startDate":1425132540,"startStationId":"90","startStationName":"Harrington Square, Camden Town"}, +{"_id":"41495918","duration":1680,"bikeId":"4841","endDate":1425134340,"endStationId":"404","endStationName":"Palace Gate, Kensington Gardens","startDate":1425132660,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"41495994","duration":1260,"bikeId":"11214","endDate":1425134160,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1425132900,"startStationId":"66","startStationName":"Holborn Circus, Holborn"}, +{"_id":"41496062","duration":240,"bikeId":"2569","endDate":1425133320,"endStationId":"450","endStationName":"Jubilee Street, Stepney","startDate":1425133080,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41496113","duration":1500,"bikeId":"3110","endDate":1425134760,"endStationId":"64","endStationName":"William IV Street, Strand","startDate":1425133260,"startStationId":"277","startStationName":"Kensington Church Street, Kensington"}, +{"_id":"41496198","duration":1500,"bikeId":"3509","endDate":1425135000,"endStationId":"303","endStationName":"Albert Gate, Hyde Park","startDate":1425133500,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41496265","duration":240,"bikeId":"9198","endDate":1425133980,"endStationId":"48","endStationName":"Godliman Street, St. Paul's","startDate":1425133740,"startStationId":"101","startStationName":"Queen Street, Bank"}, +{"_id":"41496342","duration":1440,"bikeId":"11533","endDate":1425135360,"endStationId":"762","endStationName":"Storey's Gate, Westminster","startDate":1425133920,"startStationId":"153","startStationName":"Bayswater Road, Hyde Park"}, +{"_id":"41496417","duration":420,"bikeId":"6899","endDate":1425134460,"endStationId":"307","endStationName":"Black Lion Gate, Kensington Gardens","startDate":1425134040,"startStationId":"97","startStationName":"Gloucester Road (North), Kensington"}, +{"_id":"41496496","duration":540,"bikeId":"7661","endDate":1425134820,"endStationId":"399","endStationName":"Brick Lane Market, Shoreditch","startDate":1425134280,"startStationId":"463","startStationName":"Thurtle Road, Haggerston"}, +{"_id":"41496555","duration":2220,"bikeId":"6734","endDate":1425136620,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1425134400,"startStationId":"348","startStationName":"Grosvenor Square, Mayfair"}, +{"_id":"41496636","duration":540,"bikeId":"12293","endDate":1425135120,"endStationId":"275","endStationName":"Barbican Centre, Barbican","startDate":1425134580,"startStationId":"58","startStationName":"New Inn Yard, Shoreditch"}, +{"_id":"41496725","duration":660,"bikeId":"9740","endDate":1425135480,"endStationId":"206","endStationName":"New Road 1 , Whitechapel","startDate":1425134820,"startStationId":"533","startStationName":"Wellington Row, Bethnal Green"}, +{"_id":"41496775","duration":1680,"bikeId":"6402","endDate":1425136620,"endStationId":"192","endStationName":"Wardour Street, Soho","startDate":1425134940,"startStationId":"180","startStationName":"North Audley Street, Mayfair"}, +{"_id":"41496851","duration":1140,"bikeId":"7672","endDate":1425136320,"endStationId":"335","endStationName":"Tavistock Street, Covent Garden","startDate":1425135180,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41496926","duration":0,"bikeId":"279","endDate":1425135360,"endStationId":"647","endStationName":"Richmond Way, Shepherd's Bush","startDate":1425135360,"startStationId":"647","startStationName":"Richmond Way, Shepherd's Bush"}, +{"_id":"41496987","duration":780,"bikeId":"7104","endDate":1425136380,"endStationId":"194","endStationName":"Hop Exchange, The Borough","startDate":1425135600,"startStationId":"173","startStationName":"Waterloo Roundabout, Waterloo"}, +{"_id":"41497065","duration":1200,"bikeId":"2689","endDate":1425136980,"endStationId":"326","endStationName":"Graham Street, Angel","startDate":1425135780,"startStationId":"719","startStationName":"Victoria Park Road, Hackney Central"}, +{"_id":"41497133","duration":1620,"bikeId":"1905","endDate":1425137580,"endStationId":"211","endStationName":"Cadogan Place, Knightsbridge","startDate":1425135960,"startStationId":"224","startStationName":"Whiteley's, Bayswater"}, +{"_id":"41497195","duration":540,"bikeId":"10396","endDate":1425136740,"endStationId":"426","endStationName":"Vincent Street, Pimlico","startDate":1425136200,"startStationId":"374","startStationName":"Waterloo Station 1, Waterloo"}, +{"_id":"41497261","duration":1020,"bikeId":"8341","endDate":1425137400,"endStationId":"591","endStationName":"Westfield Library Corner, Shepherd's Bush","startDate":1425136380,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41497351","duration":420,"bikeId":"5037","endDate":1425137040,"endStationId":"645","endStationName":"Great Suffolk Street, The Borough","startDate":1425136620,"startStationId":"579","startStationName":"Queen Street 2, Bank"}, +{"_id":"41497416","duration":1380,"bikeId":"11028","endDate":1425138180,"endStationId":"129","endStationName":"Golden Square, Soho","startDate":1425136800,"startStationId":"340","startStationName":"Bank of England Museum, Bank"}, +{"_id":"41497476","duration":1740,"bikeId":"10052","endDate":1425138720,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1425136980,"startStationId":"732","startStationName":"Duke Street Hill, London Bridge"}, +{"_id":"41497551","duration":1800,"bikeId":"8943","endDate":1425138960,"endStationId":"396","endStationName":"Shouldham Street, Marylebone","startDate":1425137160,"startStationId":"350","startStationName":"Queen's Gate, Kensington Gardens"}, +{"_id":"41497611","duration":240,"bikeId":"9296","endDate":1425137640,"endStationId":"41","endStationName":"Sun Street, Liverpool Street","startDate":1425137400,"startStationId":"73","startStationName":"Old Street Station, St. Luke's"}, +{"_id":"41497702","duration":2280,"bikeId":"1292","endDate":1425139920,"endStationId":"337","endStationName":"Pembridge Villas, Notting Hill","startDate":1425137640,"startStationId":"669","startStationName":"Teversham Lane, Stockwell"}, +{"_id":"41497768","duration":540,"bikeId":"8822","endDate":1425138360,"endStationId":"757","endStationName":"Harcourt Terrace, West Brompton","startDate":1425137820,"startStationId":"639","startStationName":"Coomer Place, West Kensington"}, +{"_id":"41497816","duration":480,"bikeId":"8475","endDate":1425138420,"endStationId":"691","endStationName":"Erin Close, Walham Green","startDate":1425137940,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"41497886","duration":1980,"bikeId":"5925","endDate":1425140160,"endStationId":"480","endStationName":"Flamborough Street, Limehouse","startDate":1425138180,"startStationId":"480","startStationName":"Flamborough Street, Limehouse"}, +{"_id":"41497961","duration":3240,"bikeId":"8870","endDate":1425141600,"endStationId":"348","endStationName":"Grosvenor Square, Mayfair","startDate":1425138360,"startStationId":"160","startStationName":"Waterloo Place, St. James's"}, +{"_id":"41498014","duration":300,"bikeId":"10591","endDate":1425138840,"endStationId":"683","endStationName":"Dorothy Road, Clapham Junction","startDate":1425138540,"startStationId":"735","startStationName":"Grant Road East, Clapham Junction"}, +{"_id":"41498094","duration":900,"bikeId":"8230","endDate":1425139680,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1425138780,"startStationId":"326","startStationName":"Graham Street, Angel"}, +{"_id":"41498162","duration":1140,"bikeId":"4703","endDate":1425140160,"endStationId":"244","endStationName":"Earnshaw Street , Covent Garden","startDate":1425139020,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41498234","duration":1380,"bikeId":"5960","endDate":1425140580,"endStationId":"300","endStationName":"Serpentine Car Park, Hyde Park","startDate":1425139200,"startStationId":"541","startStationName":"Green Park Station, West End"}, +{"_id":"41498305","duration":900,"bikeId":"12657","endDate":1425140280,"endStationId":"114","endStationName":"Park Road (Baker Street), Regent's Park","startDate":1425139380,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"41498371","duration":1440,"bikeId":"4155","endDate":1425141060,"endStationId":"449","endStationName":"Shadwell Station, Shadwell","startDate":1425139620,"startStationId":"130","startStationName":"Tower Gardens , Tower"}, +{"_id":"41498439","duration":240,"bikeId":"2772","endDate":1425140040,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1425139800,"startStationId":"407","startStationName":"Speakers' Corner 1, Hyde Park"}, +{"_id":"41498514","duration":1320,"bikeId":"883","endDate":1425141360,"endStationId":"657","endStationName":"Blythe Road West, Shepherd's Bush","startDate":1425140040,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"41498567","duration":2340,"bikeId":"6660","endDate":1425142560,"endStationId":"368","endStationName":"Harriet Street, Knightsbridge","startDate":1425140220,"startStationId":"219","startStationName":"Bramham Gardens, Earl's Court"}, +{"_id":"41498649","duration":1140,"bikeId":"4590","endDate":1425141540,"endStationId":"191","endStationName":"Hyde Park Corner, Hyde Park","startDate":1425140400,"startStationId":"404","startStationName":"Palace Gate, Kensington Gardens"}, +{"_id":"41498730","duration":180,"bikeId":"12927","endDate":1425140820,"endStationId":"242","endStationName":"Beaumont Street, Marylebone","startDate":1425140640,"startStationId":"81","startStationName":"Great Titchfield Street, Fitzrovia"}, +{"_id":"41498780","duration":840,"bikeId":"5212","endDate":1425141660,"endStationId":"200","endStationName":"LMU Commercial Road, Whitechapel","startDate":1425140820,"startStationId":"427","startStationName":"Cheapside, Bank"}, +{"_id":"41498863","duration":1020,"bikeId":"11923","endDate":1425142080,"endStationId":"74","endStationName":"Vauxhall Cross, Vauxhall","startDate":1425141060,"startStationId":"211","startStationName":"Cadogan Place, Knightsbridge"}, +{"_id":"41498917","duration":900,"bikeId":"13063","endDate":1425142140,"endStationId":"677","endStationName":"Heath Road, Battersea","startDate":1425141240,"startStationId":"641","startStationName":"Archbishop's Park, Waterloo"}, +{"_id":"41498997","duration":1740,"bikeId":"10281","endDate":1425143160,"endStationId":"174","endStationName":"Strand, Strand","startDate":1425141420,"startStationId":"10","startStationName":"Park Street, Bankside"}, +{"_id":"41499048","duration":1500,"bikeId":"4306","endDate":1425143040,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1425141540,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41499151","duration":840,"bikeId":"5617","endDate":1425142560,"endStationId":"23","endStationName":"Red Lion Square, Holborn","startDate":1425141720,"startStationId":"14","startStationName":"Belgrove Street , King's Cross"}, +{"_id":"41499213","duration":5220,"bikeId":"175","endDate":1425147120,"endStationId":"622","endStationName":"Lansdowne Road, Ladbroke Grove","startDate":1425141900,"startStationId":"378","startStationName":"Natural History Museum, South Kensington"}, +{"_id":"41499277","duration":480,"bikeId":"758","endDate":1425142560,"endStationId":"407","endStationName":"Speakers' Corner 1, Hyde Park","startDate":1425142080,"startStationId":"303","startStationName":"Albert Gate, Hyde Park"}, +{"_id":"41499363","duration":240,"bikeId":"12747","endDate":1425142560,"endStationId":"144","endStationName":"Kennington Cross, Kennington","startDate":1425142320,"startStationId":"270","startStationName":"Kennington Lane Rail Bridge, Vauxhall"}, +{"_id":"41499427","duration":900,"bikeId":"961","endDate":1425143460,"endStationId":"301","endStationName":"Marylebone Lane, Marylebone","startDate":1425142560,"startStationId":"7","startStationName":"Charlbert Street, St. John's Wood"}, +{"_id":"41499475","duration":2880,"bikeId":"10865","endDate":1425145560,"endStationId":"159","endStationName":"Great Marlborough Street, Soho","startDate":1425142680,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"41499548","duration":780,"bikeId":"5130","endDate":1425143640,"endStationId":"727","endStationName":"Chesilton Road, Fulham","startDate":1425142860,"startStationId":"682","startStationName":"Crisp Road, Hammersmith"}, +{"_id":"41499617","duration":1320,"bikeId":"3991","endDate":1425144300,"endStationId":"304","endStationName":"Cumberland Gate, Hyde Park","startDate":1425142980,"startStationId":"307","startStationName":"Black Lion Gate, Kensington Gardens"}, +{"_id":"41499681","duration":1980,"bikeId":"12144","endDate":1425145140,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1425143160,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"41499758","duration":660,"bikeId":"10506","endDate":1425144000,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1425143340,"startStationId":"18","startStationName":"Drury Lane, Covent Garden"}, +{"_id":"41499847","duration":3540,"bikeId":"1309","endDate":1425147060,"endStationId":"382","endStationName":"Farm Street, Mayfair","startDate":1425143520,"startStationId":"615","startStationName":"Finlay Street, Fulham"}, +{"_id":"41499913","duration":3300,"bikeId":"1667","endDate":1425147000,"endStationId":"457","endStationName":"Castlehaven Road, Camden Town","startDate":1425143700,"startStationId":"15","startStationName":"Great Russell Street, Bloomsbury"}, +{"_id":"41499972","duration":1200,"bikeId":"291","endDate":1425145140,"endStationId":"243","endStationName":"Gloucester Street, Pimlico","startDate":1425143940,"startStationId":"762","startStationName":"Storey's Gate, Westminster"}, +{"_id":"41500046","duration":3780,"bikeId":"9380","endDate":1425147960,"endStationId":"483","endStationName":"Albert Gardens, Stepney","startDate":1425144180,"startStationId":"282","startStationName":"Royal London Hospital, Whitechapel"}, +{"_id":"41500124","duration":600,"bikeId":"12975","endDate":1425145020,"endStationId":"537","endStationName":"Old Montague Street, Whitechapel","startDate":1425144420,"startStationId":"96","startStationName":"Falkirk Street, Hoxton"}, +{"_id":"41500206","duration":600,"bikeId":"8004","endDate":1425145200,"endStationId":"24","endStationName":"British Museum, Bloomsbury","startDate":1425144600,"startStationId":"581","startStationName":"New Cavendish Street, Marylebone"}, +{"_id":"41500251","duration":780,"bikeId":"7820","endDate":1425145560,"endStationId":"390","endStationName":"Buxton Street 1, Shoreditch","startDate":1425144780,"startStationId":"275","startStationName":"Barbican Centre, Barbican"}, +{"_id":"41500322","duration":600,"bikeId":"4514","endDate":1425145620,"endStationId":"199","endStationName":"Great Tower Street, Monument","startDate":1425145020,"startStationId":"252","startStationName":"Jubilee Gardens, South Bank"}, +{"_id":"41500395","duration":1440,"bikeId":"2026","endDate":1425146700,"endStationId":"490","endStationName":"Pennington Street, Wapping","startDate":1425145260,"startStationId":"481","startStationName":"Saunders Ness Road, Cubitt Town"}, +{"_id":"41500430","duration":1440,"bikeId":"1945","endDate":1425146820,"endStationId":"233","endStationName":"Pall Mall East, West End","startDate":1425145380,"startStationId":"159","startStationName":"Great Marlborough Street, Soho"}, +{"_id":"41500531","duration":1320,"bikeId":"9688","endDate":1425146940,"endStationId":"381","endStationName":"Charlotte Street, Fitzrovia","startDate":1425145620,"startStationId":"5","startStationName":"Sedding Street, Sloane Square"}, +{"_id":"41500609","duration":240,"bikeId":"10605","endDate":1425146100,"endStationId":"425","endStationName":"Harrington Square 2, Camden Town","startDate":1425145860,"startStationId":"98","startStationName":"Hampstead Road, Euston"}, +{"_id":"41500677","duration":120,"bikeId":"10794","endDate":1425146160,"endStationId":"208","endStationName":"Mallory Street, Marylebone","startDate":1425146040,"startStationId":"760","startStationName":"Rossmore Road, Marylebone"}, +{"_id":"41500748","duration":240,"bikeId":"269","endDate":1425146520,"endStationId":"239","endStationName":"Warren Street Station, Euston","startDate":1425146280,"startStationId":"381","startStationName":"Charlotte Street, Fitzrovia"}, +{"_id":"41500839","duration":1140,"bikeId":"7726","endDate":1425147720,"endStationId":"63","endStationName":"Murray Grove , Hoxton","startDate":1425146580,"startStationId":"313","startStationName":"Wells Street, Fitzrovia"}, +{"_id":"41500892","duration":300,"bikeId":"11972","endDate":1425147060,"endStationId":"228","endStationName":"St. James's Square, St. James's","startDate":1425146760,"startStationId":"383","startStationName":"Frith Street, Soho"}, +{"_id":"41500968","duration":540,"bikeId":"12616","endDate":1425147540,"endStationId":"6","endStationName":"Broadcasting House, Marylebone","startDate":1425147000,"startStationId":"380","startStationName":"Stanhope Gate, Mayfair"}, +{"_id":"41501007","duration":3060,"bikeId":"2057","endDate":1425150240,"endStationId":"730","endStationName":"Bridge Avenue, Hammersmith","startDate":1425147180,"startStationId":"730","startStationName":"Bridge Avenue, Hammersmith"}, +{"_id":"41501083","duration":660,"bikeId":"9744","endDate":1425148080,"endStationId":"282","endStationName":"Royal London Hospital, Whitechapel","startDate":1425147420,"startStationId":"46","startStationName":"Nesham Street, Wapping"}, +{"_id":"41501157","duration":780,"bikeId":"12753","endDate":1425148620,"endStationId":"222","endStationName":"Knightsbridge, Hyde Park","startDate":1425147840,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41501225","duration":1020,"bikeId":"2168","endDate":1425149160,"endStationId":"649","endStationName":"World's End Place, West Chelsea","startDate":1425148140,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41501307","duration":480,"bikeId":"2600","endDate":1425148920,"endStationId":"553","endStationName":"Regent's Row , Haggerston","startDate":1425148440,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41501360","duration":660,"bikeId":"1070","endDate":1425149340,"endStationId":"427","endStationName":"Cheapside, Bank","startDate":1425148680,"startStationId":"11","startStationName":"Brunswick Square, Bloomsbury"}, +{"_id":"41501429","duration":360,"bikeId":"10846","endDate":1425149340,"endStationId":"155","endStationName":"Lexham Gardens, Kensington","startDate":1425148980,"startStationId":"392","startStationName":"Imperial College, Knightsbridge"}, +{"_id":"41501509","duration":1140,"bikeId":"8073","endDate":1425150360,"endStationId":"564","endStationName":"Somerset House, Strand","startDate":1425149220,"startStationId":"199","startStationName":"Great Tower Street, Monument"}, +{"_id":"41501587","duration":180,"bikeId":"7038","endDate":1425149700,"endStationId":"46","endStationName":"Nesham Street, Wapping","startDate":1425149520,"startStationId":"452","startStationName":"St Katharines Way, Tower"}, +{"_id":"41501636","duration":38220,"bikeId":"359","endDate":1425187920,"endStationId":"43","endStationName":"Crawford Street, Marylebone","startDate":1425149700,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41501706","duration":240,"bikeId":"8899","endDate":1425150180,"endStationId":"749","endStationName":"Haggerston Road, Haggerston","startDate":1425149940,"startStationId":"553","startStationName":"Regent's Row , Haggerston"}, +{"_id":"41501782","duration":3000,"bikeId":"5972","endDate":1425153240,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1425150240,"startStationId":"210","startStationName":"Hinde Street, Marylebone"}, +{"_id":"41501854","duration":1080,"bikeId":"10231","endDate":1425151680,"endStationId":"2","endStationName":"Phillimore Gardens, Kensington","startDate":1425150600,"startStationId":"228","startStationName":"St. James's Square, St. James's"}, +{"_id":"41501911","duration":360,"bikeId":"1910","endDate":1425151260,"endStationId":"628","endStationName":"William Morris Way, Sands End","startDate":1425150900,"startStationId":"629","startStationName":"Morie Street, Wandsworth"}, +{"_id":"41501988","duration":840,"bikeId":"3910","endDate":1425152040,"endStationId":"430","endStationName":"South Parade, Chelsea","startDate":1425151200,"startStationId":"294","startStationName":"St. George's Square, Pimlico"}, +{"_id":"41502051","duration":1020,"bikeId":"3423","endDate":1425152520,"endStationId":"356","endStationName":"South Kensington Station, South Kensington","startDate":1425151500,"startStationId":"776","startStationName":"Abyssinia Close, Clapham Junction"}, +{"_id":"41502134","duration":780,"bikeId":"1514","endDate":1425152820,"endStationId":"278","endStationName":"Tooley Street, Bermondsey","startDate":1425152040,"startStationId":"317","startStationName":"Dickens Square, Borough"}, +{"_id":"41502192","duration":0,"bikeId":"7191","endDate":1425152580,"endStationId":"122","endStationName":"Norton Folgate, Liverpool Street","startDate":1425152580,"startStationId":"122","startStationName":"Norton Folgate, Liverpool Street"}, +{"_id":"41502258","duration":1020,"bikeId":"2409","endDate":1425154440,"endStationId":"234","endStationName":"Liverpool Road (N1 Centre), Angel","startDate":1425153420,"startStationId":"253","startStationName":"Shoreditch Park, Hoxton"}, +{"_id":"41502333","duration":1380,"bikeId":"10216","endDate":1425156000,"endStationId":"715","endStationName":"Aylward Street, Stepney","startDate":1425154620,"startStationId":"443","startStationName":"Philpot Street, Whitechapel"}, +{"_id":"41502399","duration":420,"bikeId":"1874","endDate":1425156240,"endStationId":"132","endStationName":"Bethnal Green Road, Shoreditch","startDate":1425155820,"startStationId":"489","startStationName":"Christian Street, Whitechapel"}, +{"_id":"41502466","duration":360,"bikeId":"5984","endDate":1425158040,"endStationId":"133","endStationName":"Derry Street, Kensington","startDate":1425157680,"startStationId":"258","startStationName":"Kensington Gore, Knightsbridge"}, +{"_id":"41502531","duration":1080,"bikeId":"5847","endDate":1425160080,"endStationId":"130","endStationName":"Tower Gardens , Tower","startDate":1425159000,"startStationId":"236","startStationName":"Fashion Street, Whitechapel"}, +{"_id":"41502603","duration":540,"bikeId":"8136","endDate":1425160740,"endStationId":"89","endStationName":"Tavistock Place, Bloomsbury","startDate":1425160200,"startStationId":"192","startStationName":"Wardour Street, Soho"}, +{"_id":"41502671","duration":1260,"bikeId":"471","endDate":1425162420,"endStationId":"109","endStationName":"Soho Square , Soho","startDate":1425161160,"startStationId":"39","startStationName":"Shoreditch High Street, Shoreditch"}, +{"_id":"41502735","duration":420,"bikeId":"7523","endDate":1425162720,"endStationId":"431","endStationName":"Crinan Street, King's Cross","startDate":1425162300,"startStationId":"25","startStationName":"Doric Way , Somers Town"}, +{"_id":"41502803","duration":600,"bikeId":"3127","endDate":1425163860,"endStationId":"753","endStationName":"Hammersmith Town Hall, Hammersmith","startDate":1425163260,"startStationId":"761","startStationName":"Humbolt Road, Fulham"}, +{"_id":"41502869","duration":960,"bikeId":"6169","endDate":1425165120,"endStationId":"272","endStationName":"Baylis Road, Waterloo","startDate":1425164160,"startStationId":"318","startStationName":"Sackville Street, Mayfair"}, +{"_id":"41502940","duration":240,"bikeId":"488","endDate":1425165480,"endStationId":"219","endStationName":"Bramham Gardens, Earl's Court","startDate":1425165240,"startStationId":"589","startStationName":"Drayton Gardens, Chelsea"}, +{"_id":"41503007","duration":420,"bikeId":"450","endDate":1425166560,"endStationId":"499","endStationName":"Furze Green, Bow","startDate":1425166140,"startStationId":"492","startStationName":"The Green Bridge, Mile End"}, +{"_id":"41503071","duration":420,"bikeId":"1526","endDate":1425167400,"endStationId":"469","endStationName":"Lindfield Street, Poplar","startDate":1425166980,"startStationId":"492","startStationName":"The Green Bridge, Mile End"} +] diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/functions.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/functions.ts new file mode 100644 index 0000000000000000000000000000000000000000..578e6e096cb527730a930f1d17cf9e4c5d65715a --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/functions.ts @@ -0,0 +1,17 @@ +import logger from './Logger' + +export const pErr = (err: Error) => { + if (err) { + logger.err(err) + } +} + +export const getRandomInt = () => { + return Math.floor(Math.random() * 1_000_000_000_000) +} + +export async function asyncForEach<T>(array: Array<T>, callback: (item: T, index: number) => void) { + for (let index = 0; index < array.length; index++) { + await callback(array[index], index) + } +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/responseTypes.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/responseTypes.ts new file mode 100644 index 0000000000000000000000000000000000000000..2ab5b06b38d4cc877ce48f6b6ea797ec530b79a9 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/src/shared/responseTypes.ts @@ -0,0 +1,6 @@ +export const paramMissingError = 'One or more of the required parameters was missing.' +export const notFoundError = 'No resource found for given parameters.' + +export interface ApiError { + error: string +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/tsconfig.json b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..3443623bd9f0ace927a1efd5f2d680c0f03c9746 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/tsconfig.json @@ -0,0 +1,41 @@ +{ + "compilerOptions": { + /* Basic Options */ + "target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */ + "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ + "outDir": "dist", /* Redirect output structure to the directory. */ + + /* Strict Type-Checking Options */ + "strict": true, /* Enable all strict type-checking options. */ + "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ + + /* Module Resolution Options */ + "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ + "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ + "resolveJsonModule": true, /* Allow import of json files. */ + + /* Advanced Options */ + "skipLibCheck": true, /* Skip type checking of declaration files. */ + "forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */ + "paths": { + "@daos/*": [ + "src/daos/*" + ], + "@entities/*": [ + "src/entities/*" + ], + "@shared/*": [ + "src/shared/*" + ], + "@server": [ + "src/Server" + ] + } + }, + "include": [ + "src/**/*.ts" + ], + "exclude": [ + "src/public/" + ] +} \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/backend/tsconfig.prod.json b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/tsconfig.prod.json new file mode 100644 index 0000000000000000000000000000000000000000..d225639253894d82bf7ca8be35a9777ef4e78cda --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/backend/tsconfig.prod.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "sourceMap": false + }, + "exclude": [ + "src/public/" + ] +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/.gitignore b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..beb30f376c2bffbd3b7e05d6dc0feafe1ec0229e --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/.gitignore @@ -0,0 +1,26 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# lint +.eslintcache + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/README.md b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/README.md new file mode 100644 index 0000000000000000000000000000000000000000..3573c243c915f4d0fadbb0e0f6b0862c155be13c --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/README.md @@ -0,0 +1,19 @@ +# Dashboard for bike sharing data in London + +## Overview +Our bike sharing dashboard visualizes bike sharing data on three different pages, defined in `src/pages`: +- landing page `/` +- bike points map `/map` +- bike point details `/bike-point-details/:bikePointId` + +## Start frontend locally +To run this dashboard for local development: Start the backend first! + +Then, run `npm install` to download all dependencies. + +Run `npm start` to start the frontend. It will be available on port 3000. + +## Helpful documentation +- [leaflet-react docs](https://react-leaflet.js.org/docs/example-popup-marker) +- [recharts docs](https://recharts.org/en-US/api) +- [find leaflet map providers](https://leaflet-extras.github.io/leaflet-providers/preview/) diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/package-lock.json b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..b3a2ac2a604c17e71c1a58a7435ba78ab3db1cf2 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/package-lock.json @@ -0,0 +1,17535 @@ +{ + "name": "bike-sharing-dashboard", + "version": "0.1.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/compat-data": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz", + "integrity": "sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==" + }, + "@babel/core": { + "version": "7.12.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz", + "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "@babel/generator": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz", + "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==", + "requires": { + "@babel/types": "^7.12.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", + "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz", + "integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-builder-react-jsx": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz", + "integrity": "sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-builder-react-jsx-experimental": { + "version": "7.12.4", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz", + "integrity": "sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-module-imports": "^7.12.1", + "@babel/types": "^7.12.1" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz", + "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==", + "requires": { + "@babel/compat-data": "^7.12.5", + "@babel/helper-validator-option": "^7.12.1", + "browserslist": "^4.14.5", + "semver": "^5.5.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz", + "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==", + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-member-expression-to-functions": "^7.12.1", + "@babel/helper-optimise-call-expression": "^7.10.4", + "@babel/helper-replace-supers": "^7.12.1", + "@babel/helper-split-export-declaration": "^7.10.4" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz", + "integrity": "sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "regexpu-core": "^4.7.1" + } + }, + "@babel/helper-define-map": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz", + "integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==", + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/types": "^7.10.5", + "lodash": "^4.17.19" + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz", + "integrity": "sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==", + "requires": { + "@babel/types": "^7.12.1" + } + }, + "@babel/helper-function-name": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", + "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "requires": { + "@babel/helper-get-function-arity": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", + "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz", + "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==", + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz", + "integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==", + "requires": { + "@babel/types": "^7.12.7" + } + }, + "@babel/helper-module-imports": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz", + "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==", + "requires": { + "@babel/types": "^7.12.5" + } + }, + "@babel/helper-module-transforms": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz", + "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==", + "requires": { + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-replace-supers": "^7.12.1", + "@babel/helper-simple-access": "^7.12.1", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/helper-validator-identifier": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "lodash": "^4.17.19" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz", + "integrity": "sha512-I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw==", + "requires": { + "@babel/types": "^7.12.7" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz", + "integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-wrap-function": "^7.10.4", + "@babel/types": "^7.12.1" + } + }, + "@babel/helper-replace-supers": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz", + "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.12.1", + "@babel/helper-optimise-call-expression": "^7.10.4", + "@babel/traverse": "^7.12.5", + "@babel/types": "^7.12.5" + } + }, + "@babel/helper-simple-access": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz", + "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==", + "requires": { + "@babel/types": "^7.12.1" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz", + "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==", + "requires": { + "@babel/types": "^7.12.1" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", + "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "requires": { + "@babel/types": "^7.11.0" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", + "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==" + }, + "@babel/helper-validator-option": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz", + "integrity": "sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==" + }, + "@babel/helper-wrap-function": { + "version": "7.12.3", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz", + "integrity": "sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==", + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helpers": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz", + "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==", + "requires": { + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.5", + "@babel/types": "^7.12.5" + } + }, + "@babel/highlight": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz", + "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==" + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz", + "integrity": "sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-remap-async-to-generator": "^7.12.1", + "@babel/plugin-syntax-async-generators": "^7.8.0" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz", + "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz", + "integrity": "sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-decorators": "^7.12.1" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz", + "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-dynamic-import": "^7.8.0" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz", + "integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz", + "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.0" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz", + "integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz", + "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz", + "integrity": "sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz", + "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-transform-parameters": "^7.12.1" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz", + "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz", + "integrity": "sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz", + "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz", + "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz", + "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.1.tgz", + "integrity": "sha512-ir9YW5daRrTYiy9UJ2TzdNIJEZu8KclVzDcfSt4iEmOtwQ4llPtWInNKJyKnVXp1vE4bbVd5S31M/im3mYMO1w==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-flow": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.1.tgz", + "integrity": "sha512-1lBLLmtxrwpm4VKmtVFselI/P3pX+G63fAtUUt6b2Nzgao77KNDwyuRt90Mj2/9pKobtt68FdvjfqohZjg/FCA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz", + "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz", + "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.1.tgz", + "integrity": "sha512-UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz", + "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz", + "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==", + "requires": { + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-remap-async-to-generator": "^7.12.1" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz", + "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz", + "integrity": "sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz", + "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-define-map": "^7.10.4", + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-optimise-call-expression": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-replace-supers": "^7.12.1", + "@babel/helper-split-export-declaration": "^7.10.4", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz", + "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz", + "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz", + "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz", + "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz", + "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-flow-strip-types": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz", + "integrity": "sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-flow": "^7.12.1" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz", + "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz", + "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==", + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz", + "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz", + "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz", + "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==", + "requires": { + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz", + "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==", + "requires": { + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-simple-access": "^7.12.1", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz", + "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==", + "requires": { + "@babel/helper-hoist-variables": "^7.10.4", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-validator-identifier": "^7.10.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz", + "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==", + "requires": { + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz", + "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.1" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz", + "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz", + "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-replace-supers": "^7.12.1" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz", + "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz", + "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-react-constant-elements": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.12.1.tgz", + "integrity": "sha512-KOHd0tIRLoER+J+8f9DblZDa1fLGPwaaN1DI1TVHuQFOpjHV22C3CUB3obeC4fexHY9nx+fH0hQNvLFFfA1mxA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz", + "integrity": "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.7.tgz", + "integrity": "sha512-YFlTi6MEsclFAPIDNZYiCRbneg1MFGao9pPG9uD5htwE0vDbPaMUMeYd6itWjw7K4kro4UbdQf3ljmFl9y48dQ==", + "requires": { + "@babel/helper-builder-react-jsx": "^7.10.4", + "@babel/helper-builder-react-jsx-experimental": "^7.12.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-jsx": "^7.12.1" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.7.tgz", + "integrity": "sha512-Rs3ETtMtR3VLXFeYRChle5SsP/P9Jp/6dsewBQfokDSzKJThlsuFcnzLTDRALiUmTC48ej19YD9uN1mupEeEDg==", + "requires": { + "@babel/helper-builder-react-jsx-experimental": "^7.12.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-jsx": "^7.12.1" + } + }, + "@babel/plugin-transform-react-jsx-self": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz", + "integrity": "sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-react-jsx-source": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz", + "integrity": "sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz", + "integrity": "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz", + "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==", + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz", + "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz", + "integrity": "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==", + "requires": { + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "resolve": "^1.8.1", + "semver": "^5.5.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz", + "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz", + "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz", + "integrity": "sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz", + "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz", + "integrity": "sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.1.tgz", + "integrity": "sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-typescript": "^7.12.1" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz", + "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz", + "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/preset-env": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.7.tgz", + "integrity": "sha512-OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew==", + "requires": { + "@babel/compat-data": "^7.12.7", + "@babel/helper-compilation-targets": "^7.12.5", + "@babel/helper-module-imports": "^7.12.5", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-validator-option": "^7.12.1", + "@babel/plugin-proposal-async-generator-functions": "^7.12.1", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-dynamic-import": "^7.12.1", + "@babel/plugin-proposal-export-namespace-from": "^7.12.1", + "@babel/plugin-proposal-json-strings": "^7.12.1", + "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-numeric-separator": "^7.12.7", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-catch-binding": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.7", + "@babel/plugin-proposal-private-methods": "^7.12.1", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.1", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-class-properties": "^7.12.1", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.12.1", + "@babel/plugin-transform-arrow-functions": "^7.12.1", + "@babel/plugin-transform-async-to-generator": "^7.12.1", + "@babel/plugin-transform-block-scoped-functions": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.1", + "@babel/plugin-transform-classes": "^7.12.1", + "@babel/plugin-transform-computed-properties": "^7.12.1", + "@babel/plugin-transform-destructuring": "^7.12.1", + "@babel/plugin-transform-dotall-regex": "^7.12.1", + "@babel/plugin-transform-duplicate-keys": "^7.12.1", + "@babel/plugin-transform-exponentiation-operator": "^7.12.1", + "@babel/plugin-transform-for-of": "^7.12.1", + "@babel/plugin-transform-function-name": "^7.12.1", + "@babel/plugin-transform-literals": "^7.12.1", + "@babel/plugin-transform-member-expression-literals": "^7.12.1", + "@babel/plugin-transform-modules-amd": "^7.12.1", + "@babel/plugin-transform-modules-commonjs": "^7.12.1", + "@babel/plugin-transform-modules-systemjs": "^7.12.1", + "@babel/plugin-transform-modules-umd": "^7.12.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1", + "@babel/plugin-transform-new-target": "^7.12.1", + "@babel/plugin-transform-object-super": "^7.12.1", + "@babel/plugin-transform-parameters": "^7.12.1", + "@babel/plugin-transform-property-literals": "^7.12.1", + "@babel/plugin-transform-regenerator": "^7.12.1", + "@babel/plugin-transform-reserved-words": "^7.12.1", + "@babel/plugin-transform-shorthand-properties": "^7.12.1", + "@babel/plugin-transform-spread": "^7.12.1", + "@babel/plugin-transform-sticky-regex": "^7.12.7", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/plugin-transform-typeof-symbol": "^7.12.1", + "@babel/plugin-transform-unicode-escapes": "^7.12.1", + "@babel/plugin-transform-unicode-regex": "^7.12.1", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.12.7", + "core-js-compat": "^3.7.0", + "semver": "^5.5.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.7.tgz", + "integrity": "sha512-wKeTdnGUP5AEYCYQIMeXMMwU7j+2opxrG0WzuZfxuuW9nhKvvALBjl67653CWamZJVefuJGI219G591RSldrqQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-react-display-name": "^7.12.1", + "@babel/plugin-transform-react-jsx": "^7.12.7", + "@babel/plugin-transform-react-jsx-development": "^7.12.7", + "@babel/plugin-transform-react-jsx-self": "^7.12.1", + "@babel/plugin-transform-react-jsx-source": "^7.12.1", + "@babel/plugin-transform-react-pure-annotations": "^7.12.1" + } + }, + "@babel/preset-typescript": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz", + "integrity": "sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.12.1" + } + }, + "@babel/runtime": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", + "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/runtime-corejs3": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz", + "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==", + "requires": { + "core-js-pure": "^3.0.0", + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz", + "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/parser": "^7.12.7", + "@babel/types": "^7.12.7" + } + }, + "@babel/traverse": { + "version": "7.12.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.9.tgz", + "integrity": "sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.5", + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/parser": "^7.12.7", + "@babel/types": "^7.12.7", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.19" + } + }, + "@babel/types": { + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz", + "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==", + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + } + }, + "@csstools/convert-colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", + "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==" + }, + "@csstools/normalize.css": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz", + "integrity": "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==" + }, + "@emotion/cache": { + "version": "10.0.29", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz", + "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==", + "requires": { + "@emotion/sheet": "0.9.4", + "@emotion/stylis": "0.8.5", + "@emotion/utils": "0.11.3", + "@emotion/weak-memoize": "0.2.5" + } + }, + "@emotion/core": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.1.1.tgz", + "integrity": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==", + "requires": { + "@babel/runtime": "^7.5.5", + "@emotion/cache": "^10.0.27", + "@emotion/css": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + } + }, + "@emotion/css": { + "version": "10.0.27", + "resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz", + "integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==", + "requires": { + "@emotion/serialize": "^0.11.15", + "@emotion/utils": "0.11.3", + "babel-plugin-emotion": "^10.0.27" + } + }, + "@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" + }, + "@emotion/is-prop-valid": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", + "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", + "requires": { + "@emotion/memoize": "0.7.4" + } + }, + "@emotion/memoize": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", + "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + }, + "@emotion/serialize": { + "version": "0.11.16", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", + "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "requires": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + }, + "dependencies": { + "csstype": { + "version": "2.6.14", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.14.tgz", + "integrity": "sha512-2mSc+VEpGPblzAxyeR+vZhJKgYg0Og0nnRi7pmRXFYYxSfnOnW8A5wwQb4n4cE2nIOzqKOAzLCaEX6aBmNEv8A==" + } + } + }, + "@emotion/sheet": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz", + "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" + }, + "@emotion/stylis": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", + "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" + }, + "@emotion/unitless": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + }, + "@emotion/utils": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", + "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + }, + "@emotion/weak-memoize": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz", + "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" + }, + "@eslint/eslintrc": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz", + "integrity": "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "requires": { + "type-fest": "^0.8.1" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + } + } + }, + "@hapi/address": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", + "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==" + }, + "@hapi/bourne": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", + "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==" + }, + "@hapi/hoek": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", + "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==" + }, + "@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", + "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", + "requires": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + } + }, + "@hapi/topo": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", + "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", + "requires": { + "@hapi/hoek": "^8.3.0" + } + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz", + "integrity": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==" + }, + "@jest/console": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^26.6.2", + "jest-util": "^26.6.2", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/core": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/reporters": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^26.6.2", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-resolve-dependencies": "^26.6.3", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "jest-watcher": "^26.6.2", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/environment": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", + "requires": { + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2" + } + }, + "@jest/fake-timers": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", + "requires": { + "@jest/types": "^26.6.2", + "@sinonjs/fake-timers": "^6.0.1", + "@types/node": "*", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + } + }, + "@jest/globals": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/types": "^26.6.2", + "expect": "^26.6.2" + } + }, + "@jest/reporters": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "node-notifier": "^8.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^7.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/source-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "@jest/test-result": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", + "requires": { + "@jest/test-result": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3" + } + }, + "@jest/transform": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^26.6.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-util": "^26.6.2", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz", + "integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==", + "requires": { + "@nodelib/fs.stat": "2.0.3", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz", + "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==" + }, + "@nodelib/fs.walk": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz", + "integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==", + "requires": { + "@nodelib/fs.scandir": "2.1.3", + "fastq": "^1.6.0" + } + }, + "@npmcli/move-file": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.0.1.tgz", + "integrity": "sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==", + "requires": { + "mkdirp": "^1.0.4" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.2.tgz", + "integrity": "sha512-Loc4UDGutcZ+Bd56hBInkm6JyjyCwWy4t2wcDXzN8EDPANgVRj0VP8Nxn0Zq2pc+WKauZwEivQgbDGg4xZO20A==", + "requires": { + "ansi-html": "^0.0.7", + "error-stack-parser": "^2.0.6", + "html-entities": "^1.2.1", + "native-url": "^0.2.6", + "schema-utils": "^2.6.5", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + }, + "@react-leaflet/core": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-1.0.2.tgz", + "integrity": "sha512-QbleYZTMcgujAEyWGki8Lx6cXQqWkNtQlqf5c7NImlIp8bKW66bFpez/6EVatW7+p9WKBOEOVci/9W7WW70EZg==" + }, + "@rollup/plugin-node-resolve": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz", + "integrity": "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==", + "requires": { + "@rollup/pluginutils": "^3.0.8", + "@types/resolve": "0.0.8", + "builtin-modules": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.14.2" + } + }, + "@rollup/plugin-replace": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.3.4.tgz", + "integrity": "sha512-waBhMzyAtjCL1GwZes2jaE9MjuQ/DQF2BatH3fRivUF3z0JBFrU0U6iBNC/4WR+2rLKhaAhPWDNPYp4mI6RqdQ==", + "requires": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + } + }, + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "dependencies": { + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + } + } + }, + "@sinonjs/commons": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz", + "integrity": "sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==", + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@surma/rollup-plugin-off-main-thread": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz", + "integrity": "sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==", + "requires": { + "ejs": "^2.6.1", + "magic-string": "^0.25.0" + } + }, + "@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==" + }, + "@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==" + }, + "@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==" + }, + "@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==" + }, + "@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==" + }, + "@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==" + }, + "@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==" + }, + "@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==" + }, + "@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "requires": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + } + }, + "@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "requires": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + } + }, + "@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "requires": { + "@babel/types": "^7.12.6" + } + }, + "@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "requires": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + } + }, + "@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "requires": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + } + }, + "@svgr/webpack": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.4.0.tgz", + "integrity": "sha512-LjepnS/BSAvelnOnnzr6Gg0GcpLmnZ9ThGFK5WJtm1xOqdBE/1IACZU7MMdVzjyUkfFqGz87eRE4hFaSLiUwYg==", + "requires": { + "@babel/core": "^7.9.0", + "@babel/plugin-transform-react-constant-elements": "^7.9.0", + "@babel/preset-env": "^7.9.5", + "@babel/preset-react": "^7.9.4", + "@svgr/core": "^5.4.0", + "@svgr/plugin-jsx": "^5.4.0", + "@svgr/plugin-svgo": "^5.4.0", + "loader-utils": "^2.0.0" + } + }, + "@testing-library/dom": { + "version": "7.28.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.28.1.tgz", + "integrity": "sha512-acv3l6kDwZkQif/YqJjstT3ks5aaI33uxGNVIQmdKzbZ2eMKgg3EV2tB84GDdc72k3Kjhl6mO8yUt6StVIdRDg==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^4.2.0", + "aria-query": "^4.2.2", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.4", + "lz-string": "^1.4.4", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@testing-library/jest-dom": { + "version": "5.11.6", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.11.6.tgz", + "integrity": "sha512-cVZyUNRWwUKI0++yepYpYX7uhrP398I+tGz4zOlLVlUYnZS+Svuxv4fwLeCIy7TnBYKXUaOlQr3vopxL8ZfEnA==", + "requires": { + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^4.2.2", + "chalk": "^3.0.0", + "css": "^3.0.0", + "css.escape": "^1.5.1", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "css": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", + "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==", + "requires": { + "inherits": "^2.0.4", + "source-map": "^0.6.1", + "source-map-resolve": "^0.6.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-resolve": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz", + "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@testing-library/react": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-11.2.2.tgz", + "integrity": "sha512-jaxm0hwUjv+hzC+UFEywic7buDC9JQ1q3cDsrWVSDAPmLotfA6E6kUHlYm/zOeGCac6g48DR36tFHxl7Zb+N5A==", + "requires": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^7.28.1" + } + }, + "@testing-library/user-event": { + "version": "12.5.0", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-12.5.0.tgz", + "integrity": "sha512-9uXr4+OwjHVUxzdfYZ2yCnF3xlEzr8cZOdqjGnqD8Qb1NoCJrm7UXxG3RUpL2QqcqZ1eqVuxkFJTCky5Yit+XQ==", + "requires": { + "@babel/runtime": "^7.10.2" + } + }, + "@types/anymatch": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", + "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==" + }, + "@types/aria-query": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.0.tgz", + "integrity": "sha512-iIgQNzCm0v7QMhhe4Jjn9uRh+I6GoPmt03CbEtwx3ao8/EfoQcmgtqH4vQ5Db/lxiIGaWDv6nwvunuh0RyX0+A==" + }, + "@types/babel__core": { + "version": "7.1.12", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.12.tgz", + "integrity": "sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", + "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz", + "integrity": "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.0.16", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.16.tgz", + "integrity": "sha512-S63Dt4CZOkuTmpLGGWtT/mQdVORJOpx6SZWGVaP56dda/0Nx5nEe82K7/LAm8zYr6SfMq+1N2OreIOrHAx656w==", + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/chroma-js": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@types/chroma-js/-/chroma-js-2.1.3.tgz", + "integrity": "sha512-1xGPhoSGY1CPmXLCBcjVZSQinFjL26vlR8ZqprsBWiFyED4JacJJ9zHhh5aaUXqbY9B37mKQ73nlydVAXmr1+g==" + }, + "@types/d3-path": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-1.0.9.tgz", + "integrity": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==" + }, + "@types/d3-shape": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-1.3.5.tgz", + "integrity": "sha512-aPEax03owTAKynoK8ZkmkZEDZvvT4Y5pWgii4Jp4oQt0gH45j6siDl9gNDVC5kl64XHN2goN9jbYoHK88tFAcA==", + "requires": { + "@types/d3-path": "^1" + } + }, + "@types/eslint": { + "version": "7.2.6", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.6.tgz", + "integrity": "sha512-I+1sYH+NPQ3/tVqCeUSBwTE/0heyvtXqpIopUUArlBm0Kpocb8FbMa3AZ/ASKIFpN3rnEx932TTXDbt9OXsNDw==", + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/estree": { + "version": "0.0.45", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.45.tgz", + "integrity": "sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g==" + }, + "@types/geojson": { + "version": "7946.0.7", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.7.tgz", + "integrity": "sha512-wE2v81i4C4Ol09RtsWFAqg3BUitWbHSpSlIo+bNdsCJijO9sjme+zm+73ZMCa/qMC8UEERxzGbvmr1cffo2SiQ==" + }, + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.4.tgz", + "integrity": "sha512-mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg==", + "requires": { + "@types/node": "*" + } + }, + "@types/history": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.8.tgz", + "integrity": "sha512-S78QIYirQcUoo6UJZx9CSP0O2ix9IaeAXwQi26Rhr/+mg7qqPy8TzaxHSUut7eGjL8WmLccT7/MXf304WjqHcA==" + }, + "@types/hoist-non-react-statics": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", + "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", + "requires": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "@types/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA==" + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz", + "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==", + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "26.0.16", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.16.tgz", + "integrity": "sha512-Gp12+7tmKCgv9JjtltxUXokohCAEZfpJaEW5tn871SGRp8I+bRWBonQO7vW5NHwnAHe5dd50+Q4zyKuN35i09g==", + "requires": { + "jest-diff": "^26.0.0", + "pretty-format": "^26.0.0" + } + }, + "@types/json-schema": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz", + "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==" + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + }, + "@types/leaflet": { + "version": "1.5.19", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.5.19.tgz", + "integrity": "sha512-ZAKqfvdU/+KFoCpf8aUba09F8mfSc8R2esq++Cha3E2DgwS5K/I/4eJ+0JylrVHZivgY7PSAeXFv/izP+81/MQ==", + "requires": { + "@types/geojson": "*" + } + }, + "@types/mdast": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.3.tgz", + "integrity": "sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw==", + "requires": { + "@types/unist": "*" + } + }, + "@types/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" + }, + "@types/node": { + "version": "12.19.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.19.8.tgz", + "integrity": "sha512-D4k2kNi0URNBxIRCb1khTnkWNHv8KSL1owPmS/K5e5t8B2GzMReY7AsJIY1BnP5KdlgC4rj9jk2IkDMasIE7xg==" + }, + "@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "@types/prettier": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.5.tgz", + "integrity": "sha512-UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ==" + }, + "@types/prop-types": { + "version": "15.7.3", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", + "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" + }, + "@types/q": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", + "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==" + }, + "@types/react": { + "version": "16.14.2", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.2.tgz", + "integrity": "sha512-BzzcAlyDxXl2nANlabtT4thtvbbnhee8hMmH/CcJrISDBVcJS1iOsP1f0OAgSdGE0MsY9tqcrb9YoZcOFv9dbQ==", + "requires": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-datepicker": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@types/react-datepicker/-/react-datepicker-3.1.2.tgz", + "integrity": "sha512-luMH1fUF3GRJwaNFh4cogHV7FSFCJLU8Ai2dZ60Xw0n+MrExvuwOHxcbNkaIkIztPwyuT0H0K8Q4g0RN88LoFQ==", + "requires": { + "@types/react": "*", + "date-fns": "^2.0.1", + "popper.js": "^1.14.1" + } + }, + "@types/react-dom": { + "version": "16.9.10", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.10.tgz", + "integrity": "sha512-ItatOrnXDMAYpv6G8UCk2VhbYVTjZT9aorLtA/OzDN9XJ2GKcfam68jutoAcILdRjsRUO8qb7AmyObF77Q8QFw==", + "requires": { + "@types/react": "^16" + } + }, + "@types/react-native": { + "version": "0.63.37", + "resolved": "https://registry.npmjs.org/@types/react-native/-/react-native-0.63.37.tgz", + "integrity": "sha512-xr9SZG7tQQBKT6840tAGaWEC65D2gjyxZtuZxz631UgeW1ofItuu9HMVhoyYqot2hRSa6Q4YC8FYkRVUpM53/w==", + "requires": { + "@types/react": "*" + } + }, + "@types/react-router": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.8.tgz", + "integrity": "sha512-HzOyJb+wFmyEhyfp4D4NYrumi+LQgQL/68HvJO+q6XtuHSDvw6Aqov7sCAhjbNq3bUPgPqbdvjXC5HeB2oEAPg==", + "requires": { + "@types/history": "*", + "@types/react": "*" + } + }, + "@types/react-router-dom": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.1.6.tgz", + "integrity": "sha512-gjrxYqxz37zWEdMVvQtWPFMFj1dRDb4TGOcgyOfSXTrEXdF92L00WE3C471O3TV/RF1oskcStkXsOU0Ete4s/g==", + "requires": { + "@types/history": "*", + "@types/react": "*", + "@types/react-router": "*" + } + }, + "@types/recharts": { + "version": "1.8.18", + "resolved": "https://registry.npmjs.org/@types/recharts/-/recharts-1.8.18.tgz", + "integrity": "sha512-wohEYbFZJDY+WbTdJKv/Z2y5T0qckZ40yUJhx+Pfbj5WynBhkBForFmGCigEFa0bIcaeoSeTNuCi9udGy2CeJQ==", + "requires": { + "@types/d3-shape": "^1", + "@types/react": "*" + } + }, + "@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "requires": { + "@types/node": "*" + } + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + }, + "@types/stack-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", + "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==" + }, + "@types/styled-components": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/@types/styled-components/-/styled-components-5.1.4.tgz", + "integrity": "sha512-78f5Zuy0v/LTQNOYfpH+CINHpchzMMmAt9amY2YNtSgsk1TmlKm8L2Wijss/mtTrsUAVTm2CdGB8VOM65vA8xg==", + "requires": { + "@types/hoist-non-react-statics": "*", + "@types/react": "*", + "@types/react-native": "*", + "csstype": "^3.0.2" + } + }, + "@types/tapable": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", + "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==" + }, + "@types/testing-library__jest-dom": { + "version": "5.9.5", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.9.5.tgz", + "integrity": "sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==", + "requires": { + "@types/jest": "*" + } + }, + "@types/uglify-js": { + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.11.1.tgz", + "integrity": "sha512-7npvPKV+jINLu1SpSYVWG8KvyJBhBa8tmzMMdDoVc2pWUYHN8KIXlPJhjJ4LT97c4dXJA2SHL/q6ADbDriZN+Q==", + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "@types/unist": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz", + "integrity": "sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==" + }, + "@types/webpack": { + "version": "4.41.25", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.25.tgz", + "integrity": "sha512-cr6kZ+4m9lp86ytQc1jPOJXgINQyz3kLLunZ57jznW+WIAL0JqZbGubQk4GlD42MuQL5JGOABrxdpqqWeovlVQ==", + "requires": { + "@types/anymatch": "*", + "@types/node": "*", + "@types/tapable": "*", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "@types/webpack-sources": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz", + "integrity": "sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==", + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + }, + "@types/yargs": { + "version": "15.0.11", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.11.tgz", + "integrity": "sha512-jfcNBxHFYJ4nPIacsi3woz1+kvUO6s1CyeEhtnDHBjHUMNj5UlW2GynmnSgiJJEdNg9yW5C8lfoNRZrHGv5EqA==", + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz", + "integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==" + }, + "@typescript-eslint/eslint-plugin": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.9.0.tgz", + "integrity": "sha512-WrVzGMzzCrgrpnQMQm4Tnf+dk+wdl/YbgIgd5hKGa2P+lnJ2MON+nQnbwgbxtN9QDLi8HO+JAq0/krMnjQK6Cw==", + "requires": { + "@typescript-eslint/experimental-utils": "4.9.0", + "@typescript-eslint/scope-manager": "4.9.0", + "debug": "^4.1.1", + "functional-red-black-tree": "^1.0.1", + "regexpp": "^3.0.0", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/experimental-utils": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.9.0.tgz", + "integrity": "sha512-0p8GnDWB3R2oGhmRXlEnCvYOtaBCijtA5uBfH5GxQKsukdSQyI4opC4NGTUb88CagsoNQ4rb/hId2JuMbzWKFQ==", + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/scope-manager": "4.9.0", + "@typescript-eslint/types": "4.9.0", + "@typescript-eslint/typescript-estree": "4.9.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.9.0.tgz", + "integrity": "sha512-QRSDAV8tGZoQye/ogp28ypb8qpsZPV6FOLD+tbN4ohKUWHD2n/u0Q2tIBnCsGwQCiD94RdtLkcqpdK4vKcLCCw==", + "requires": { + "@typescript-eslint/scope-manager": "4.9.0", + "@typescript-eslint/types": "4.9.0", + "@typescript-eslint/typescript-estree": "4.9.0", + "debug": "^4.1.1" + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.9.0.tgz", + "integrity": "sha512-q/81jtmcDtMRE+nfFt5pWqO0R41k46gpVLnuefqVOXl4QV1GdQoBWfk5REcipoJNQH9+F5l+dwa9Li5fbALjzg==", + "requires": { + "@typescript-eslint/types": "4.9.0", + "@typescript-eslint/visitor-keys": "4.9.0" + } + }, + "@typescript-eslint/types": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.9.0.tgz", + "integrity": "sha512-luzLKmowfiM/IoJL/rus1K9iZpSJK6GlOS/1ezKplb7MkORt2dDcfi8g9B0bsF6JoRGhqn0D3Va55b+vredFHA==" + }, + "@typescript-eslint/typescript-estree": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.9.0.tgz", + "integrity": "sha512-rmDR++PGrIyQzAtt3pPcmKWLr7MA+u/Cmq9b/rON3//t5WofNR4m/Ybft2vOLj0WtUzjn018ekHjTsnIyBsQug==", + "requires": { + "@typescript-eslint/types": "4.9.0", + "@typescript-eslint/visitor-keys": "4.9.0", + "debug": "^4.1.1", + "globby": "^11.0.1", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.9.0.tgz", + "integrity": "sha512-sV45zfdRqQo1A97pOSx3fsjR+3blmwtdCt8LDrXgCX36v4Vmz4KHrhpV6Fo2cRdXmyumxx11AHw0pNJqCNpDyg==", + "requires": { + "@typescript-eslint/types": "4.9.0", + "eslint-visitor-keys": "^2.0.0" + } + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + }, + "acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==" + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + }, + "address": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + }, + "adjust-sourcemap-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz", + "integrity": "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==", + "requires": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" + }, + "ansi-escapes": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", + "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", + "requires": { + "type-fest": "^0.11.0" + }, + "dependencies": { + "type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", + "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==" + } + } + }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "requires": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + } + }, + "arity-n": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", + "integrity": "sha1-2edrEXM+CFacCEeuezmyhgswt0U=" + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "array-includes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.2.tgz", + "integrity": "sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "get-intrinsic": "^1.0.1", + "is-string": "^1.0.5" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "array.prototype.flat": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz", + "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1" + } + }, + "array.prototype.flatmap": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz", + "integrity": "sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "function-bind": "^1.1.1" + } + }, + "arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + }, + "autoprefixer": { + "version": "9.8.6", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", + "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "colorette": "^1.2.1", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + } + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, + "axe-core": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.1.1.tgz", + "integrity": "sha512-5Kgy8Cz6LPC9DJcNb3yjAXTu3XihQgEdnIg50c//zOC/MyLP0Clg+Y8Sh9ZjjnvBrDZU4DgXS9C3T9r4/scGZQ==" + }, + "axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + }, + "babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + } + }, + "babel-extract-comments": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", + "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", + "requires": { + "babylon": "^6.18.0" + } + }, + "babel-jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "requires": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "babel-loader": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz", + "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==", + "requires": { + "find-cache-dir": "^2.1.0", + "loader-utils": "^1.4.0", + "mkdirp": "^0.5.3", + "pify": "^4.0.1", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-emotion": { + "version": "10.0.33", + "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz", + "integrity": "sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/serialize": "^0.11.16", + "babel-plugin-macros": "^2.0.0", + "babel-plugin-syntax-jsx": "^6.18.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^1.0.5", + "find-root": "^1.1.0", + "source-map": "^0.5.7" + } + }, + "babel-plugin-istanbul": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", + "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^4.0.0", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-macros": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "requires": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + } + } + } + }, + "babel-plugin-named-asset-import": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz", + "integrity": "sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==" + }, + "babel-plugin-styled-components": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.12.0.tgz", + "integrity": "sha512-FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.0.0", + "@babel/helper-module-imports": "^7.0.0", + "babel-plugin-syntax-jsx": "^6.18.0", + "lodash": "^4.17.11" + } + }, + "babel-plugin-syntax-jsx": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + }, + "babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", + "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" + }, + "babel-plugin-transform-object-rest-spread": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", + "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=", + "requires": { + "babel-plugin-syntax-object-rest-spread": "^6.8.0", + "babel-runtime": "^6.26.0" + } + }, + "babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "babel-preset-current-node-syntax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.0.tgz", + "integrity": "sha512-mGkvkpocWJes1CmMKtgGUwCeeq0pOhALyymozzDWYomHTbDLwueDYG6p4TK1YOeYHCzBzYPsWkgTto10JubI1Q==", + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "requires": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "babel-preset-react-app": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.0.tgz", + "integrity": "sha512-itL2z8v16khpuKutx5IH8UdCdSTuzrOhRFTEdIhveZ2i1iBKDrVE0ATa4sFVy+02GLucZNVBWtoarXBy0Msdpg==", + "requires": { + "@babel/core": "7.12.3", + "@babel/plugin-proposal-class-properties": "7.12.1", + "@babel/plugin-proposal-decorators": "7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1", + "@babel/plugin-proposal-numeric-separator": "7.12.1", + "@babel/plugin-proposal-optional-chaining": "7.12.1", + "@babel/plugin-transform-flow-strip-types": "7.12.1", + "@babel/plugin-transform-react-display-name": "7.12.1", + "@babel/plugin-transform-runtime": "7.12.1", + "@babel/preset-env": "7.12.1", + "@babel/preset-react": "7.12.1", + "@babel/preset-typescript": "7.12.1", + "@babel/runtime": "7.12.1", + "babel-plugin-macros": "2.8.0", + "babel-plugin-transform-react-remove-prop-types": "0.4.24" + }, + "dependencies": { + "@babel/plugin-proposal-numeric-separator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz", + "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz", + "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + } + }, + "@babel/preset-env": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz", + "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==", + "requires": { + "@babel/compat-data": "^7.12.1", + "@babel/helper-compilation-targets": "^7.12.1", + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-validator-option": "^7.12.1", + "@babel/plugin-proposal-async-generator-functions": "^7.12.1", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-dynamic-import": "^7.12.1", + "@babel/plugin-proposal-export-namespace-from": "^7.12.1", + "@babel/plugin-proposal-json-strings": "^7.12.1", + "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-numeric-separator": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-catch-binding": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.1", + "@babel/plugin-proposal-private-methods": "^7.12.1", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.1", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-class-properties": "^7.12.1", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.12.1", + "@babel/plugin-transform-arrow-functions": "^7.12.1", + "@babel/plugin-transform-async-to-generator": "^7.12.1", + "@babel/plugin-transform-block-scoped-functions": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.1", + "@babel/plugin-transform-classes": "^7.12.1", + "@babel/plugin-transform-computed-properties": "^7.12.1", + "@babel/plugin-transform-destructuring": "^7.12.1", + "@babel/plugin-transform-dotall-regex": "^7.12.1", + "@babel/plugin-transform-duplicate-keys": "^7.12.1", + "@babel/plugin-transform-exponentiation-operator": "^7.12.1", + "@babel/plugin-transform-for-of": "^7.12.1", + "@babel/plugin-transform-function-name": "^7.12.1", + "@babel/plugin-transform-literals": "^7.12.1", + "@babel/plugin-transform-member-expression-literals": "^7.12.1", + "@babel/plugin-transform-modules-amd": "^7.12.1", + "@babel/plugin-transform-modules-commonjs": "^7.12.1", + "@babel/plugin-transform-modules-systemjs": "^7.12.1", + "@babel/plugin-transform-modules-umd": "^7.12.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1", + "@babel/plugin-transform-new-target": "^7.12.1", + "@babel/plugin-transform-object-super": "^7.12.1", + "@babel/plugin-transform-parameters": "^7.12.1", + "@babel/plugin-transform-property-literals": "^7.12.1", + "@babel/plugin-transform-regenerator": "^7.12.1", + "@babel/plugin-transform-reserved-words": "^7.12.1", + "@babel/plugin-transform-shorthand-properties": "^7.12.1", + "@babel/plugin-transform-spread": "^7.12.1", + "@babel/plugin-transform-sticky-regex": "^7.12.1", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/plugin-transform-typeof-symbol": "^7.12.1", + "@babel/plugin-transform-unicode-escapes": "^7.12.1", + "@babel/plugin-transform-unicode-regex": "^7.12.1", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.12.1", + "core-js-compat": "^3.6.2", + "semver": "^5.5.0" + } + }, + "@babel/preset-react": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz", + "integrity": "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-react-display-name": "^7.12.1", + "@babel/plugin-transform-react-jsx": "^7.12.1", + "@babel/plugin-transform-react-jsx-development": "^7.12.1", + "@babel/plugin-transform-react-jsx-self": "^7.12.1", + "@babel/plugin-transform-react-jsx-source": "^7.12.1", + "@babel/plugin-transform-react-pure-annotations": "^7.12.1" + } + }, + "@babel/runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", + "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + } + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" + }, + "bail": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", + "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bfj": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", + "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "requires": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "binary-extensions": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz", + "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==", + "optional": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "bn.js": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", + "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==" + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.15.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.15.0.tgz", + "integrity": "sha512-IJ1iysdMkGmjjYeRlDU8PQejVwxvVO5QOfXH7ylW31GO6LwNRSmm/SgRXtNsEXqMLl2e+2H5eEJ7sfynF8TCaQ==", + "requires": { + "caniuse-lite": "^1.0.30001164", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.612", + "escalade": "^3.1.1", + "node-releases": "^1.1.67" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + }, + "builtin-modules": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz", + "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==" + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "cacache": { + "version": "15.0.5", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz", + "integrity": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==", + "requires": { + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.0", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz", + "integrity": "sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.0" + } + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" + } + } + }, + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + } + } + }, + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + }, + "camelize": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", + "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001165", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001165.tgz", + "integrity": "sha512-8cEsSMwXfx7lWSUMA2s08z9dIgsnR5NAqjXP23stdsU3AUWkCr/rr4s4OFtHXn5XXr6+7kam3QFVoYyXNPdJPA==" + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "requires": { + "rsvp": "^4.8.4" + } + }, + "case-sensitive-paths-webpack-plugin": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", + "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + }, + "character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==" + }, + "character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==" + }, + "character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==" + }, + "check-types": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz", + "integrity": "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==" + }, + "chokidar": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", + "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", + "optional": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.1.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "dependencies": { + "fsevents": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", + "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", + "optional": true + } + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + }, + "chroma-js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-2.1.0.tgz", + "integrity": "sha512-uiRdh4ZZy+UTPSrAdp8hqEdVb1EllLtTHOt5TMaOjJUvi+O54/83Fc5K2ld1P+TJX+dw5B+8/sCgzI6eaur/lg==", + "requires": { + "cross-env": "^6.0.3" + } + }, + "chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "requires": { + "tslib": "^1.9.0" + } + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "cjs-module-lexer": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==" + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "classnames": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", + "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" + }, + "clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + } + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", + "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.4" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "color-string": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", + "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "colorette": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz", + "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + }, + "common-tags": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", + "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "compose-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", + "integrity": "sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=", + "requires": { + "arity-n": "^1.0.4" + } + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "confusing-browser-globals": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz", + "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + }, + "contains-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", + "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=" + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + }, + "core-js": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.8.0.tgz", + "integrity": "sha512-W2VYNB0nwQQE7tKS7HzXd7r2y/y2SVJl4ga6oH/dnaLFzM0o2lB2P3zCkWj5Wc/zyMYjtgd5Hmhk0ObkQFZOIA==" + }, + "core-js-compat": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.0.tgz", + "integrity": "sha512-o9QKelQSxQMYWHXc/Gc4L8bx/4F7TTraE5rhuN8I7mKBt5dBIUpXpIR3omv70ebr8ST5R3PqbDQr+ZI3+Tt1FQ==", + "requires": { + "browserslist": "^4.14.7", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + } + } + }, + "core-js-pure": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.8.0.tgz", + "integrity": "sha512-fRjhg3NeouotRoIV0L1FdchA6CK7ZD+lyINyMoz19SyV+ROpC4noS1xItWHFtwZdlqfMfVPJEyEGdfri2bD1pA==" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cosmiconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", + "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "create-react-context": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz", + "integrity": "sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==", + "requires": { + "gud": "^1.0.0", + "warning": "^4.0.3" + } + }, + "cross-env": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-6.0.3.tgz", + "integrity": "sha512-+KqxF6LCvfhWvADcDPqo64yVIB31gv/jQulX2NGzKS/g3GEVz6/pt4wjHFtFWsHMddebWD/sDthJemzM4MaAag==", + "requires": { + "cross-spawn": "^7.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" + }, + "css": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", + "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", + "requires": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "css-blank-pseudo": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", + "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", + "requires": { + "postcss": "^7.0.5" + } + }, + "css-color-keywords": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", + "integrity": "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=" + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" + }, + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + } + }, + "css-has-pseudo": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", + "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^5.0.0-rc.4" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "css-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz", + "integrity": "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==", + "requires": { + "camelcase": "^6.0.0", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^2.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.3", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.1", + "semver": "^7.3.2" + } + }, + "css-prefers-color-scheme": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", + "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", + "requires": { + "postcss": "^7.0.5" + } + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "css-to-react-native": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz", + "integrity": "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==", + "requires": { + "camelize": "^1.0.0", + "css-color-keywords": "^1.0.0", + "postcss-value-parser": "^4.0.2" + } + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" + }, + "css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" + }, + "cssdb": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", + "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "cssnano": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", + "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.7", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + } + } + }, + "cssnano-preset-default": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz", + "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.2", + "postcss-unique-selectors": "^4.0.1" + } + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=" + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=" + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "requires": { + "postcss": "^7.0.0" + } + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==" + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz", + "integrity": "sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + } + }, + "csstype": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.5.tgz", + "integrity": "sha512-uVDi8LpBUKQj6sdxNaTetL6FpeCqTjOvAQuQUa/qAqq8oOd4ivkbhgnqayl0dnPal8Tb/yB1tF+gOvCBiicaiQ==" + }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + }, + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "d3-array": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", + "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" + }, + "d3-collection": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz", + "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" + }, + "d3-color": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz", + "integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==" + }, + "d3-format": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.4.5.tgz", + "integrity": "sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==" + }, + "d3-interpolate": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.4.0.tgz", + "integrity": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==", + "requires": { + "d3-color": "1" + } + }, + "d3-path": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.9.tgz", + "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==" + }, + "d3-scale": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz", + "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==", + "requires": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "d3-shape": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.7.tgz", + "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", + "requires": { + "d3-path": "1" + } + }, + "d3-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.1.0.tgz", + "integrity": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" + }, + "d3-time-format": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.3.0.tgz", + "integrity": "sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==", + "requires": { + "d3-time": "1" + } + }, + "damerau-levenshtein": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz", + "integrity": "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "requires": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + } + }, + "date-fns": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.16.1.tgz", + "integrity": "sha512-sAJVKx/FqrLYHAQeN7VpJrPhagZc9R4ImZIWYRFZaaohR3KzmuK88touwsSwSVT8Qcbd4zoDsnGfX4GFB4imyQ==" + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "decimal.js": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", + "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==" + }, + "decimal.js-light": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", + "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + }, + "detect-node": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", + "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" + }, + "detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "requires": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==" + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" + } + } + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + }, + "dns-packet": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", + "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-accessibility-api": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.4.tgz", + "integrity": "sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ==" + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "requires": { + "utila": "~0.4" + } + }, + "dom-helpers": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", + "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", + "requires": { + "@babel/runtime": "^7.1.2" + } + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==" + } + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "requires": { + "webidl-conversions": "^5.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" + } + } + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + } + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "requires": { + "is-obj": "^2.0.0" + } + }, + "dotenv": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" + }, + "dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "ejs": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", + "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==" + }, + "electron-to-chromium": { + "version": "1.3.616", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.616.tgz", + "integrity": "sha512-CI8L38UN2BEnqXw3/oRIQTmde0LiSeqWSRlPA42ZTYgJQ8fYenzAM2Z3ni+jtILTcrs5aiXZCGJ96Pm+3/yGyQ==" + }, + "elliptic": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz", + "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==", + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" + } + } + }, + "emittery": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==" + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz", + "integrity": "sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==" + }, + "errno": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "error-stack-parser": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz", + "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", + "requires": { + "stackframe": "^1.1.1" + } + }, + "es-abstract": { + "version": "1.18.0-next.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz", + "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==", + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-negative-zero": "^2.0.0", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es5-ext": { + "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "requires": { + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.3", + "next-tick": "~1.0.0" + } + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "requires": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "requires": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "requires": { + "prelude-ls": "~1.1.2" + } + } + } + }, + "eslint": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.15.0.tgz", + "integrity": "sha512-Vr64xFDT8w30wFll643e7cGrIkPEU50yIiI36OdSIDoSGguIeaLzBo0vpGvzo9RECUqq7htURfwEtKqwytkqzA==", + "requires": { + "@babel/code-frame": "^7.0.0", + "@eslint/eslintrc": "^0.2.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.2.0", + "esutils": "^2.0.2", + "file-entry-cache": "^6.0.0", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "requires": { + "type-fest": "^0.8.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "eslint-config-react-app": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz", + "integrity": "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==", + "requires": { + "confusing-browser-globals": "^1.0.10" + } + }, + "eslint-import-resolver-node": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", + "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", + "requires": { + "debug": "^2.6.9", + "resolve": "^1.13.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "eslint-module-utils": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz", + "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==", + "requires": { + "debug": "^2.6.9", + "pkg-dir": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "requires": { + "find-up": "^2.1.0" + } + } + } + }, + "eslint-plugin-flowtype": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.2.0.tgz", + "integrity": "sha512-z7ULdTxuhlRJcEe1MVljePXricuPOrsWfScRXFhNzVD5dmTHWjIF57AxD0e7AbEoLSbjSsaA5S+hCg43WvpXJQ==", + "requires": { + "lodash": "^4.17.15", + "string-natural-compare": "^3.0.1" + } + }, + "eslint-plugin-import": { + "version": "2.22.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz", + "integrity": "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==", + "requires": { + "array-includes": "^3.1.1", + "array.prototype.flat": "^1.2.3", + "contains-path": "^0.1.0", + "debug": "^2.6.9", + "doctrine": "1.5.0", + "eslint-import-resolver-node": "^0.3.4", + "eslint-module-utils": "^2.6.0", + "has": "^1.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.1", + "read-pkg-up": "^2.0.0", + "resolve": "^1.17.0", + "tsconfig-paths": "^3.9.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", + "requires": { + "esutils": "^2.0.2", + "isarray": "^1.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "eslint-plugin-jest": { + "version": "24.1.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.1.3.tgz", + "integrity": "sha512-dNGGjzuEzCE3d5EPZQ/QGtmlMotqnYWD/QpCZ1UuZlrMAdhG5rldh0N0haCvhGnUkSeuORS5VNROwF9Hrgn3Lg==", + "requires": { + "@typescript-eslint/experimental-utils": "^4.0.1" + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz", + "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==", + "requires": { + "@babel/runtime": "^7.11.2", + "aria-query": "^4.2.2", + "array-includes": "^3.1.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.0.2", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.6", + "emoji-regex": "^9.0.0", + "has": "^1.0.3", + "jsx-ast-utils": "^3.1.0", + "language-tags": "^1.0.5" + }, + "dependencies": { + "emoji-regex": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.0.tgz", + "integrity": "sha512-DNc3KFPK18bPdElMJnf/Pkv5TXhxFU3YFDEuGLDRtPmV4rkmCjBkCSEp22u6rBHdSN9Vlp/GK7k98prmE1Jgug==" + } + } + }, + "eslint-plugin-react": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.21.5.tgz", + "integrity": "sha512-8MaEggC2et0wSF6bUeywF7qQ46ER81irOdWS4QWxnnlAEsnzeBevk1sWh7fhpCghPpXb+8Ks7hvaft6L/xsR6g==", + "requires": { + "array-includes": "^3.1.1", + "array.prototype.flatmap": "^1.2.3", + "doctrine": "^2.1.0", + "has": "^1.0.3", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "object.entries": "^1.1.2", + "object.fromentries": "^2.0.2", + "object.values": "^1.1.1", + "prop-types": "^15.7.2", + "resolve": "^1.18.1", + "string.prototype.matchall": "^4.0.2" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz", + "integrity": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==" + }, + "eslint-plugin-testing-library": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.1.tgz", + "integrity": "sha512-nQIFe2muIFv2oR2zIuXE4vTbcFNx8hZKRzgHZqJg8rfopIWwoTwtlbCCNELT/jXzVe1uZF68ALGYoDXjLczKiQ==", + "requires": { + "@typescript-eslint/experimental-utils": "^3.10.1" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", + "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/typescript-estree": "3.10.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/types": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz", + "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==" + }, + "@typescript-eslint/typescript-estree": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz", + "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", + "requires": { + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/visitor-keys": "3.10.1", + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz", + "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==", + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + } + }, + "eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==" + }, + "eslint-webpack-plugin": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.4.1.tgz", + "integrity": "sha512-cj8iPWZKuAiVD8MMgTSunyMCAvxQxp5mxoPHZl1UMGkApFXaXJHdCFcCR+oZEJbBNhReNa5SjESIn34uqUbBtg==", + "requires": { + "@types/eslint": "^7.2.4", + "arrify": "^2.0.1", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "esquery": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz", + "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==", + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "events": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz", + "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==" + }, + "eventsource": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", + "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", + "requires": { + "original": "^1.0.0" + } + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "exec-sh": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz", + "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==" + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "expect": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "requires": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + } + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + } + } + }, + "ext": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", + "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", + "requires": { + "type": "^2.0.0" + }, + "dependencies": { + "type": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.1.0.tgz", + "integrity": "sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==" + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-glob": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz", + "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "fastq": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz", + "integrity": "sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w==", + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "requires": { + "bser": "2.1.1" + } + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + }, + "file-entry-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz", + "integrity": "sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA==", + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-loader": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.1.1.tgz", + "integrity": "sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, + "filesize": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz", + "integrity": "sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA==" + }, + "flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==" + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "follow-redirects": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz", + "integrity": "sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", + "requires": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs-extra": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz", + "integrity": "sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^1.0.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "requires": { + "minipass": "^3.0.0" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fsevents": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.2.1.tgz", + "integrity": "sha512-bTLYHSeC0UH/EFXS9KqWnXuOl/wHK5Z/d+ghd5AsFMYN7wIGkUCOJyzy88+wJKkZPGON8u4Z9f6U4FdgURE9qA==", + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "get-intrinsic": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz", + "integrity": "sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "requires": { + "pump": "^3.0.0" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + }, + "globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==" + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "optional": true + }, + "gud": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz", + "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==" + }, + "gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "harmony-reflect": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.1.tgz", + "integrity": "sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "has-symbols": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", + "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==" + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" + }, + "history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "requires": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "requires": { + "react-is": "^16.7.0" + } + }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==" + }, + "hosted-git-info": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", + "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==" + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=" + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=" + }, + "html-comment-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", + "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==" + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "html-entities": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.3.1.tgz", + "integrity": "sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==" + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "requires": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + } + }, + "html-to-react": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/html-to-react/-/html-to-react-1.4.5.tgz", + "integrity": "sha512-KONZUDFPg5OodWaQu2ymfkDmU0JA7zB1iPfvyHehTmMUZnk0DS7/TyCMTzsLH6b4BvxX15g88qZCXFhJWktsmA==", + "requires": { + "domhandler": "^3.3.0", + "htmlparser2": "^5.0", + "lodash.camelcase": "^4.3.0", + "ramda": "^0.27.1" + }, + "dependencies": { + "dom-serializer": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.2.0.tgz", + "integrity": "sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "entities": "^2.0.0" + }, + "dependencies": { + "domhandler": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.0.0.tgz", + "integrity": "sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA==", + "requires": { + "domelementtype": "^2.1.0" + } + } + } + }, + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==" + }, + "domhandler": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", + "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", + "requires": { + "domelementtype": "^2.0.1" + } + }, + "domutils": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.4.4.tgz", + "integrity": "sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA==", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0" + }, + "dependencies": { + "domhandler": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.0.0.tgz", + "integrity": "sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA==", + "requires": { + "domelementtype": "^2.1.0" + } + } + } + }, + "htmlparser2": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-5.0.1.tgz", + "integrity": "sha512-vKZZra6CSe9qsJzh0BjBGXo8dvzNsq/oGvsjfRdOrrryfeD9UOBEEQdeoqCRmKZchF5h2zOBMQ6YuQ0uRUmdbQ==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^3.3.0", + "domutils": "^2.4.2", + "entities": "^2.0.0" + } + } + } + }, + "html-webpack-plugin": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz", + "integrity": "sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==", + "requires": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.15", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + } + } + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + } + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + } + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "requires": { + "postcss": "^7.0.14" + } + }, + "identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", + "requires": { + "harmony-reflect": "^1.4.6" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" + }, + "immer": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/immer/-/immer-7.0.9.tgz", + "integrity": "sha512-Vs/gxoM4DqNAYR7pugIxi0Xc8XAun/uy7AQu4fLLqaTBHxjOP9pJ266Q9MWA/ly4z6rAFZbvViOtihxUZ7O28A==" + }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "requires": { + "import-from": "^2.1.0" + } + }, + "import-fresh": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz", + "integrity": "sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + } + } + }, + "import-local": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", + "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "dependencies": { + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "requires": { + "find-up": "^4.0.0" + } + } + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", + "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internal-slot": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.2.tgz", + "integrity": "sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g==", + "requires": { + "es-abstract": "^1.17.0-next.1", + "has": "^1.0.3", + "side-channel": "^1.0.2" + }, + "dependencies": { + "es-abstract": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", + "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + } + } + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=" + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" + }, + "is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "requires": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + } + }, + "is-arguments": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", + "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "optional": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-callable": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", + "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "is-core-module": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", + "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" + }, + "is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==" + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + }, + "is-docker": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz", + "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==" + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==" + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "requires": { + "isobject": "^3.0.1" + } + }, + "is-potential-custom-element-name": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz", + "integrity": "sha1-DFLlS8yjkbssSUsh6GJtczbG45c=" + }, + "is-regex": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", + "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", + "requires": { + "has-symbols": "^1.0.1" + } + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + }, + "is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + }, + "is-string": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==" + }, + "is-svg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", + "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", + "requires": { + "html-comment-regex": "^1.1.0" + } + }, + "is-symbol": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "requires": { + "has-symbols": "^1.0.1" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "istanbul-lib-coverage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==" + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", + "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "istanbul-reports": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jest": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.0.tgz", + "integrity": "sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA==", + "requires": { + "@jest/core": "^26.6.0", + "import-local": "^3.0.2", + "jest-cli": "^26.6.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-cli": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz", + "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", + "requires": { + "@jest/core": "^26.6.3", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^26.6.3", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "prompts": "^2.0.1", + "yargs": "^15.4.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-changed-files": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz", + "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", + "requires": { + "@jest/types": "^26.6.2", + "execa": "^4.0.0", + "throat": "^5.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "requires": { + "path-key": "^3.0.0" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "jest-circus": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-26.6.0.tgz", + "integrity": "sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.0", + "@jest/test-result": "^26.6.0", + "@jest/types": "^26.6.0", + "@types/babel__traverse": "^7.0.4", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^26.6.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.0", + "jest-matcher-utils": "^26.6.0", + "jest-message-util": "^26.6.0", + "jest-runner": "^26.6.0", + "jest-runtime": "^26.6.0", + "jest-snapshot": "^26.6.0", + "jest-util": "^26.6.0", + "pretty-format": "^26.6.0", + "stack-utils": "^2.0.2", + "throat": "^5.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-config": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz", + "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^26.6.3", + "@jest/types": "^26.6.2", + "babel-jest": "^26.6.3", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^26.6.2", + "jest-environment-node": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-jasmine2": "^26.6.3", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-docblock": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz", + "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz", + "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-environment-jsdom": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz", + "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2", + "jsdom": "^16.4.0" + } + }, + "jest-environment-node": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz", + "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + } + }, + "jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==" + }, + "jest-haste-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz", + "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", + "requires": { + "@jest/types": "^26.6.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.1.2", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^26.0.0", + "jest-serializer": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz", + "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^26.6.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2", + "throat": "^5.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-leak-detector": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", + "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", + "requires": { + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "jest-matcher-utils": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-mock": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", + "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*" + } + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==" + }, + "jest-regex-util": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz", + "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==" + }, + "jest-resolve": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.0.tgz", + "integrity": "sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==", + "requires": { + "@jest/types": "^26.6.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.0", + "read-pkg-up": "^7.0.1", + "resolve": "^1.17.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz", + "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", + "requires": { + "@jest/types": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-snapshot": "^26.6.2" + } + }, + "jest-runner": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz", + "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.7.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-docblock": "^26.0.0", + "jest-haste-map": "^26.6.2", + "jest-leak-detector": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-runtime": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz", + "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/globals": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^0.6.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.4.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-serializer": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz", + "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + } + }, + "jest-snapshot": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz", + "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.0.0", + "chalk": "^4.0.0", + "expect": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-haste-map": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "natural-compare": "^1.4.0", + "pretty-format": "^26.6.2", + "semver": "^7.3.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-validate": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", + "requires": { + "@jest/types": "^26.6.2", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "leven": "^3.1.0", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watch-typeahead": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.6.1.tgz", + "integrity": "sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==", + "requires": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^26.0.0", + "jest-watcher": "^26.3.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watcher": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", + "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", + "requires": { + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^26.6.2", + "string-length": "^4.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", + "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "jsdom": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz", + "integrity": "sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==", + "requires": { + "abab": "^2.0.3", + "acorn": "^7.1.1", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.2.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.0", + "domexception": "^2.0.1", + "escodegen": "^1.14.1", + "html-encoding-sniffer": "^2.0.1", + "is-potential-custom-element-name": "^1.0.0", + "nwsapi": "^2.2.0", + "parse5": "5.1.1", + "request": "^2.88.2", + "request-promise-native": "^1.0.8", + "saxes": "^5.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0", + "ws": "^7.2.3", + "xml-name-validator": "^3.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" + }, + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + }, + "dependencies": { + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + } + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "jsx-ast-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.1.0.tgz", + "integrity": "sha512-d4/UOjg+mxAWxCiF0c5UTSwyqbchkbqCvK87aBovhnh8GtysTjWmgC63tY0cJx/HzGgm9qnA147jVBdpOiQ2RA==", + "requires": { + "array-includes": "^3.1.1", + "object.assign": "^4.1.1" + } + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + }, + "language-subtag-registry": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", + "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + }, + "language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "requires": { + "language-subtag-registry": "~0.3.2" + } + }, + "last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "requires": { + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" + } + }, + "leaflet": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.7.1.tgz", + "integrity": "sha512-/xwPEBidtg69Q3HlqPdU3DnrXQOvQU/CCHA1tcDQVzOwm91YMYaILjNp7L4Eaw5Z4sOYdbBz6koWyibppd8Zqw==" + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + }, + "load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "requires": { + "error-ex": "^1.2.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" + }, + "lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + }, + "lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "requires": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "requires": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "lodash.throttle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "loglevel": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + } + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "lz-string": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", + "integrity": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=" + }, + "magic-string": { + "version": "0.25.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", + "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "requires": { + "tmpl": "1.0.x" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "requires": { + "object-visit": "^1.0.0" + } + }, + "math-expression-evaluator": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.3.6.tgz", + "integrity": "sha512-gbzsZEUgefao+OqOUOr03GlpjkdOySxVNHQDuiUZXPbLHgDZqiMtOgDSxuzBEtyt9BDXWS503a16bAmlJW/oFA==" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "mdast-add-list-metadata": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdast-add-list-metadata/-/mdast-add-list-metadata-1.0.1.tgz", + "integrity": "sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==", + "requires": { + "unist-util-visit-parents": "1.1.2" + } + }, + "mdast-util-from-markdown": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.4.tgz", + "integrity": "sha512-jj891B5pV2r63n2kBTFh8cRI2uR9LQHsXG1zSDqfhXkIlDzrTcIlbB5+5aaYEkl8vOPIOPLf8VT7Ere1wWTMdw==", + "requires": { + "@types/mdast": "^3.0.0", + "mdast-util-to-string": "^2.0.0", + "micromark": "~2.11.0", + "parse-entities": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + } + }, + "mdast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", + "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==" + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "microevent.ts": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + }, + "micromark": { + "version": "2.11.2", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.2.tgz", + "integrity": "sha512-IXuP76p2uj8uMg4FQc1cRE7lPCLsfAXuEfdjtdO55VRiFO1asrCSQ5g43NmPqFtRwzEnEhafRVzn2jg0UiKArQ==", + "requires": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" + } + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", + "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==" + }, + "mime-types": { + "version": "2.1.27", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", + "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "requires": { + "mime-db": "1.44.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + }, + "mini-create-react-context": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz", + "integrity": "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==", + "requires": { + "@babel/runtime": "^7.12.1", + "tiny-warning": "^1.0.3" + } + }, + "mini-css-extract-plugin": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz", + "integrity": "sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==", + "requires": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "requires": { + "minimist": "^1.2.5" + } + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + }, + "nan": { + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", + "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", + "optional": true + }, + "nanoid": { + "version": "3.1.20", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz", + "integrity": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "native-url": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz", + "integrity": "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==", + "requires": { + "querystring": "^0.2.0" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + } + } + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + } + } + }, + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=" + }, + "node-notifier": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.0.tgz", + "integrity": "sha512-46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA==", + "optional": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + }, + "dependencies": { + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "node-releases": { + "version": "1.1.67", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.67.tgz", + "integrity": "sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==" + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + }, + "normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "requires": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "requires": { + "path-key": "^2.0.0" + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "requires": { + "boolbase": "~1.0.0" + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", + "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" + }, + "object-is": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.4.tgz", + "integrity": "sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", + "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "has": "^1.0.3" + } + }, + "object.fromentries": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.3.tgz", + "integrity": "sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "has": "^1.0.3" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz", + "integrity": "sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz", + "integrity": "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "has": "^1.0.3" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/open/-/open-7.3.0.tgz", + "integrity": "sha512-mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw==", + "requires": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + } + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + } + } + }, + "optimize-css-assets-webpack-plugin": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz", + "integrity": "sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==", + "requires": { + "cssnano": "^4.1.10", + "last-call-webpack-plugin": "^3.0.0" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "requires": { + "url-parse": "^1.4.3" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + }, + "p-each-series": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==" + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "requires": { + "retry": "^0.12.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + } + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "requires": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, + "parse-json": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz", + "integrity": "sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + } + } + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "pbkdf2": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", + "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "^2.0.0" + } + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "requires": { + "node-modules-regexp": "^1.0.0" + } + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + } + }, + "pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + } + }, + "pnp-webpack-plugin": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", + "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "requires": { + "ts-pnp": "^1.1.6" + } + }, + "popper.js": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", + "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==" + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", + "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-attribute-case-insensitive": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", + "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^6.0.2" + } + }, + "postcss-browser-comments": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz", + "integrity": "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==", + "requires": { + "postcss": "^7" + } + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "postcss-color-functional-notation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", + "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-gray": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", + "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-hex-alpha": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", + "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", + "requires": { + "postcss": "^7.0.14", + "postcss-values-parser": "^2.0.1" + } + }, + "postcss-color-mod-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", + "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-rebeccapurple": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", + "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-custom-media": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", + "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", + "requires": { + "postcss": "^7.0.14" + } + }, + "postcss-custom-properties": { + "version": "8.0.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", + "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", + "requires": { + "postcss": "^7.0.17", + "postcss-values-parser": "^2.0.1" + } + }, + "postcss-custom-selectors": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", + "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-dir-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", + "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-double-position-gradients": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", + "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", + "requires": { + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-env-function": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", + "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-flexbugs-fixes": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz", + "integrity": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==", + "requires": { + "postcss": "^7.0.26" + } + }, + "postcss-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", + "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-focus-within": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", + "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-font-variant": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", + "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-gap-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", + "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-image-set-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", + "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-initial": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.2.tgz", + "integrity": "sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA==", + "requires": { + "lodash.template": "^4.5.0", + "postcss": "^7.0.2" + } + }, + "postcss-lab-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", + "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + } + } + }, + "postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "requires": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + } + } + }, + "postcss-logical": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", + "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-media-minmax": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", + "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "postcss-nesting": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", + "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-normalize": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz", + "integrity": "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==", + "requires": { + "@csstools/normalize.css": "^10.1.0", + "browserslist": "^4.6.2", + "postcss": "^7.0.17", + "postcss-browser-comments": "^3.0.0", + "sanitize.css": "^10.0.0" + } + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-overflow-shorthand": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", + "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-page-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", + "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-place": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", + "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-preset-env": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", + "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", + "requires": { + "autoprefixer": "^9.6.1", + "browserslist": "^4.6.4", + "caniuse-lite": "^1.0.30000981", + "css-blank-pseudo": "^0.1.4", + "css-has-pseudo": "^0.10.0", + "css-prefers-color-scheme": "^3.1.1", + "cssdb": "^4.4.0", + "postcss": "^7.0.17", + "postcss-attribute-case-insensitive": "^4.0.1", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-gray": "^5.0.0", + "postcss-color-hex-alpha": "^5.0.3", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.8", + "postcss-custom-properties": "^8.0.11", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-double-position-gradients": "^1.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + } + }, + "postcss-pseudo-class-any-link": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", + "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-replace-overflow-wrap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", + "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-safe-parser": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-5.0.2.tgz", + "integrity": "sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==", + "requires": { + "postcss": "^8.1.0" + }, + "dependencies": { + "postcss": { + "version": "8.1.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.1.14.tgz", + "integrity": "sha512-KatkyVPBKfENS+c3dpXJoDXnDD5UZs5exAnDksLqaRJPKwYphEPZt4N0m0i049v2/BtWVQibAhxW4ilXXcolpA==", + "requires": { + "colorette": "^1.2.1", + "nanoid": "^3.1.20", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-selector-matches": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", + "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "postcss-selector-not": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.0.tgz", + "integrity": "sha512-W+bkBZRhqJaYN8XAnbbZPLWMvZD1wKTu0UxtFKdhtGjWYmxhkUneoeOhRJKdAE5V7ZTlnbHfCR+6bNwK9e1dTQ==", + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "requires": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz", + "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==", + "requires": { + "is-svg": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + }, + "postcss-values-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", + "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", + "requires": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + }, + "pretty-bytes": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.4.1.tgz", + "integrity": "sha512-s1Iam6Gwz3JI5Hweaz4GoCD1WUNUIyzePFy5+Js2hjwGVt2Z79wNN+ZKOZ2vB6C+Xs6njyB84Z1IthQg8d9LxA==" + }, + "pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "react-is": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz", + "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==" + } + } + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + }, + "promise": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", + "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", + "requires": { + "asap": "~2.0.6" + } + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + }, + "prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "proxy-addr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", + "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "requires": { + "forwarded": "~0.1.2", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" + } + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "requires": { + "performance-now": "^2.1.0" + } + }, + "ramda": { + "version": "0.27.1", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.1.tgz", + "integrity": "sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw==" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + } + } + }, + "react": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", + "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "react-app-polyfill": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz", + "integrity": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==", + "requires": { + "core-js": "^3.6.5", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.7", + "whatwg-fetch": "^3.4.1" + } + }, + "react-datepicker": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/react-datepicker/-/react-datepicker-3.3.0.tgz", + "integrity": "sha512-QnIlBxDSWEGBi2X5P1BqWzvfnPFRKhtrsgAcujUVwyWeID/VatFaAOEjEjfD1bXR9FuSYVLlLR3j/vbG19hWOA==", + "requires": { + "classnames": "^2.2.6", + "date-fns": "^2.0.1", + "prop-types": "^15.7.2", + "react-onclickoutside": "^6.9.0", + "react-popper": "^1.3.4" + } + }, + "react-dev-utils": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.1.tgz", + "integrity": "sha512-rlgpCupaW6qQqvu0hvv2FDv40QG427fjghV56XyPcP5aKtOAPzNAhQ7bHqk1YdS2vpW1W7aSV3JobedxuPlBAA==", + "requires": { + "@babel/code-frame": "7.10.4", + "address": "1.1.2", + "browserslist": "4.14.2", + "chalk": "2.4.2", + "cross-spawn": "7.0.3", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", + "global-modules": "2.0.0", + "globby": "11.0.1", + "gzip-size": "5.1.1", + "immer": "7.0.9", + "is-root": "2.1.0", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.8", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "dependencies": { + "browserslist": { + "version": "4.14.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", + "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", + "requires": { + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.1" + } + }, + "react-error-overlay": { + "version": "6.0.8", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.8.tgz", + "integrity": "sha512-HvPuUQnLp5H7TouGq3kzBeioJmXms1wHy9EGjz2OURWBp4qZO6AfGEcnxts1D/CbwPLRAgTMPCEgYhA3sEM4vw==" + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "react-leaflet": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-3.0.5.tgz", + "integrity": "sha512-0hJwwRMo5ChY+0nr1yO/UDCT4alIqMgJ7S/HoMBkL65Sr1yJ8eX5lAXk3EkdBUOwxQlMYCduU87pczYmudnlbQ==", + "requires": { + "@react-leaflet/core": "^1.0.2" + } + }, + "react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "react-markdown": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-5.0.3.tgz", + "integrity": "sha512-jDWOc1AvWn0WahpjW6NK64mtx6cwjM4iSsLHJPNBqoAgGOVoIdJMqaKX4++plhOtdd4JksdqzlDibgPx6B/M2w==", + "requires": { + "@types/mdast": "^3.0.3", + "@types/unist": "^2.0.3", + "html-to-react": "^1.3.4", + "mdast-add-list-metadata": "1.0.1", + "prop-types": "^15.7.2", + "react-is": "^16.8.6", + "remark-parse": "^9.0.0", + "unified": "^9.0.0", + "unist-util-visit": "^2.0.0", + "xtend": "^4.0.1" + } + }, + "react-onclickoutside": { + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/react-onclickoutside/-/react-onclickoutside-6.9.0.tgz", + "integrity": "sha512-8ltIY3bC7oGhj2nPAvWOGi+xGFybPNhJM0V1H8hY/whNcXgmDeaeoCMPPd8VatrpTsUWjb/vGzrmu6SrXVty3A==" + }, + "react-popper": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-1.3.7.tgz", + "integrity": "sha512-nmqYTx7QVjCm3WUZLeuOomna138R1luC4EqkW3hxJUrAe+3eNz3oFCLYdnPwILfn0mX1Ew2c3wctrjlUMYYUww==", + "requires": { + "@babel/runtime": "^7.1.2", + "create-react-context": "^0.3.0", + "deep-equal": "^1.1.1", + "popper.js": "^1.14.4", + "prop-types": "^15.6.1", + "typed-styles": "^0.0.7", + "warning": "^4.0.2" + } + }, + "react-refresh": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", + "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==" + }, + "react-resize-detector": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/react-resize-detector/-/react-resize-detector-2.3.0.tgz", + "integrity": "sha512-oCAddEWWeFWYH5FAcHdBYcZjAw9fMzRUK9sWSx6WvSSOPVRxcHd5zTIGy/mOus+AhN/u6T4TMiWxvq79PywnJQ==", + "requires": { + "lodash.debounce": "^4.0.8", + "lodash.throttle": "^4.1.1", + "prop-types": "^15.6.0", + "resize-observer-polyfill": "^1.5.0" + } + }, + "react-router": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.0.tgz", + "integrity": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==", + "requires": { + "@babel/runtime": "^7.1.2", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "mini-create-react-context": "^0.4.0", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "requires": { + "isarray": "0.0.1" + } + } + } + }, + "react-router-dom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.2.0.tgz", + "integrity": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==", + "requires": { + "@babel/runtime": "^7.1.2", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.2.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + } + }, + "react-scripts": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-4.0.1.tgz", + "integrity": "sha512-NnniMSC/wjwhcJAyPJCWtxx6CWONqgvGgV9+QXj1bwoW/JI++YF1eEf3Upf/mQ9KmP57IBdjzWs1XvnPq7qMTQ==", + "requires": { + "@babel/core": "7.12.3", + "@pmmmwh/react-refresh-webpack-plugin": "0.4.2", + "@svgr/webpack": "5.4.0", + "@typescript-eslint/eslint-plugin": "^4.5.0", + "@typescript-eslint/parser": "^4.5.0", + "babel-eslint": "^10.1.0", + "babel-jest": "^26.6.0", + "babel-loader": "8.1.0", + "babel-plugin-named-asset-import": "^0.3.7", + "babel-preset-react-app": "^10.0.0", + "bfj": "^7.0.2", + "camelcase": "^6.1.0", + "case-sensitive-paths-webpack-plugin": "2.3.0", + "css-loader": "4.3.0", + "dotenv": "8.2.0", + "dotenv-expand": "5.1.0", + "eslint": "^7.11.0", + "eslint-config-react-app": "^6.0.0", + "eslint-plugin-flowtype": "^5.2.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jest": "^24.1.0", + "eslint-plugin-jsx-a11y": "^6.3.1", + "eslint-plugin-react": "^7.21.5", + "eslint-plugin-react-hooks": "^4.2.0", + "eslint-plugin-testing-library": "^3.9.2", + "eslint-webpack-plugin": "^2.1.0", + "file-loader": "6.1.1", + "fs-extra": "^9.0.1", + "fsevents": "^2.1.3", + "html-webpack-plugin": "4.5.0", + "identity-obj-proxy": "3.0.0", + "jest": "26.6.0", + "jest-circus": "26.6.0", + "jest-resolve": "26.6.0", + "jest-watch-typeahead": "0.6.1", + "mini-css-extract-plugin": "0.11.3", + "optimize-css-assets-webpack-plugin": "5.0.4", + "pnp-webpack-plugin": "1.6.4", + "postcss-flexbugs-fixes": "4.2.1", + "postcss-loader": "3.0.0", + "postcss-normalize": "8.0.1", + "postcss-preset-env": "6.7.0", + "postcss-safe-parser": "5.0.2", + "prompts": "2.4.0", + "react-app-polyfill": "^2.0.0", + "react-dev-utils": "^11.0.1", + "react-refresh": "^0.8.3", + "resolve": "1.18.1", + "resolve-url-loader": "^3.1.2", + "sass-loader": "8.0.2", + "semver": "7.3.2", + "style-loader": "1.3.0", + "terser-webpack-plugin": "4.2.3", + "ts-pnp": "1.2.0", + "url-loader": "4.1.1", + "webpack": "4.44.2", + "webpack-dev-server": "3.11.0", + "webpack-manifest-plugin": "2.2.0", + "workbox-webpack-plugin": "5.1.4" + } + }, + "react-smooth": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-1.0.5.tgz", + "integrity": "sha512-eW057HT0lFgCKh8ilr0y2JaH2YbNcuEdFpxyg7Gf/qDKk9hqGMyXryZJ8iMGJEuKH0+wxS0ccSsBBB3W8yCn8w==", + "requires": { + "lodash": "~4.17.4", + "prop-types": "^15.6.0", + "raf": "^3.4.0", + "react-transition-group": "^2.5.0" + } + }, + "react-spinners": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/react-spinners/-/react-spinners-0.10.4.tgz", + "integrity": "sha512-WRzHTHjx1nvMzsyTXg1J8VVDYadGGeas6pzzxGk0T+dVSZpMIN9NrKV/h76SybdsU8cUp55+u9L1V1C9/oafhw==", + "requires": { + "@emotion/core": "^10.0.35" + } + }, + "react-transition-group": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", + "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", + "requires": { + "dom-helpers": "^3.4.0", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + } + }, + "read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "requires": { + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" + }, + "dependencies": { + "path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "requires": { + "pify": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "read-pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "optional": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "recharts": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-1.8.5.tgz", + "integrity": "sha512-tM9mprJbXVEBxjM7zHsIy6Cc41oO/pVYqyAsOHLxlJrbNBuLs0PHB3iys2M+RqCF0//k8nJtZF6X6swSkWY3tg==", + "requires": { + "classnames": "^2.2.5", + "core-js": "^2.6.10", + "d3-interpolate": "^1.3.0", + "d3-scale": "^2.1.0", + "d3-shape": "^1.2.0", + "lodash": "^4.17.5", + "prop-types": "^15.6.0", + "react-resize-detector": "^2.3.0", + "react-smooth": "^1.0.5", + "recharts-scale": "^0.4.2", + "reduce-css-calc": "^1.3.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + } + } + }, + "recharts-scale": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.3.tgz", + "integrity": "sha512-t8p5sccG9Blm7c1JQK/ak9O8o95WGhNXD7TXg/BW5bYbVlr6eCeRBNpgyigD4p6pSSMehC5nSvBUPj6F68rbFA==", + "requires": { + "decimal.js-light": "^2.4.1" + } + }, + "recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "requires": { + "minimatch": "3.0.4" + } + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "reduce-css-calc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz", + "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=", + "requires": { + "balanced-match": "^0.4.2", + "math-expression-evaluator": "^1.2.14", + "reduce-function-call": "^1.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", + "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=" + } + } + }, + "reduce-function-call": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.3.tgz", + "integrity": "sha512-Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", + "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", + "requires": { + "regenerate": "^1.4.0" + } + }, + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + }, + "regexp.prototype.flags": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz", + "integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.0-next.1" + }, + "dependencies": { + "es-abstract": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", + "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + } + } + }, + "regexpp": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==" + }, + "regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", + "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + }, + "regjsparser": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz", + "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + }, + "remark-parse": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-9.0.0.tgz", + "integrity": "sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==", + "requires": { + "mdast-util-from-markdown": "^0.8.0" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "renderkid": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.4.tgz", + "integrity": "sha512-K2eXrSOJdq+HuKzlcjOlGoOarUu5SDguDEhE7+Ah4zuOWL40j8A/oHvLlLob9PSTNvVnBd+/q0Er1QfpEuem5g==", + "requires": { + "css-select": "^1.1.0", + "dom-converter": "^0.2", + "htmlparser2": "^3.3.0", + "lodash": "^4.17.20", + "strip-ansi": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "css-select": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "requires": { + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" + } + }, + "css-what": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==" + }, + "domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + } + }, + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "requires": { + "lodash": "^4.17.19" + } + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + }, + "resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + }, + "resolve": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz", + "integrity": "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==", + "requires": { + "is-core-module": "^2.0.0", + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + }, + "resolve-pathname": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + }, + "resolve-url-loader": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz", + "integrity": "sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ==", + "requires": { + "adjust-sourcemap-loader": "3.0.0", + "camelcase": "5.3.1", + "compose-function": "3.0.3", + "convert-source-map": "1.7.0", + "es6-iterator": "2.0.3", + "loader-utils": "1.2.3", + "postcss": "7.0.21", + "rework": "1.0.1", + "rework-visit": "1.0.0", + "source-map": "0.6.1" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + } + }, + "postcss": { + "version": "7.0.21", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.21.tgz", + "integrity": "sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rework": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", + "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=", + "requires": { + "convert-source-map": "^0.3.3", + "css": "^2.0.0" + }, + "dependencies": { + "convert-source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", + "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA=" + } + } + }, + "rework-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", + "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=" + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=" + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rollup": { + "version": "1.32.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz", + "integrity": "sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==", + "requires": { + "@types/estree": "*", + "@types/node": "*", + "acorn": "^7.1.0" + } + }, + "rollup-plugin-babel": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz", + "integrity": "sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-terser": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz", + "integrity": "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==", + "requires": { + "@babel/code-frame": "^7.5.5", + "jest-worker": "^24.9.0", + "rollup-pluginutils": "^2.8.2", + "serialize-javascript": "^4.0.0", + "terser": "^4.6.2" + }, + "dependencies": { + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "requires": { + "estree-walker": "^0.6.1" + }, + "dependencies": { + "estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" + } + } + }, + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" + }, + "run-parallel": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz", + "integrity": "sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==" + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "requires": { + "aproba": "^1.1.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "sanitize.css": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz", + "integrity": "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==" + }, + "sass-loader": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.2.tgz", + "integrity": "sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==", + "requires": { + "clone-deep": "^4.0.1", + "loader-utils": "^1.2.3", + "neo-async": "^2.6.1", + "schema-utils": "^2.6.1", + "semver": "^6.3.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "requires": { + "xmlchars": "^2.2.0" + } + }, + "scheduler": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", + "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + }, + "selfsigned": { + "version": "1.10.8", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz", + "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==", + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + } + }, + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "requires": { + "kind-of": "^6.0.2" + } + }, + "shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "optional": true + }, + "side-channel": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.3.tgz", + "integrity": "sha512-A6+ByhlLkksFoUepsGxfj5x1gTSrs+OydsRptUxeNCabQpCFUvcwIczgOigI8vhY/OJCnPnyE9rGiwgvr9cS1g==", + "requires": { + "es-abstract": "^1.18.0-next.0", + "object-inspect": "^1.8.0" + } + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + } + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sockjs": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.20.tgz", + "integrity": "sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA==", + "requires": { + "faye-websocket": "^0.10.0", + "uuid": "^3.4.0", + "websocket-driver": "0.6.5" + }, + "dependencies": { + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + } + }, + "sockjs-client": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", + "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", + "requires": { + "debug": "^3.2.5", + "eventsource": "^1.0.7", + "faye-websocket": "~0.11.1", + "inherits": "^2.0.3", + "json3": "^3.3.2", + "url-parse": "^1.4.3" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "faye-websocket": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "requires": { + "websocket-driver": ">=0.5.1" + } + } + } + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", + "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==" + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "ssri": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.0.tgz", + "integrity": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==", + "requires": { + "minipass": "^3.1.1" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + } + }, + "stackframe": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz", + "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + }, + "string-length": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.1.tgz", + "integrity": "sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==", + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "string.prototype.matchall": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.3.tgz", + "integrity": "sha512-OBxYDA2ifZQ2e13cP82dWFMaCV9CGF8GzmN4fljBVw5O5wep0lu4gacm1OL6MjROoUnB8VbkWRThqkV2YFLNxw==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "has-symbols": "^1.0.1", + "internal-slot": "^1.0.2", + "regexp.prototype.flags": "^1.3.0", + "side-channel": "^1.0.3" + } + }, + "string.prototype.trimend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", + "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", + "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + } + }, + "stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "dependencies": { + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + } + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + }, + "strip-comments": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz", + "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==", + "requires": { + "babel-extract-comments": "^1.0.0", + "babel-plugin-transform-object-rest-spread": "^6.26.0" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "requires": { + "min-indent": "^1.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + }, + "style-loader": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz", + "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + } + }, + "styled-components": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.2.1.tgz", + "integrity": "sha512-sBdgLWrCFTKtmZm/9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/traverse": "^7.4.5", + "@emotion/is-prop-valid": "^0.8.8", + "@emotion/stylis": "^0.8.4", + "@emotion/unitless": "^0.7.4", + "babel-plugin-styled-components": ">= 1", + "css-to-react-native": "^3.0.0", + "hoist-non-react-statics": "^3.0.0", + "shallowequal": "^1.1.0", + "supports-color": "^5.5.0" + } + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz", + "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==", + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "table": { + "version": "5.4.6", + "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", + "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", + "requires": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + }, + "tar": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.5.tgz", + "integrity": "sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==", + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=" + }, + "tempy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz", + "integrity": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==", + "requires": { + "temp-dir": "^1.0.0", + "type-fest": "^0.3.1", + "unique-string": "^1.0.0" + }, + "dependencies": { + "type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" + } + } + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + } + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "terser-webpack-plugin": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz", + "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", + "requires": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.5.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.4", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "requires": { + "find-up": "^4.0.0" + } + }, + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "terser": { + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.5.1.tgz", + "integrity": "sha512-6VGWZNVP2KTUcltUQJ25TtNjx/XgdDsBDKGt8nN0MpydU36LmbPPcMBd2kmtZNNGVVDLg44k7GKeHHj+4zPIBQ==", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.19" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + } + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "requires": { + "setimmediate": "^1.0.4" + } + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + }, + "tiny-invariant": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz", + "integrity": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + }, + "tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "tmpl": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=" + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "tough-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz", + "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==", + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz", + "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==", + "requires": { + "punycode": "^2.1.1" + } + }, + "trough": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", + "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" + }, + "tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" + }, + "tsconfig-paths": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz", + "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==", + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "tsutils": { + "version": "3.17.1", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz", + "integrity": "sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==", + "requires": { + "tslib": "^1.8.1" + } + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typed-styles": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz", + "integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==" + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.2.tgz", + "integrity": "sha512-thGloWsGH3SOxv1SoY7QojKi0tc+8FnOmiarEGMbd/lar7QOEd3hvlx3Fp5y6FlDUGl9L+pd4n2e+oToGMmhRQ==" + }, + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", + "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", + "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==" + }, + "unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", + "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==" + }, + "unified": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz", + "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==", + "requires": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==" + }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" + } + } + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", + "requires": { + "crypto-random-string": "^1.0.0" + } + }, + "unist-util-is": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.4.tgz", + "integrity": "sha512-3dF39j/u423v4BBQrk1AQ2Ve1FxY5W3JKwXxVFzBODQ6WEvccguhgp802qQLKSnxPODE6WuRZtV+ohlUg4meBA==" + }, + "unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "requires": { + "@types/unist": "^2.0.2" + } + }, + "unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "dependencies": { + "unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + } + } + } + }, + "unist-util-visit-parents": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-1.1.2.tgz", + "integrity": "sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==" + }, + "universalify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz", + "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + }, + "uri-js": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", + "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + } + } + }, + "url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "requires": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "url-parse": { + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", + "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "dependencies": { + "es-abstract": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", + "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + } + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "8.3.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz", + "integrity": "sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg==", + "optional": true + }, + "v8-compile-cache": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz", + "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==" + }, + "v8-to-istanbul": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.0.0.tgz", + "integrity": "sha512-fLL2rFuQpMtm9r8hrAV2apXX/WqHJ6+IC4/eQVdMDGBUgH/YMV4Gv3duk3kjmyg6uiQWBAA9nJwue4iJUOkHeA==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "value-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "vfile": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "requires": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==" + } + } + }, + "vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + } + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "requires": { + "xml-name-validator": "^3.0.0" + } + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "requires": { + "makeerror": "1.0.x" + } + }, + "warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + } + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "optional": true, + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "optional": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "optional": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "optional": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "optional": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "optional": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "optional": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "optional": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "optional": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "optional": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "optional": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "optional": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "optional": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "optional": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "optional": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "web-vitals": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-0.2.4.tgz", + "integrity": "sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg==" + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" + }, + "webpack": { + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "requires": { + "yallist": "^3.0.2" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "ssri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz", + "integrity": "sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==", + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "mime": { + "version": "2.4.6", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz", + "integrity": "sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==" + } + } + }, + "webpack-dev-server": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz", + "integrity": "sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==", + "requires": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.7", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "0.3.20", + "sockjs-client": "1.4.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "ws": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", + "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "requires": { + "async-limiter": "~1.0.0" + } + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + } + }, + "webpack-manifest-plugin": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", + "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", + "requires": { + "fs-extra": "^7.0.0", + "lodash": ">=3.5 <5", + "object.entries": "^1.1.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "websocket-driver": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz", + "integrity": "sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY=", + "requires": { + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-fetch": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.5.0.tgz", + "integrity": "sha512-jXkLtsR42xhXg7akoDKvKWE40eJeI+2KZqcp2h3NsOrRnDvtWX36KcKl30dy+hxECivdk2BVUHVNrPtoMBUx6A==" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "whatwg-url": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz", + "integrity": "sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^2.0.2", + "webidl-conversions": "^6.1.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + }, + "workbox-background-sync": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz", + "integrity": "sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-broadcast-update": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz", + "integrity": "sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-build": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-5.1.4.tgz", + "integrity": "sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==", + "requires": { + "@babel/core": "^7.8.4", + "@babel/preset-env": "^7.8.4", + "@babel/runtime": "^7.8.4", + "@hapi/joi": "^15.1.0", + "@rollup/plugin-node-resolve": "^7.1.1", + "@rollup/plugin-replace": "^2.3.1", + "@surma/rollup-plugin-off-main-thread": "^1.1.1", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^8.1.0", + "glob": "^7.1.6", + "lodash.template": "^4.5.0", + "pretty-bytes": "^5.3.0", + "rollup": "^1.31.1", + "rollup-plugin-babel": "^4.3.3", + "rollup-plugin-terser": "^5.3.1", + "source-map": "^0.7.3", + "source-map-url": "^0.4.0", + "stringify-object": "^3.3.0", + "strip-comments": "^1.0.2", + "tempy": "^0.3.0", + "upath": "^1.2.0", + "workbox-background-sync": "^5.1.4", + "workbox-broadcast-update": "^5.1.4", + "workbox-cacheable-response": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-expiration": "^5.1.4", + "workbox-google-analytics": "^5.1.4", + "workbox-navigation-preload": "^5.1.4", + "workbox-precaching": "^5.1.4", + "workbox-range-requests": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4", + "workbox-streams": "^5.1.4", + "workbox-sw": "^5.1.4", + "workbox-window": "^5.1.4" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + } + }, + "workbox-cacheable-response": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz", + "integrity": "sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-core": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-5.1.4.tgz", + "integrity": "sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==" + }, + "workbox-expiration": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-5.1.4.tgz", + "integrity": "sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-google-analytics": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz", + "integrity": "sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==", + "requires": { + "workbox-background-sync": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4" + } + }, + "workbox-navigation-preload": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz", + "integrity": "sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-precaching": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-5.1.4.tgz", + "integrity": "sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-range-requests": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz", + "integrity": "sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-routing": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-5.1.4.tgz", + "integrity": "sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-strategies": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-5.1.4.tgz", + "integrity": "sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==", + "requires": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "workbox-streams": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-5.1.4.tgz", + "integrity": "sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==", + "requires": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "workbox-sw": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-5.1.4.tgz", + "integrity": "sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==" + }, + "workbox-webpack-plugin": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz", + "integrity": "sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==", + "requires": { + "@babel/runtime": "^7.5.5", + "fast-json-stable-stringify": "^2.0.0", + "source-map-url": "^0.4.0", + "upath": "^1.1.2", + "webpack-sources": "^1.3.0", + "workbox-build": "^5.1.4" + } + }, + "workbox-window": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-5.1.4.tgz", + "integrity": "sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "requires": { + "errno": "~0.1.7" + } + }, + "worker-rpc": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", + "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", + "requires": { + "microevent.ts": "~0.1.1" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.1.tgz", + "integrity": "sha512-pTsP8UAfhy3sk1lSk/O/s4tjD0CRwvMnzvwr4OKGX7ZvqZtUyx4KIJB5JWbkykPoc55tixMGgTNoh3k4FkNGFQ==" + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yaml": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz", + "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==" + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + } + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + } +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/package.json b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/package.json new file mode 100644 index 0000000000000000000000000000000000000000..e712e160f7f60a8bd782dc8e3b8501d6f2d6e3bd --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/package.json @@ -0,0 +1,59 @@ +{ + "name": "bike-sharing-dashboard", + "version": "0.1.0", + "private": true, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "dependencies": { + "@testing-library/jest-dom": "^5.11.6", + "@testing-library/react": "^11.2.2", + "@testing-library/user-event": "^12.5.0", + "@types/chroma-js": "^2.1.3", + "@types/jest": "^26.0.16", + "@types/leaflet": "^1.5.19", + "@types/node": "^12.19.8", + "@types/react": "^16.14.2", + "@types/react-datepicker": "^3.1.2", + "@types/react-dom": "^16.9.10", + "@types/react-router-dom": "^5.1.6", + "@types/recharts": "^1.8.18", + "@types/styled-components": "^5.1.4", + "chroma-js": "^2.1.0", + "leaflet": "^1.7.1", + "react": "^17.0.1", + "react-datepicker": "^3.3.0", + "react-dom": "^17.0.1", + "react-leaflet": "^3.0.5", + "react-markdown": "^5.0.3", + "react-router": "^5.2.0", + "react-router-dom": "^5.2.0", + "react-scripts": "4.0.1", + "react-spinners": "^0.10.4", + "recharts": "^1.8.5", + "styled-components": "^5.2.1", + "typescript": "^4.1.2", + "web-vitals": "^0.2.4" + }, + "eslintConfig": { + "extends": [ + "react-app", + "react-app/jest" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/favicon.ico b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..a11777cc471a4344702741ab1c8a588998b1311a Binary files /dev/null and b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/favicon.ico differ diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/index.html b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/index.html new file mode 100644 index 0000000000000000000000000000000000000000..a5b9ad6e556a1746804b7d9089dc9309e17a4e85 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/index.html @@ -0,0 +1,48 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8" /> + <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta name="theme-color" content="#000000" /> + <meta + name="description" + content="Visualisations for bike sharing in London" + /> + <link + rel="stylesheet" + href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" + integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" + crossorigin="" + /> + <!-- + manifest.json provides metadata used when your web app is installed on a + user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ + --> + <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> + <!-- + Notice the use of %PUBLIC_URL% in the tags above. + It will be replaced with the URL of the `public` folder during the build. + Only files inside the `public` folder can be referenced from the HTML. + + Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will + work correctly both with client-side routing and a non-root public URL. + Learn how to configure a non-root public URL by running `npm run build`. + --> + <title>Bike sharing</title> + </head> + <body> + <noscript>You need to enable JavaScript to run this app.</noscript> + <div id="root"></div> + <!-- + This HTML file is a template. + If you open it directly in the browser, you will see an empty page. + + You can add webfonts, meta tags, or analytics to this file. + The build step will place the bundled scripts into the <body> tag. + + To begin the development, run `npm start` or `yarn start`. + To create a production bundle, use `npm run build` or `yarn build`. + --> + </body> +</html> diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/manifest.json b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1f2f141fafdeb1d31d85b008ec5132840c5e6362 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/manifest.json @@ -0,0 +1,15 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/robots.txt b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/robots.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9e57dc4d41b9b46e05112e9f45b7ea6ac0ba15e --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/App.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/App.tsx new file mode 100644 index 0000000000000000000000000000000000000000..4725af91d77bf58026511ba19688bc5ef36c0120 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/App.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import styled, { ThemeProvider } from 'styled-components' +import { GlobalStyle } from './style/Global' +import { BrowserRouter as Router, Route, Switch } from 'react-router-dom' +import { darkTheme } from './style/theme' +import { ErrorPage } from './pages/errorPage/ErrorPage' +import { Home } from './pages/home/Home' +import { BikeSharingMap } from "./pages/map/BikeSharingMap" +import { BikePointDetails } from './pages/bikePointDetails/BikePointDetails' + +const App = () => { + + return ( + <ThemeProvider theme={darkTheme}> + <GlobalStyle/> + <Router> + <SiteWrapper> + <Switch> + <Route path='/' exact component={Home}/> + <Route path='/map' exact component={BikeSharingMap}/> + <Route path='/bike-point-details/:bikePointId' exact component={BikePointDetails}/> + <Route component={ErrorPage}/> + </Switch> + </SiteWrapper> + </Router> + </ThemeProvider> + ) +} + +const SiteWrapper = styled.div` + display: flex; + flex-flow: column nowrap; + justify-content: flex-start; +` + +export default App diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/button/Button.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/button/Button.tsx new file mode 100644 index 0000000000000000000000000000000000000000..2d309b0954ed4d57ae7926a6bb09a3434e6549ea --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/button/Button.tsx @@ -0,0 +1,29 @@ +import styled from 'styled-components' +import { fonts } from 'style/fonts' +import { distance, maxScreenWidthMobile } from 'style/sizes' + +const Button = styled.button.attrs({type: 'button'})` + font-family: ${fonts.default}; + display: block; + appearance: none; + background: ${({theme}) => theme.colors.secondary}; + color: ${({theme}) => theme.colors.backgroundSecondary}; + border: none; + margin-bottom: ${distance.large}; + text-transform: uppercase; + padding: ${distance.small}; + border-radius: 4px; + -webkit-appearance: none; + opacity: ${({disabled}) => disabled ? 0.3 : 1}; + @media screen and (min-width: ${maxScreenWidthMobile}px) { + &:hover { + background: ${({theme}) => theme.colors.primary}; + transform: scale(1.05); + } + } + &:active { + opacity: 0.7; + } +` + +export default Button \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/chartInfoBox/ChartInfoBox.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/chartInfoBox/ChartInfoBox.tsx new file mode 100644 index 0000000000000000000000000000000000000000..fd95029cfbf89481c2f17333666503bdd75c4ac4 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/chartInfoBox/ChartInfoBox.tsx @@ -0,0 +1,37 @@ +import React, { FunctionComponent } from 'react' +import styled from 'styled-components' +import { InputWithLabel } from '../inputWithLabel/InputWithLabel' +import { distance } from '../../style/sizes' + +interface ChartInfoBoxProps { + description: string + bold?: boolean +} + +export const ChartInfoBox: FunctionComponent<ChartInfoBoxProps> = props => { + + return <StyledChartInfoBox> + <StyledRow> + <InputWithLabel bold={props.bold} label={'Description:'}> + {props.description} + </InputWithLabel> + </StyledRow> + <StyledRow> + <InputWithLabel bold={props.bold} label={'Options:'}> + {props.children} + </InputWithLabel> + </StyledRow> + </StyledChartInfoBox> +} + +const StyledChartInfoBox = styled.div` + display: flex; + flex-direction: column; + background: ${({ theme }) => theme.colors.backgroundSecondary}; +` + +const StyledRow = styled.div` + padding: ${distance.large}; + display: flex; + flex-direction: row; +` \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/input/Input.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/input/Input.tsx new file mode 100644 index 0000000000000000000000000000000000000000..9ed44c8bbc95a56c153a0d54053a33912da2112d --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/input/Input.tsx @@ -0,0 +1,30 @@ +import styled from 'styled-components' +import { fonts } from 'style/fonts' +import { distance, fontSizes } from 'style/sizes' + +const Input = styled.input.attrs({type: 'text'})` + font-family: ${fonts.default}; + background-color: ${({theme}) => theme.colors.backgroundInput}; + color: ${({theme}) => theme.colors.primary}; + display: block; + width: 100%; + border-radius: 3px; + border: 0px solid ${({theme}) => theme.colors.secondary}; + padding: ${distance.small}; + margin-bottom: ${distance.medium}; + font-size: ${fontSizes.text}; + &:disabled { + opacity: 0.4; + } + /* to prevent white background when using autocomplete */ + &:-webkit-autofill, + &:-webkit-autofill:hover, + &:-webkit-autofill:focus, + &:-webkit-autofill:active { + -webkit-text-fill-color: ${({theme}) => theme.colors.primary}; + caret-color: ${({theme}) => theme.colors.primary}; + transition: background-color 500000s ease-in-out 0s; + } +` + +export default Input \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/inputWithLabel/InputWithLabel.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/inputWithLabel/InputWithLabel.tsx new file mode 100644 index 0000000000000000000000000000000000000000..fd6196cd6e9636d25c383f40ae031c2f3bcb4851 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/inputWithLabel/InputWithLabel.tsx @@ -0,0 +1,21 @@ +import React, { FunctionComponent } from "react" +import Label from "../label/Label" +import styled from "styled-components" +import { distance } from "../../style/sizes" + +interface InputWithLabelProps { + label: string + bold?: boolean +} + +export const InputWithLabel: FunctionComponent<InputWithLabelProps> = props => + <StyledInputWithLabel> + {props.bold ? <Label><b>{props.label}</b></Label> : <Label>{props.label}</Label>} + {props.children} + </StyledInputWithLabel> + +const StyledInputWithLabel = styled.div` + display: flex; + flex-direction: column; + margin-right: ${distance.medium}; +` \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/label/Label.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/label/Label.tsx new file mode 100644 index 0000000000000000000000000000000000000000..14ea6bd8011a4c99a8b5a8ffb99ffa246b45c904 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/label/Label.tsx @@ -0,0 +1,9 @@ +import styled from 'styled-components' +import { distance } from 'style/sizes' + +const Label = styled.label` + display: block; + margin-bottom: ${distance.small}; +` + +export default Label \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/select/Select.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/select/Select.tsx new file mode 100644 index 0000000000000000000000000000000000000000..66bfacbb4cffa163e8d6d6202daa18b510724ff5 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/components/select/Select.tsx @@ -0,0 +1,30 @@ +import styled from 'styled-components' +import { fonts } from 'style/fonts' +import { distance, fontSizes } from 'style/sizes' + +const Select = styled.select.attrs({type: 'text'})` + font-family: ${fonts.default}; + background-color: ${({theme}) => theme.colors.backgroundInput}; + color: ${({theme}) => theme.colors.primary}; + display: block; + width: 100%; + border-radius: 3px; + border: 0px solid ${({theme}) => theme.colors.secondary}; + padding: ${distance.small}; + margin-bottom: ${distance.medium}; + font-size: ${fontSizes.text}; + &:disabled { + opacity: 0.4; + } + /* to prevent white background when using autocomplete */ + &:-webkit-autofill, + &:-webkit-autofill:hover, + &:-webkit-autofill:focus, + &:-webkit-autofill:active { + -webkit-text-fill-color: ${({theme}) => theme.colors.primary}; + caret-color: ${({theme}) => theme.colors.primary}; + transition: background-color 500000s ease-in-out 0s; + } +` + +export default Select \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/customTypings/global.d.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/customTypings/global.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..6186fe53478f43a05b3c833bbf2615b8102b529c --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/customTypings/global.d.ts @@ -0,0 +1,2 @@ +declare module '*.jpg' +declare module '*.png' \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/customTypings/styled.d.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/customTypings/styled.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..395d1d81b494512a7c9d5f0daed34a85e2ade2bb --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/customTypings/styled.d.ts @@ -0,0 +1,16 @@ +// import original module declarations +import 'styled-components' + +// extend the module declarations using custom theme type (declaration merging) +declare module 'styled-components' { + export interface DefaultTheme { + colors: { + primary: string + secondary: string + backgroundPrimary: string + backgroundSecondary: string + backgroundInput: string + barChart: string + } + } +} \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/index.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/index.tsx new file mode 100644 index 0000000000000000000000000000000000000000..ac2841c5cbed4ba549ad77cbdb941557f98f1c77 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/index.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import ReactDOM from 'react-dom' +import App from './App' +import reportWebVitals from './reportWebVitals' + +ReactDOM.render( + <React.StrictMode> + <App/> + </React.StrictMode>, + document.getElementById('root') +) + +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals() diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/bikePointDetails/BikePointDetails.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/bikePointDetails/BikePointDetails.tsx new file mode 100644 index 0000000000000000000000000000000000000000..bf7369a9b26d2019127dad806a40a350dfe8dfbe --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/bikePointDetails/BikePointDetails.tsx @@ -0,0 +1,185 @@ +import React, { ChangeEvent, useContext, useState } from 'react' +import DatePicker from 'react-datepicker' +import { PageMarginLeftRight } from '../../style/PageMarginLeftRight' +import styled, { ThemeContext } from 'styled-components' +import { distance } from '../../style/sizes' +import 'react-datepicker/dist/react-datepicker.css' +import { InputWithLabel } from 'components/inputWithLabel/InputWithLabel' +import Select from 'components/select/Select' +import { ChartInfoBox } from 'components/chartInfoBox/ChartInfoBox' +import Button from 'components/button/Button' +import Input from 'components/input/Input' +import { useHistory, useParams } from 'react-router' +import { useEffect } from 'react' +import { Bar, BarChart, CartesianGrid, Label, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from 'recharts' +import { chartColors } from 'style/chartColors' +import { ClipLoader } from 'react-spinners' + +interface IBikePointDetails { + id: string, + commonName: string, + diagrammData: IBikePointActivityMap, + installDate: number, + nbDocks: number + +} +type IBikePointActivityMap = {[hourOfDay: number]: IBikePointActivityAtHourOfDay} + +interface IBikePointActivityAtHourOfDay { + avgNbRentals: number, + avgNbReturns: number, + avgNbTotal: number + +} + +/** + * This page contains details about a specific bike point. + */ +export const BikePointDetails = () => { + const history = useHistory() + + const { bikePointId } = useParams<{bikePointId: string}>() + + const [startTimeStamp, setStartTimestamp] = useState(Date.UTC(2015, 0, 4)) + const [endTimeStamp, setEndTimeStamp] = useState(Date.UTC(2015, 0, 19)) + const [dayOfWeek, setDayOfWeek] = useState(0) + const [averageActivity, setAverageActivity] = useState('avgNbRentals') + const [maxValueYAxis, setValueYAxis] = useState(0) + // to be adjusted + const [bikePointDetails, setBikePointDetails] = useState<IBikePointDetails | undefined>(undefined) + + const [loadingState, setLoadingState] = useState(false) + + useEffect(() => {fetchData()}, []) + + const fetchData = async () => { + setLoadingState(true) + const response = await fetch(`http://localhost:8081/api/bike-point-details/${bikePointId}?&from=${startTimeStamp / 1000}&to=${endTimeStamp / 1000}&day=${dayOfWeek}`) + const jsonResponse = await response.json() + //to be adjusted + setBikePointDetails(jsonResponse.bikePointDetails) + setLoadingState(false) + } + + return ( + <PageMarginLeftRight> + <StyledRow> + <StyledButton onClick={() => history.push('/')}>Back home</StyledButton> + <StyledButton onClick={() => history.push('/map')}>Back to map</StyledButton> + </StyledRow> + <StyledRow> + <h2>{bikePointDetails?.commonName ?? '...'}</h2> + </StyledRow> + + <StyledTextRow><StyledMinWidth>ID:</StyledMinWidth>{bikePointDetails?.id ?? '...'}</StyledTextRow> + <StyledTextRow><StyledMinWidth>Install Date:</StyledMinWidth>{(bikePointDetails && new Date(bikePointDetails.installDate*1000).toDateString()) ?? '...'}</StyledTextRow> + <StyledTextRow><StyledMinWidth>Number of Docks:</StyledMinWidth>{bikePointDetails?.nbDocks ?? '...'}</StyledTextRow> + + <StyledRow> + <div> + <ChartInfoBox bold={true} description={'This bar chart shows the average count of chosen activity sorted by hour of day (0-23) for the chosen day of week in the selected time range.'}> + <StyledRow> + <InputWithLabel label={'Day of week'}> + <Select onChange={(event: ChangeEvent<HTMLSelectElement>) => setDayOfWeek(Number(event.target.value))}> + <option value='0'>Sunday</option> + <option value='1'>Monday</option> + <option value='2'>Tuesday</option> + <option value='3'>Wednesday</option> + <option value='4'>Thursday</option> + <option value='5'>Friday</option> + <option value='6'>Saturday</option> + </Select> + </InputWithLabel> + <InputWithLabel label={'Average Activity'}> + <Select onChange={(event: ChangeEvent<HTMLSelectElement>) => setAverageActivity(event.target.value)}> + <option value='avgNbRentals'>Rentals</option> + <option value='avgNbReturns'>Returns</option> + <option value='avgNbTotal'>Total</option> + </Select> + </InputWithLabel> + </StyledRow> + <StyledRow> + <InputWithLabel label={'From'}> + <DatePicker + selected={new Date(startTimeStamp)} + onChange={(date: Date) => setStartTimestamp(date.getTime())} + dateFormat='yyyy/MM/dd' + timeIntervals={5} + customInput={<Input />} + /> + </InputWithLabel> + <InputWithLabel label={'To'}> + <DatePicker + selected={new Date(endTimeStamp)} + onChange={(date: Date) => setEndTimeStamp(date.getTime())} + dateFormat='yyyy/MM/dd' + timeIntervals={5} + customInput={<Input />} + /> + </InputWithLabel> + </StyledRow> + <StyledRow> + <Button onClick={fetchData}>Apply Options</Button> {loadingState && <ClipLoader color={'white'} loading={loadingState}/>} + </StyledRow> + </ChartInfoBox> + </div> + <ResponsiveContainer width='100%' height={600}> + <BarChart + data={Object.entries(bikePointDetails?.diagrammData ?? {}).map(entry => { + let value + + switch(averageActivity){ + case 'avgNbRentals': + value = entry[1].avgNbRentals + if (value > maxValueYAxis) {setValueYAxis(value)} + break + case 'avgNbReturns': + value = entry[1].avgNbReturns + if (value > maxValueYAxis) {setValueYAxis(value)} + break + case 'avgNbTotal': + value = entry[1].avgNbTotal + if (value > maxValueYAxis) {setValueYAxis(value)} + break + + } + return { hourOfDay: entry[0], value: value?.toFixed(2) } + })} + margin={{top: 5, right: 0, left: 0, bottom: 20,}} + barCategoryGap={15} + > + <CartesianGrid strokeDasharray='3 3'/> + <XAxis dataKey='hourOfDay' textAnchor='start' height={50}> + <Label value='Hour of Day' offset={5} position='bottom' style={{fill: 'rgba(255, 255, 255, 1)'}}/> + </XAxis> + <YAxis allowDecimals={false} type='number' domain={[0, Math.round(maxValueYAxis+1)]}/> + + <Tooltip contentStyle={{ backgroundColor: useContext(ThemeContext).colors.backgroundPrimary }}/> + <Legend layout='vertical' verticalAlign='top' align='center'/> + <Bar dataKey='value' fill={chartColors.cyan['50']} legendType='rect' name='Average Count' barSize={20} /> + </BarChart> + </ResponsiveContainer> + </StyledRow> + <StyledRow> + + </StyledRow> + </PageMarginLeftRight> + ) +} + +const StyledRow = styled.div` + padding: ${distance.large}; + display: flex; + flex-direction: row; +` +const StyledMinWidth = styled.div` + min-width: 10rem; +` +const StyledTextRow = styled.div` + padding-left: ${distance.large}; + display: flex; + flex-direction: row; +` +const StyledButton = styled(Button)` + margin-right: ${distance.large}; +` diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/errorPage/ErrorPage.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/errorPage/ErrorPage.tsx new file mode 100644 index 0000000000000000000000000000000000000000..eeaf848f1116d533d842a8970d840b8487091166 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/errorPage/ErrorPage.tsx @@ -0,0 +1,26 @@ +import React, { FC, FunctionComponent } from 'react' +import styled from 'styled-components' +import { PageMarginLeftRight } from '../../style/PageMarginLeftRight' +import { distance } from '../../style/sizes' +import { Link } from 'react-router-dom' + +export const ErrorPage: FunctionComponent = () => { + return <ErrorPageTemplate message={'Sorry, the requested page was not found or could not be accessed :|'}/> +} + +const ErrorPageTemplate: FC<{ message: string }> = ({message}) => { + return ( + <PageMarginLeftRight> + <StyledRow> + <h2>{message}</h2> + </StyledRow> + <StyledRow> + <Link to="/">Return to Landing Page</Link> + </StyledRow> + </PageMarginLeftRight> + ) +} + +const StyledRow = styled.div` + padding: ${distance.large}; +` \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/home/Home.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/home/Home.tsx new file mode 100644 index 0000000000000000000000000000000000000000..dcb014f0809d0ac46184077f467823051a7918ec --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/home/Home.tsx @@ -0,0 +1,134 @@ +import React, { ChangeEvent, useContext, useEffect, useState } from 'react' +import { useHistory } from 'react-router-dom' +import DatePicker from 'react-datepicker' +import { PageMarginLeftRight } from '../../style/PageMarginLeftRight' +import styled, { ThemeContext } from 'styled-components' +import { distance } from '../../style/sizes' +import { Bar, BarChart, CartesianGrid, Label, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from 'recharts' +import { chartColors } from '../../style/chartColors' +import 'react-datepicker/dist/react-datepicker.css' +import Input from '../../components/input/Input' +import { InputWithLabel } from '../../components/inputWithLabel/InputWithLabel' +import { ChartInfoBox } from '../../components/chartInfoBox/ChartInfoBox' +import Button from '../../components/button/Button' +import Select from 'components/select/Select' +import { ClipLoader } from 'react-spinners' +import logo from './../../pictures/SantanderCyclesLogo.png'; + +interface IBikeTripDurationCount { + classLabel: string, + count: number +} + +/** + * Landing page of our dashboard. + * Contains non-map visualizations. + * Also contains link to access bike sharing map of London. + */ +export const Home = () => { + const history = useHistory() + + const [startTimeStamp, setStartTimestamp] = useState(Date.UTC(2015, 0, 4, 0, 5)) + const [endTimeStamp, setEndTimeStamp] = useState(Date.UTC(2015, 0, 19, 0, 10)) + const [classSize, setClassSize] = useState(300) + + const [tripDurationData, setTripDurationData] = useState<IBikeTripDurationCount[] | undefined>(undefined) + + const [loadingState, setLoadingState] = useState(false) + + // fetch data from our server once at beginning, later only on button click + useEffect(() => {fetchData()}, []) + + const fetchData = async () => { + setLoadingState(true) + const response = await fetch(`http://localhost:8081/api/bike-trip-durations?classSize=${classSize}&from=${startTimeStamp / 1000}&to=${endTimeStamp / 1000}`) + const jsonResponse = await response.json() + setTripDurationData(jsonResponse.bikeTripDurationCounts) + setLoadingState(false) + } + + return ( + <PageMarginLeftRight> + <StyledTopRow> + <div><Button onClick={() => history.push('/map')}>To map</Button></div> + <img src={logo} alt='Logo' height='75' /> + </StyledTopRow> + <StyledRow> + <h2>Bike-sharing in London</h2> + </StyledRow> + <StyledRow> + <div> + <ChartInfoBox bold={true} description={'This bar chart shows the count of trips with similar durations within the selected timerange. The bars represent the number of trips.'}> + <StyledRow> + <InputWithLabel label={'Class Size'}> + <Select defaultValue='300' onChange={(event: ChangeEvent<HTMLSelectElement>) => setClassSize(Number(event.target.value))}> + <option value='60'>1 minute</option> + <option value='300'>5 minutes</option> + <option value='600'>10 minutes</option> + <option value='1200'>20 minutes</option> + <option value='1800'>30 minutes</option> + </Select> + </InputWithLabel> + </StyledRow> + <StyledRow> + <InputWithLabel label={'From'}> + <DatePicker + selected={new Date(startTimeStamp)} + onChange={(date: Date) => setStartTimestamp(date.getTime())} + dateFormat='yyyy/MM/dd, HH:mm' + showTimeSelect + timeFormat='HH:mm' + timeIntervals={5} + customInput={<Input />} + /> + </InputWithLabel> + <InputWithLabel label={'To'}> + <DatePicker + selected={new Date(endTimeStamp)} + onChange={(date: Date) => setEndTimeStamp(date.getTime())} + dateFormat='yyyy/MM/dd, HH:mm' + showTimeSelect + timeFormat='HH:mm' + timeIntervals={5} + customInput={<Input />} + /> + </InputWithLabel> + </StyledRow> + <StyledRow> + <Button onClick={fetchData}>Apply Options</Button> {loadingState && <ClipLoader color={'white'} loading={loadingState}/>} + </StyledRow> + </ChartInfoBox> + </div> + <ResponsiveContainer width='100%' height={600}> + <BarChart + data={tripDurationData} + margin={{top: 5, right: 0, left: 30, bottom: 50,}} + barCategoryGap={15} + > + <CartesianGrid strokeDasharray='3 3'/> + <XAxis dataKey='classLabel' angle={45} textAnchor='start' height={50}> + <Label value='duration of trip in minutes' offset={10} position='bottom' style={{fill: 'rgba(255, 255, 255, 1)'}} /> + </XAxis> + <YAxis allowDecimals={false} /> + <Tooltip contentStyle={{ backgroundColor: useContext(ThemeContext).colors.backgroundPrimary }}/> + <Legend layout='vertical' verticalAlign='top' align='center'/> + <Bar dataKey='count' fill={chartColors.cyan['50']} legendType='rect' name='count of trips' /> + </BarChart> + </ResponsiveContainer> + </StyledRow> + + </PageMarginLeftRight> + ) +} + +const StyledRow = styled.div` + padding: ${distance.large}; + display: flex; + flex-direction: row; +` +const StyledTopRow = styled.div` + display: flex; + flex-direction: row; + justify-content: space-between; + padding: ${distance.large}; +` \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/map/BikeSharingMap.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/map/BikeSharingMap.tsx new file mode 100644 index 0000000000000000000000000000000000000000..b4471371b8ff82d36bd936687b387ff1284e976e --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pages/map/BikeSharingMap.tsx @@ -0,0 +1,267 @@ +import React, { ChangeEvent, useEffect, useState } from 'react' +import { CircleMarker, LayerGroup, LayersControl, MapContainer, Popup, TileLayer, ZoomControl } from 'react-leaflet' +import { useHistory } from 'react-router-dom' +import chroma from 'chroma-js' +import { InputWithLabel } from '../../components/inputWithLabel/InputWithLabel' +import DatePicker from 'react-datepicker' +import Input from '../../components/input/Input' +import styled from 'styled-components' +import { distance } from '../../style/sizes' +import Select from '../../components/select/Select' +import Button from '../../components/button/Button' +import { ClipLoader } from 'react-spinners' +import { BikePointProperty } from '../../../../backend/src/entities/BikePoint' + +interface IBikePoint { + id: string + commonName: string + lat: number + lon: number + additionalProperties: BikePointProperty[] +} + +interface IBikePointActivity { + rentals: number + returns: number + rentalsReturnsImbalance: number +} + +interface IBikePointsActivity { + [bikePointId: string]: IBikePointActivity +} + +interface INumberRange { + min: number + max: number +} + +interface IBikePointsActivityResponse { + bikePointsActivity: IBikePointsActivity + rentalsRange: INumberRange + returnsRange: INumberRange + rentalsReturnsImbalanceRange: INumberRange +} + +interface IColorRange { + min: string + max: string +} + +type ActivityType = 'rentals' | 'returns' | 'rentalsReturnsImbalance' + +/** + * This page contains a map of London. The user can select from different interactive visualizations. + */ +export const BikeSharingMap = () => { + const history = useHistory() + + const [startTimeStamp, setStartTimestamp] = useState(Date.UTC(2015, 0, 4, 0, 0)) + const [endTimeStamp, setEndTimeStamp] = useState(Date.UTC(2015, 0, 19, 0, 0)) + const [activityType, setActivityType] = useState<ActivityType>('rentals') + const [colorRange, setColorRange] = useState<IColorRange>({min: '#fcf2ae', max: '#a90e00'}) + + const [bikePoints, setBikePoints] = useState<IBikePoint[] | undefined>(undefined) + const [data, setData] = useState<IBikePointsActivityResponse | undefined>(undefined) + + const [loadingState, setLoadingState] = useState(false) + + // first, fetch bike-points with their coordinates to show on map fast + useEffect(() => { + (async () => { + const response = await fetch(`http://localhost:8081/api/bike-points/all`) + const jsonResponse = await response.json() + setBikePoints(jsonResponse.bikePoints) + })() + }, []) + + const fetchData = async () => { + setLoadingState(true) + const response = await fetch(`http://localhost:8081/api/bike-points-activity?from=${startTimeStamp / 1000}&to=${endTimeStamp / 1000}`) + const jsonResponse = await response.json() + setData(jsonResponse) + setLoadingState(false) + } + + // fetch data for bike stations from our server once at beginning, later only on button click + useEffect(() => {fetchData()}, []) + + return ( + <> + <StyledControl> + <div> + <StyledRow> + <Button onClick={() => history.push("/")}>Back home</Button> + </StyledRow> + <StyledRow> + <h2>Map view</h2> + </StyledRow> + <StyledRow> + Visualize the number of rented or returned bikes at bike points in the chosen timeframe. Or the imbalance between the two. + <br/><br/> + An intense color indicates a high number, relative to the other ones. The color range always adjusts to the current max and min value. + <br/><br/> + Black dots represent bike points, for which no data is available in the selected timeframe. + <br/><br/> + </StyledRow> + <StyledRow> + <Select onChange={(event: ChangeEvent<HTMLSelectElement>) => setActivityType(event.target.value as ActivityType)}> + <option value='rentals'>Number of rentals</option> + <option value='returns'>Number of returns</option> + <option value='rentalsReturnsImbalance'>Returns/Rentals imbalance</option> + </Select> + </StyledRow> + <StyledRow> + <InputWithLabel label={'From'}> + <DatePicker + selected={new Date(startTimeStamp)} + onChange={(date: Date) => setStartTimestamp(date.getTime())} + dateFormat='yyyy/MM/dd, HH:mm' + showTimeSelect + timeFormat='HH:mm' + timeIntervals={5} + customInput={<Input/>} + /> + </InputWithLabel> + <InputWithLabel label={'To'}> + <DatePicker + selected={new Date(endTimeStamp)} + onChange={(date: Date) => setEndTimeStamp(date.getTime())} + dateFormat='yyyy/MM/dd, HH:mm' + showTimeSelect + timeFormat='HH:mm' + timeIntervals={5} + customInput={<Input/>} + /> + </InputWithLabel> + </StyledRow> + <StyledRow> + <Button onClick={fetchData}>Apply Options</Button> {loadingState && <ClipLoader color={'white'} loading={loadingState}/>} + </StyledRow> + </div> + <div> + <StyledRow> + <StyledLegendText> + <div>{data ? getValuesRange(activityType, data).min : '-'}</div> + <div>{data ? getValuesRange(activityType, data).max : '-'}</div> + </StyledLegendText> + </StyledRow> + <StyledRow> + <StyledGradient {...colorRange}/> + </StyledRow> + </div> + </StyledControl> + <MapContainer center={[51.5, -0.17]} zoom={12} zoomControl={false} style={{zIndex: 1}}> + <LayersControl position='bottomright'> + <LayersControl.Overlay checked name='Bike points'> + <LayerGroup> + { + bikePoints?.map(bikePoint => { + const activities = data?.bikePointsActivity[bikePoint.id] + const numberToVisualize = activities && activities[activityType] + const color = numberToVisualize && data ? getColor(numberToVisualize, activityType, data, colorRange) : 'black' + + return ( + <CircleMarker center={[bikePoint.lat, bikePoint.lon]} pathOptions={{color: color, fillColor: color, fillOpacity: 1}} radius={6}> + <Popup> + <h3><Black>{bikePoint.commonName}</Black></h3> + + <br/><b>Number of docks:</b> {Number(bikePoint.additionalProperties.find(additionalProperty => additionalProperty.key==='NbDocks')?.value ?? 'unknown')} + <br/> + <br/><b>Rentals:</b> {activities?.rentals ?? '-'} + <br/><b>Returns:</b> {activities?.returns ?? '-'} + <br/><b>Returns/Rentals imbalance:</b> {activities?.rentalsReturnsImbalance ?? '-'} + <br/><br/> + <Button onClick={() => history.push(`/bike-point-details/${bikePoint.id}`)}>To bike point details</Button> + </Popup> + </CircleMarker> + ) + }) + } + </LayerGroup> + </LayersControl.Overlay> + <LayersControl.BaseLayer checked name='Stadia.AlidadeSmoothDark'> + <TileLayer + url='https://tiles.stadiamaps.com/tiles/alidade_smooth_dark/{z}/{x}/{y}{r}.png' + attribution='© <a href="https://stadiamaps.com/">Stadia Maps</a>, © <a href="https://openmaptiles.org/">OpenMapTiles</a> © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors' + /> + </LayersControl.BaseLayer> + <LayersControl.BaseLayer name='Stadia.AlidadeSmooth'> + <TileLayer + url='https://tiles.stadiamaps.com/tiles/alidade_smooth/{z}/{x}/{y}{r}.png' + attribution='© <a href="https://stadiamaps.com/">Stadia Maps</a>, © <a href="https://openmaptiles.org/">OpenMapTiles</a> © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors' + /> + </LayersControl.BaseLayer> + <LayersControl.BaseLayer name="OpenStreetMap.BlackAndWhite"> + <TileLayer + attribution='© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors' + url="https://tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png" + /> + </LayersControl.BaseLayer> + <LayersControl.BaseLayer name="OpenStreetMap.Mapnik"> + <TileLayer + attribution='© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors' + url='https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png' + /> + </LayersControl.BaseLayer> + </LayersControl> + <ZoomControl position={'topright'}/> + </MapContainer> + </> + ) +} + +// returns interpolated color according to provided value, using current selected range +const getColor = (value: number, activityType: ActivityType, data: IBikePointsActivityResponse, colorRange: IColorRange) => { + const valuesRange = getValuesRange(activityType, data) + return chroma.scale([colorRange.min, colorRange.max]).domain([valuesRange.min, valuesRange.max])(value).hex() +} + +// returns value range for selected data +const getValuesRange = (activityType: ActivityType, data: IBikePointsActivityResponse) => { + let rangeValues: INumberRange + switch (activityType) { + case 'rentals': + rangeValues = data.rentalsRange + break + case 'returns': + rangeValues = data.returnsRange + break + case 'rentalsReturnsImbalance': + rangeValues = data.rentalsReturnsImbalanceRange + break + } + return rangeValues +} + +const StyledGradient = styled.div<IColorRange>` + height: 2rem; + width: 100%; + background: linear-gradient(to right, ${props => props.min} 0%, ${props => props.max} 100%); +` +const StyledLegendText = styled.div` + width: 100%; + display: flex; + flex-direction: row; + justify-content: space-between; +` +const StyledControl = styled.div` + padding: ${distance.large}; + position: absolute; + height: 100vh; + max-width: 30vw; + min-width: 24vw; + z-index: 2; + background: ${({theme}) => theme.colors.backgroundSecondary}; + + display: flex; + flex-direction: column; + justify-content: space-between; +` +const Black = styled.div` + color: black; +` +const StyledRow = styled.div` + padding: ${distance.verySmall}; + display: flex; + flex-direction: row; +` diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pictures/SantanderCyclesLogo.png b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pictures/SantanderCyclesLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..d9f48339f9f98db9cd9c27041ac0b653557d7620 Binary files /dev/null and b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/pictures/SantanderCyclesLogo.png differ diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/react-app-env.d.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/react-app-env.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..6431bc5fc6b2c932dfe5d0418fc667b86c18b9fc --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// <reference types="react-scripts" /> diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/reportWebVitals.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/reportWebVitals.ts new file mode 100644 index 0000000000000000000000000000000000000000..0a4f9678ea2b6502476de5646eac37d178c12986 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/reportWebVitals.ts @@ -0,0 +1,15 @@ +import { ReportHandler } from 'web-vitals' + +const reportWebVitals = (onPerfEntry?: ReportHandler) => { + if (onPerfEntry && onPerfEntry instanceof Function) { + import('web-vitals').then(({getCLS, getFID, getFCP, getLCP, getTTFB}) => { + getCLS(onPerfEntry) + getFID(onPerfEntry) + getFCP(onPerfEntry) + getLCP(onPerfEntry) + getTTFB(onPerfEntry) + }) + } +} + +export default reportWebVitals diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/setupTests.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/setupTests.ts new file mode 100644 index 0000000000000000000000000000000000000000..52aaef1d2452104517b38ed65ea62c9a305aaa66 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/setupTests.ts @@ -0,0 +1,5 @@ +// jest-dom adds custom jest matchers for asserting on DOM nodes. +// allows you to do things like: +// expect(element).toHaveTextContent(/react/i) +// learn more: https://github.com/testing-library/jest-dom +import '@testing-library/jest-dom' diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/Global.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/Global.tsx new file mode 100644 index 0000000000000000000000000000000000000000..f9cd0ff312997640703c1aa3dd930f131446e8ec --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/Global.tsx @@ -0,0 +1,51 @@ +import { createGlobalStyle } from 'styled-components' +import { fonts } from './fonts' +import { fontSizes } from './sizes' + +export const GlobalStyle = createGlobalStyle` + .leaflet-container { + width: 100%; + height: 100vh; + } + *, + *::after, + *::before { + box-sizing: border-box; + } + body { + background: ${({ theme }) => theme.colors.backgroundPrimary}; + + color: ${({ theme }) => theme.colors.primary}; + + padding: 0; + margin: 0; + max-width: 100%; + /* to make 'overflow-x: hidden;' work on mobile as well */ + position: relative; + + /* to make light text on dark backgrounds look lighter */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + + font-family: ${fonts.default}; + font-size: ${fontSizes.text}; + } + html, body, #root, #root>div { + overflow-x: hidden; + } + h1, h2, h3, h4 { + color: ${({theme}) => theme.colors.primary}; + margin-block-start: 0; + margin-block-end: 0; + } + h1, h2 { + color: ${({theme}) => theme.colors.secondary}; + } + code { + font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; + } + a { + color: ${({ theme }) => theme.colors.secondary}; + text-decoration: none; + } +` diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/PageMarginLeftRight.tsx b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/PageMarginLeftRight.tsx new file mode 100644 index 0000000000000000000000000000000000000000..c822f39fcf146bafcb6ff29628bdaece6bb05c90 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/PageMarginLeftRight.tsx @@ -0,0 +1,13 @@ +import styled from 'styled-components' +import { maxScreenWidthMobile, pageMarginLeftRight, pageMarginLeftRightMobile } from './sizes' + +export const PageMarginLeftRight = styled.div` + @media screen and (max-width: ${maxScreenWidthMobile}px) { + margin-left: ${pageMarginLeftRightMobile}; + margin-right: ${pageMarginLeftRightMobile}; + } + @media screen and (min-width: ${maxScreenWidthMobile}px) { + margin-left: ${pageMarginLeftRight}; + margin-right: ${pageMarginLeftRight}; + } +` \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/chartColors.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/chartColors.ts new file mode 100644 index 0000000000000000000000000000000000000000..ccb109a14de21e2c773bf998c0b6c79d84ebfaab --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/chartColors.ts @@ -0,0 +1,295 @@ +/** Color palettes to use in charts */ +export const chartColors = { + red: { + '50': '#ffebee', + '100': '#ffcdd2', + '200': '#ef9a9a', + '300': '#e57373', + '400': '#ef5350', + '500': '#f44336', + '600': '#e53935', + '700': '#d32f2f', + '800': '#c62828', + '900': '#b71c1c', + 'a100': '#ff8a80', + 'a200': '#ff5252', + 'a400': '#ff1744', + 'a700': '#d50000' + }, + pink: { + '50': '#fce4ec', + '100': '#f8bbd0', + '200': '#f48fb1', + '300': '#f06292', + '400': '#ec407a', + '500': '#e91e63', + '600': '#d81b60', + '700': '#c2185b', + '800': '#ad1457', + '900': '#880e4f', + 'a100': '#ff80ab', + 'a200': '#ff4081', + 'a400': '#f50057', + 'a700': '#c51162' + }, + purple: { + '50': '#f3e5f5', + '100': '#e1bee7', + '200': '#ce93d8', + '300': '#ba68c8', + '400': '#ab47bc', + '500': '#9c27b0', + '600': '#8e24aa', + '700': '#7b1fa2', + '800': '#6a1b9a', + '900': '#4a148c', + 'a100': '#ea80fc', + 'a200': '#e040fb', + 'a400': '#d500f9', + 'a700': '#aa00ff' + }, + deeppurple: { + '50': '#ede7f6', + '100': '#d1c4e9', + '200': '#b39ddb', + '300': '#9575cd', + '400': '#7e57c2', + '500': '#673ab7', + '600': '#5e35b1', + '700': '#512da8', + '800': '#4527a0', + '900': '#311b92', + 'a100': '#b388ff', + 'a200': '#7c4dff', + 'a400': '#651fff', + 'a700': '#6200ea' + }, + indigo: { + '50': '#e8eaf6', + '100': '#c5cae9', + '200': '#9fa8da', + '300': '#7986cb', + '400': '#5c6bc0', + '500': '#3f51b5', + '600': '#3949ab', + '700': '#303f9f', + '800': '#283593', + '900': '#1a237e', + 'a100': '#8c9eff', + 'a200': '#536dfe', + 'a400': '#3d5afe', + 'a700': '#304ffe' + }, + blue: { + '50': '#e3f2fd', + '100': '#bbdefb', + '200': '#90caf9', + '300': '#64b5f6', + '400': '#42a5f5', + '500': '#2196f3', + '600': '#1e88e5', + '700': '#1976d2', + '800': '#1565c0', + '900': '#0d47a1', + 'a100': '#82b1ff', + 'a200': '#448aff', + 'a400': '#2979ff', + 'a700': '#2962ff' + }, + lightblue: { + '50': '#e1f5fe', + '100': '#b3e5fc', + '200': '#81d4fa', + '300': '#4fc3f7', + '400': '#29b6f6', + '500': '#03a9f4', + '600': '#039be5', + '700': '#0288d1', + '800': '#0277bd', + '900': '#01579b', + 'a100': '#80d8ff', + 'a200': '#40c4ff', + 'a400': '#00b0ff', + 'a700': '#0091ea' + }, + cyan: { + '50': '#e0f7fa', + '100': '#b2ebf2', + '200': '#80deea', + '300': '#4dd0e1', + '400': '#26c6da', + '500': '#00bcd4', + '600': '#00acc1', + '700': '#0097a7', + '800': '#00838f', + '900': '#006064', + 'a100': '#84ffff', + 'a200': '#18ffff', + 'a400': '#00e5ff', + 'a700': '#00b8d4' + }, + teal: { + '50': '#e0f2f1', + '100': '#b2dfdb', + '200': '#80cbc4', + '300': '#4db6ac', + '400': '#26a69a', + '500': '#009688', + '600': '#00897b', + '700': '#00796b', + '800': '#00695c', + '900': '#004d40', + 'a100': '#a7ffeb', + 'a200': '#64ffda', + 'a400': '#1de9b6', + 'a700': '#00bfa5' + }, + green: { + '50': '#e8f5e9', + '100': '#c8e6c9', + '200': '#a5d6a7', + '300': '#81c784', + '400': '#66bb6a', + '500': '#4caf50', + '600': '#43a047', + '700': '#388e3c', + '800': '#2e7d32', + '900': '#1b5e20', + 'a100': '#b9f6ca', + 'a200': '#69f0ae', + 'a400': '#00e676', + 'a700': '#00c853' + }, + lightgreen: { + '50': '#f1f8e9', + '100': '#dcedc8', + '200': '#c5e1a5', + '300': '#aed581', + '400': '#9ccc65', + '500': '#8bc34a', + '600': '#7cb342', + '700': '#689f38', + '800': '#558b2f', + '900': '#33691e', + 'a100': '#ccff90', + 'a200': '#b2ff59', + 'a400': '#76ff03', + 'a700': '#64dd17' + }, + lime: { + '50': '#f9fbe7', + '100': '#f0f4c3', + '200': '#e6ee9c', + '300': '#dce775', + '400': '#d4e157', + '500': '#cddc39', + '600': '#c0ca33', + '700': '#afb42b', + '800': '#9e9d24', + '900': '#827717', + 'a100': '#f4ff81', + 'a200': '#eeff41', + 'a400': '#c6ff00', + 'a700': '#aeea00' + }, + yellow: { + '50': '#fffde7', + '100': '#fff9c4', + '200': '#fff59d', + '300': '#fff176', + '400': '#ffee58', + '500': '#ffeb3b', + '600': '#fdd835', + '700': '#fbc02d', + '800': '#f9a825', + '900': '#f57f17', + 'a100': '#ffff8d', + 'a200': '#ffff00', + 'a400': '#ffea00', + 'a700': '#ffd600' + }, + amber: { + '50': '#fff8e1', + '100': '#ffecb3', + '200': '#ffe082', + '300': '#ffd54f', + '400': '#ffca28', + '500': '#ffc107', + '600': '#ffb300', + '700': '#ffa000', + '800': '#ff8f00', + '900': '#ff6f00', + 'a100': '#ffe57f', + 'a200': '#ffd740', + 'a400': '#ffc400', + 'a700': '#ffab00' + }, + orange: { + '50': '#fff3e0', + '100': '#ffe0b2', + '200': '#ffcc80', + '300': '#ffb74d', + '400': '#ffa726', + '500': '#ff9800', + '600': '#fb8c00', + '700': '#f57c00', + '800': '#ef6c00', + '900': '#e65100', + 'a100': '#ffd180', + 'a200': '#ffab40', + 'a400': '#ff9100', + 'a700': '#ff6d00' + }, + deeporange: { + '50': '#fbe9e7', + '100': '#ffccbc', + '200': '#ffab91', + '300': '#ff8a65', + '400': '#ff7043', + '500': '#ff5722', + '600': '#f4511e', + '700': '#e64a19', + '800': '#d84315', + '900': '#bf360c', + 'a100': '#ff9e80', + 'a200': '#ff6e40', + 'a400': '#ff3d00', + 'a700': '#dd2c00' + }, + brown: { + '50': '#efebe9', + '100': '#d7ccc8', + '200': '#bcaaa4', + '300': '#a1887f', + '400': '#8d6e63', + '500': '#795548', + '600': '#6d4c41', + '700': '#5d4037', + '800': '#4e342e', + '900': '#3e2723' + }, + grey: { + '50': '#fafafa', + '100': '#f5f5f5', + '200': '#eeeeee', + '300': '#e0e0e0', + '400': '#bdbdbd', + '500': '#9e9e9e', + '600': '#757575', + '700': '#616161', + '800': '#424242', + '900': '#212121' + }, + bluegrey: { + '50': '#eceff1', + '100': '#cfd8dc', + '200': '#b0bec5', + '300': '#90a4ae', + '400': '#78909c', + '500': '#607d8b', + '600': '#546e7a', + '700': '#455a64', + '800': '#37474f', + '900': '#263238' + } +} \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/fonts.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/fonts.ts new file mode 100644 index 0000000000000000000000000000000000000000..5ef229f4d03c928b7b1d2f3955631dc507289f4f --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/fonts.ts @@ -0,0 +1,3 @@ +export const fonts = { + default: 'Poppins, sans-serif', +} \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/sizes.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/sizes.ts new file mode 100644 index 0000000000000000000000000000000000000000..0c2134f8140868a811cc9d869a564b3b0eb54012 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/sizes.ts @@ -0,0 +1,21 @@ +export const pageMarginLeftRight = '2vw' +export const pageMarginLeftRightMobile = '2vw' + +export const distance = { + verySmall: '0.3rem', + small: '0.6rem', + medium: '1rem', + large: '1.4rem', + veryLarge: '3rem' +} + +export const maxScreenWidthMobile = 768 + +export const fontSizes = { + veryLarge: '2.3rem', + h1: '1.4rem', + h2: '1.3rem', + h3: '1.2rem', + h4: '1.1rem', + text: '1.0rem' +} \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/theme.ts b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/theme.ts new file mode 100644 index 0000000000000000000000000000000000000000..1ced916fdb138e95c0858d18b0b4c35856631b4a --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/src/style/theme.ts @@ -0,0 +1,23 @@ +import { DefaultTheme } from 'styled-components' + +export const darkTheme: DefaultTheme = { + colors: { + primary: '#f1edec', + secondary: '#f4ba8a', + backgroundPrimary: '#0c0c0c', + backgroundSecondary: '#161515', + backgroundInput: '#232323', + barChart: '#f4ba8a', + } +} as const + +export const lightTheme: DefaultTheme = { + colors: { + primary: '#0c0c0c', + secondary: '#885d39', + backgroundPrimary: '#f9f6f5', + backgroundSecondary: '#e4e8ee', + backgroundInput: '#d0d0d0', + barChart: '#885d39', + } +} as const \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/tsconfig.json b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..a996e2fa4e83a81d89c4b416465d51ea6dee1f75 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/app/frontend/tsconfig.json @@ -0,0 +1,49 @@ +{ + "compilerOptions": { + "noImplicitAny": true, + "allowSyntheticDefaultImports": true, + "sourceMap": true, + "target": "es2015", + "jsx": "react-jsx", + "types": [ + "react", + "jest" + ], + "module": "esNext", + "moduleResolution": "node", + "experimentalDecorators": true, + "declaration": false, + "removeComments": true, + "noImplicitReturns": true, + "noUnusedLocals": false, + "strict": true, + "outDir": "dist", + "baseUrl": "src", + "typeRoots": [ + "src/customTypings", + "node_modules/@types" + ], + "strictNullChecks": true, + "allowJs": true, + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "skipLibCheck": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "noFallthroughCasesInSwitch": true + }, + "exclude": [ + "dist", + "build", + "node_modules" + ], + "include": [ + "src" + ] +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/data/trips/.gitignore b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..e13d7d10d9ba6e747d059a7313b7b17a87c34abb --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/.gitignore @@ -0,0 +1 @@ +raw-data \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/data/trips/README.md b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/README.md new file mode 100644 index 0000000000000000000000000000000000000000..626355cc0f55bd626aa57f2bb49c45b5ce50d228 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/README.md @@ -0,0 +1,4 @@ +# Santander bike-sharing trip data in London + +Available in CSV-format [here](https://cycling.data.tfl.gov.uk/), starting at 2015. +The relevant files are in the folder 'usage-stats'. diff --git a/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/.gitignore b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..04248c1524614cba4317075a63ac53080bfe1fc8 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/.gitignore @@ -0,0 +1,3 @@ +node_modules +input +bike-sharing-trip-data.json \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/README.md b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/README.md new file mode 100644 index 0000000000000000000000000000000000000000..0b8acde44cfc089de7cc78d5ebc5eec768990acd --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/README.md @@ -0,0 +1,25 @@ +# Preprocess santander bike-sharing data + +## CSV trip data to json + +The script 'convert-csv-to-json' reads all CSV files in the 'input' directory and converts them it to a single json named 'bike-sharing-trip-data'. +The CSV files must contain London cycling trip data from Santander, available [here](https://cycling.data.tfl.gov.uk/). + +Make sure your folder structure inside the input directory looks as follows: + +``` +├── 2015TripData +│ ├── 1a.JourneyDataExtract04Jan15-17Jan15.csv +│ ├── ... +├── 2016TripData +│ ├── 01aJourneyDataExtract10Jan16-23Jan16.csv +│ ├── ... +``` + +Install dependencies with `npm intall`. + +Then you can run the script with `npm start`. + +If you process a lot of files, the script might take a few minutes, don't abort the process, wait till the script finishes! + +The file size of the final json will be twice as high as the original CSV files. diff --git a/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/convert-csv-to-json.js b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/convert-csv-to-json.js new file mode 100644 index 0000000000000000000000000000000000000000..6615c02ef94d3f8ccaa24aa564768fec3db36ca7 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/convert-csv-to-json.js @@ -0,0 +1,72 @@ +/** + * Reads all CSV files in subdirectories of 'input' directory and converts them it to a single json named 'bike-sharing-trip-data'. + * + * Make sure you your folder structure inside the input directory looks like: + * + * ├── 2015TripData + * │ ├── 1a.JourneyDataExtract04Jan15-17Jan15.csv + * │ ├── ... + * ├── 2016TripData + * │ ├── 01aJourneyDataExtract10Jan16-23Jan16.csv + * │ ├── ... + * + */ + +// main script is wrapped in async function in order to use 'await' syntax +(async () => { + const csv = require('csvtojson') + const fs = require('fs') + + const fileStream = fs.createWriteStream('bike-sharing-trip-data.json') + const inputDirectory = 'input' + const dirs = fs.readdirSync(inputDirectory).filter(path => !path.startsWith('.')) + + let isFirstTrip = true + + fileStream.write('[') + + await asyncForEach(dirs, async dirName => { + const files = fs.readdirSync(`${inputDirectory}/${dirName}`) + + await asyncForEach(files, async fileName => { + const trips = await csv({ + headers: ['_id', 'duration', 'bikeId', 'endDate', 'endStationId', 'endStationName', 'startDate', 'startStationId', 'startStationName'] + }).fromFile(`${inputDirectory}/${dirName}/${fileName}`) + + trips.map(trip => { + trip.startDate = toUnixTimestamp(trip.startDate) + trip.endDate = toUnixTimestamp(trip.endDate) + trip.duration = Number(trip.duration) + + // return trip with unix timestamps instead of date-strings + return trip + }) + + // if first trip, remove it from list (shift) and write to filestream without trailing comma + if(isFirstTrip){ + fileStream.write('\n' + JSON.stringify(trips.shift())) + isFirstTrip = false + } + + trips.forEach(trip => fileStream.write(',\n' + JSON.stringify(trip))) + }) + }) + + fileStream.write('\n]') + fileStream.end() +})() + +// convert date string of form 'dd/MM/yyyy HH:mm' to unix timestamp +const toUnixTimestamp = dateTimeString => { + // split string by slash space and colon + const [day, month, year, hour, minute] = dateTimeString.split(/[/\s:]/).map(part => parseInt(part)) + + // month needs -1 offset because January = 0 in Javascript Date + return Date.UTC(year, month - 1, day, hour, minute) / 1000 +} + +async function asyncForEach(array, callback) { + for (let index = 0; index < array.length; index++) { + await callback(array[index], index, array); + } +} \ No newline at end of file diff --git a/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/package-lock.json b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..60afa81ff38f2b47230daefc36aa27afa2f12f05 --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/package-lock.json @@ -0,0 +1,41 @@ +{ + "name": "pre-process-bike-sharing-data", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "csvtojson": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/csvtojson/-/csvtojson-2.0.10.tgz", + "integrity": "sha512-lUWFxGKyhraKCW8Qghz6Z0f2l/PqB1W3AO0HKJzGIQ5JRSlR651ekJDiGJbBT4sRNNv5ddnSGVEnsxP9XRCVpQ==", + "requires": { + "bluebird": "^3.5.1", + "lodash": "^4.17.3", + "strip-bom": "^2.0.0" + } + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "^0.2.0" + } + } + } +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/package.json b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/package.json new file mode 100644 index 0000000000000000000000000000000000000000..86740e978cf69cf821afcd2d86db66567d7262fc --- /dev/null +++ b/public/bike-sharing-london-dashboard-nodejs-react/data/trips/preprocessing/package.json @@ -0,0 +1,12 @@ +{ + "name": "pre-process-bike-sharing-data", + "version": "1.0.0", + "description": "Preprocess CSV bike sharing trip data.", + "scripts": { + "start": "node convert-csv-to-json.js" + }, + "license": "ISC", + "dependencies": { + "csvtojson": "^2.0.10" + } +} diff --git a/public/bike-sharing-london-dashboard-nodejs-react/imgs/architecture-overview.png b/public/bike-sharing-london-dashboard-nodejs-react/imgs/architecture-overview.png new file mode 100644 index 0000000000000000000000000000000000000000..2b1a41a1af5717e24a5392c9d83843916c9eab10 Binary files /dev/null and b/public/bike-sharing-london-dashboard-nodejs-react/imgs/architecture-overview.png differ diff --git a/public/bike-sharing-london-dashboard-nodejs-react/imgs/map-view.png b/public/bike-sharing-london-dashboard-nodejs-react/imgs/map-view.png new file mode 100644 index 0000000000000000000000000000000000000000..6865de25d0717524c58d7997df129ee73d35da64 Binary files /dev/null and b/public/bike-sharing-london-dashboard-nodejs-react/imgs/map-view.png differ diff --git a/public/index.html b/public/index.html index ef96e0198dcfa5d5b48a03bb42e8ece86af22e68..d5bca3b6b6f4a55c9eac3a308bc2b198f9882e68 100644 --- a/public/index.html +++ b/public/index.html @@ -90,34 +90,29 @@ <!-- BEISPIEL 1 --> <div class="col-md-4"> - <div class="card mb-4 shadow-sm extension"> - <h5>Titel Beispielprojekt</h5> - <!-- <svg class="bd-placeholder-img card-img-top" width="100%" height="225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid slice" focusable="false" role="img" aria-label="Placeholder: Thumbnail"><title>Placeholder</title><rect width="100%" height="100%" fill="#55595c"/><text x="50%" y="50%" fill="#eceeef" dy=".3em">Thumbnail</text></svg> --> - - <!-- BITTE QUELLCODE UND BILDER JEWEILS IN EINEM EIGENEN PROJEKTORDNER ABLEGEN --> - <img class="thumbimg" src="beispielprojekt/imgs/thumbnails/hft_beispielbild.jpg" alt=""> - <!-- Beschreibungstext bitte möglichst kurz halten, bspw. 100 Zeichen --> - <div class="card-body"> - <p class="card-text">Beschreibungstext hier einfügen...</p> - </div> - <!-- Hier die Links hinzufügen --> - <div class="d-flex justify-content-between align-items-center btnGroupDiv"> - <div class="btn-group"> - <form action="beispielprojekt/src/beispiel.html" class="form-signin" method="GET"> - <button type="submit" class="btn btn-sm btn-outline-secondary">GIT</button> - </form> - - <form action="beispielprojekt/src/beispiel.html" class="form-signin" method="GET"> - <button type="submit" class="btn btn-sm btn-outline-secondary">YouTube</button> - </form> - - <form action="beispielprojekt/src/beispiel.html" class="form-signin" method="GET"> - <button type="submit" class="btn btn-sm btn-outline-secondary">Website</button> - </form> - </div> - <!-- <small class="text-muted">9 mins</small> --> + <div class="card mb-4 shadow-sm extension"> + <h5>Bike-Sharing Dashboard</h5> + <!-- <svg class="bd-placeholder-img card-img-top" width="100%" height="225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid slice" focusable="false" role="img" aria-label="Placeholder: Thumbnail"><title>Placeholder</title><rect width="100%" height="100%" fill="#55595c"/><text x="50%" y="50%" fill="#eceeef" dy=".3em">Thumbnail</text></svg> --> + <!-- BITTE QUELLCODE UND BILDER JEWEILS IN EINEM EIGENEN PROJEKTORDNER ABLEGEN --> + <img class="thumbimg" src="bike-sharing-london-dashboard-nodejs-react/imgs/map-view.png" alt=""> + <!-- Beschreibungstext bitte möglichst kurz halten, bspw. 100 Zeichen --> + <div class="card-body"> + <p class="card-text">Londoner Bike-Sharing Daten, mit Node.js Server vorbereitet und in React-Frontend visualisiert.</p> + </div> + <div class="d-flex justify-content-between align-items-center btnGroupDiv"> + <div class="btn-group"> + <form action="https://transfer.hft-stuttgart.de/gitlab/hdastageeri/geovis21/-/blob/master/public/bike-sharing-london-dashboard-nodejs-react" class="form-signin" method="GET"> + <button type="submit" class="btn btn-sm btn-outline-secondary">GIT</button> + </form> + <!-- + <form action="beispielprojekt/src/beispiel.html" class="form-signin" method="GET"> + <button type="submit" class="btn btn-sm btn-outline-secondary">YouTube</button> + </form> + --> + </div> + <!-- <small class="text-muted">9 mins</small> --> + </div> </div> - </div> </div>