diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..284fb03 --- /dev/null +++ b/.env.example @@ -0,0 +1,6 @@ +VITE_FISHFRY_API_URL=https://data.pghfishfry.org/api/fishfries/ +VITE_FISHFRY_FALLBACK_URL=/data/fishfrymap.geojson +VITE_FISHFRY_YEAR=2026 +VITE_MAPBOX_TOKEN= +VITE_CLIENT_ERROR_DSN= +VITE_CLIENT_ERROR_SAMPLE_RATE=1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..f5436d2 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,37 @@ +name: CI + +on: + push: + branches: + - main + - master + pull_request: + +jobs: + test-and-build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build + + - name: Unit tests + run: npm run test:unit + + - name: Install Playwright Chromium + run: npx playwright install --with-deps chromium + + - name: Parity tests + run: npm run test:parity diff --git a/.gitignore b/.gitignore index 3c32d93..939335c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,9 @@ /_site /.vscode /node_modules +/dist +/.env +/test-results +/playwright-report /nbproject/private/ -/nbproject \ No newline at end of file +/nbproject diff --git a/README.md b/README.md index afd702d..44ca668 100644 --- a/README.md +++ b/README.md @@ -6,64 +6,128 @@ The Pittsburgh Lenten Fish Fry Map is the brainchild of Hollen Barmer, who has t The raw data isn't here! That is by design. The map gets data from the Fish Fry API @ [fishfry.codeforpgh.com/api/fishfries](http://fishfry.codeforpgh.com/api/fishfries). Anyone can use that URL to get data to make their own fish fry map, or do things with the Fish Fry data that we haven't thought of. If you want to learn more about the database and API, head over to the [Fish Fry Form](https://github.com/CodeForPittsburgh/fishfryform) repository. -Occassional snapshots of the data from are being dumped into the `data` folder of this repo, but only for posterity. +Occassional snapshots of the data are kept in `public/data` for local fallback and posterity. -## Development - -This is a static web site. We're serving it up with GitHub pages, but it can run on any web server as-is, really. +## Developer Quickstart ### Prerequisites -To develop this, you have [NodeJS](https://nodejs.org/en/) installed, such that you can call `node` and `npm` from the command line. +- Node.js `22.x` (matches CI) +- npm `10+` + +### 1) Install dependencies + +```bash +npm ci +``` + +### 2) Configure environment + +Create a local env file: + +```bash +cp .env.example .env +``` + +Current variables: + +- `VITE_FISHFRY_API_URL=https://data.pghfishfry.org/api/fishfries/` +- `VITE_FISHFRY_FALLBACK_URL=/data/fishfrymap.geojson` +- `VITE_MAPBOX_TOKEN=` (optional, enables Mapbox geocoding suggestions) +- `VITE_CLIENT_ERROR_DSN=` (optional, client-side error reporting target) +- `VITE_CLIENT_ERROR_SAMPLE_RATE=1` (`0..1`) + +### 3) Start local development server + +```bash +npm run dev +``` + +App runs at `http://localhost:5173`. -Then, in the root of this directory, run: +### 4) Run tests -`npm install` +Unit tests: -This will use the `package.json` file to get and install NodeJS dependencies locally, in a `node_modules` folder. +```bash +npm run test:unit +``` -You will also need these things (available on [NPM](https://www.npmjs.com)): +Playwright parity tests (first-time setup): -* [GulpJS](https://www.npmjs.com/package/gulp), with `gulp` callable from the command line. Install with `npm install gulp@4.0 -g` -* [Http-Server](https://www.npmjs.com/package/http-server), with `http-server` callable from the command line. Install with: `npm install http-server -g` +```bash +npx playwright install --with-deps chromium +npm run test:parity +``` -Those two things need to be available globally. the `-g` flag in those commands makes sure of that. +Run all tests: -### Building and Watching +```bash +npm test +``` -GulpJS is a task-runner that compiles and bundles source code from `src` folder into the `assets` folder. Since the deployment path for this is GitHub pages, we put things into the `assets` folder, which is where Jekyll, the software that runs GitHub pages, expects those things to be. +### 5) Build and preview production bundle -We run those tasks with `npm` scripts. +```bash +npm run build +npm run preview +``` -Running `npm run build` will compile and bundle the source code one time. +`npm run build` outputs to `dist/`. -Running `npm run dev` will do that, plus run `http-server`, open the site in a web browser at [http://localhost:3000](http://localhost:3000), and, upon detecting changes to files in `src`, re-runs compiling/bundling and refreshes your browser. Nice! +## Scripts -If the site doesn't load after `pnpm run dev`, check [http://localhost:4000](http://localhost:4000) in your browser. This is where `http-server` lives. If you don't see anything there, make sure you can run `http-server` from the command line (see **prerequisites** above). +- `npm run dev` starts Vite dev server +- `npm run build` builds production bundle +- `npm run preview` serves the production bundle +- `npm run test:unit` runs Vitest unit tests +- `npm run test:parity` runs Playwright parity tests +- `npm test` runs both suites -### Where the functionality lives / where you can hack on the code +## Project Layout -Most of the work is happening in `src/js/app.js`. The rest happens in `index.html`. +- `src/` app source code +- `src/features/` UI and map features +- `src/store/` Redux Toolkit slices and APIs +- `src/domain/` shared business logic (filters, date logic, normalization) +- `src/styles/` app styles and theme overrides +- `public/data/fishfrymap.geojson` fallback dataset used when API is unavailable -> TODO: the source code for this app is a bit of a mess...the result of quick prototyping. +## Theming -### Deploying this Site +- Base theme: `bootswatch/dist/darkly/bootstrap.min.css` (imported in `src/main.jsx`) +- Brand overrides: `src/styles/theme-overrides.css` +- App-level custom styles: `src/styles/app.css` -Run `npm run build`, commit changes, and push as-is to GitHub to deploy. +Primary brand color is set to `#fcb82e` in `src/styles/theme-overrides.css`. + +## Data Source + +Map data is fetched from: + +- `https://data.pghfishfry.org/api/fishfries/` + +If the primary API is unavailable, the app falls back to: + +- `/data/fishfrymap.geojson` + +If you want to learn more about the API and curation tooling, see: + +- [CodeForPittsburgh/fishfryform](https://github.com/CodeForPittsburgh/fishfryform) + +## Deployment + +Run `npm run build` and deploy the generated `dist/` assets. ## Credits The Fish Fry Map is built and maintained by members of Code for Pittsburgh. -It started with Bootleaf (which we've adapted it and modified heavily for this project), and uses Bootstrap 3, Leaflet, and typeahead.js, among other things. - ### Basemaps -Our nice basemaps come from all over! - -* **Light** and **Dark** basemaps: © OpenStreetMap contributors, © CARTO -* **Black n' Gold** basemap: Map tiles from Stamen Design, under CC BY 3.0 license. Basemap data by OpenStreetMap, under CC BY SA license. +- **Light** and **Dark** basemaps: © OpenStreetMap contributors, © CARTO +- **Black n' Gold** basemap: Map tiles from Stamen Design, under CC BY 3.0 license. Basemap data by OpenStreetMap, under CC BY SA license. ### Icons -Church and Warehouse icons come from © Mapbox. \ No newline at end of file +Church and Warehouse icons come from © Mapbox. diff --git a/assets/README.MD b/assets/README.MD deleted file mode 100644 index 58ddafc..0000000 --- a/assets/README.MD +++ /dev/null @@ -1,5 +0,0 @@ -# assets - -Compiled and bundled `js` and `css` files, plus static file assets in `data/` and `img/`. - -Don't edit the `js` and `css` files here, edit the source files in the `src/` folder. diff --git a/assets/css/bundle.core.css b/assets/css/bundle.core.css deleted file mode 100644 index 1345897..0000000 --- a/assets/css/bundle.core.css +++ /dev/null @@ -1,14 +0,0 @@ -@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic&display=swap);/*! - * bootswatch v3.4.1 - * Homepage: http://bootswatch.com - * Copyright 2012-2019 Thomas Park - * Licensed under MIT - * Based on Bootstrap -*//*! - * Bootstrap v3.4.1 (https://getbootstrap.com/) - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:"Glyphicons Halflings";src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"),url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"),url(../fonts/glyphicons-halflings-regular.woff) format("woff"),url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{box-sizing:border-box}:after,:before{box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:15px;line-height:1.42857143;color:#fff;background-color:#222}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#fcb82e;text-decoration:none}a:focus,a:hover{color:#fcb82e;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:2px;line-height:1.42857143;background-color:#222;border:1px solid #464545;border-radius:4px;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:21px;margin-bottom:21px;border:0;border-top:1px solid #464545}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#999}.h1,.h2,.h3,h1,h2,h3{margin-top:21px;margin-bottom:10.5px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10.5px;margin-bottom:10.5px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:39px}.h2,h2{font-size:32px}.h3,h3{font-size:26px}.h4,h4{font-size:19px}.h5,h5{font-size:15px}.h6,h6{font-size:13px}p{margin:0 0 10.5px}.lead{margin-bottom:21px;font-size:17px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:22.5px}}.small,small{font-size:86%}.mark,mark{padding:.2em;background-color:#f39c12}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#999}.text-primary{color:#375a7f}a.text-primary:focus,a.text-primary:hover{color:#28415b}.text-success{color:#fff}a.text-success:focus,a.text-success:hover{color:#e6e6e6}.text-info{color:#fff}a.text-info:focus,a.text-info:hover{color:#e6e6e6}.text-warning{color:#fff}a.text-warning:focus,a.text-warning:hover{color:#e6e6e6}.text-danger{color:#fff}a.text-danger:focus,a.text-danger:hover{color:#e6e6e6}.bg-primary{color:#fff;background-color:#375a7f}a.bg-primary:focus,a.bg-primary:hover{background-color:#28415b}.bg-success{background-color:#fcb82e}a.bg-success:focus,a.bg-success:hover{background-color:#c58a12}.bg-info{background-color:#3498db}a.bg-info:focus,a.bg-info:hover{background-color:#217dbb}.bg-warning{background-color:#f39c12}a.bg-warning:focus,a.bg-warning:hover{background-color:#c87f0a}.bg-danger{background-color:#e74c3c}a.bg-danger:focus,a.bg-danger:hover{background-color:#d62c1a}.page-header{padding-bottom:9.5px;margin:42px 0 21px;border-bottom:1px solid transparent}ol,ul{margin-top:0;margin-bottom:10.5px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:21px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10.5px 21px;margin:0 0 21px;font-size:18.75px;border-left:5px solid #464545}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#999}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014 \00A0"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #464545;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\00A0 \2014"}address{margin-bottom:21px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}pre{display:block;padding:10px;margin:0 0 10.5px;font-size:14px;line-height:1.42857143;color:#303030;word-break:break-all;word-wrap:break-word;background-color:#ebebeb;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.row-no-gutters{margin-right:0;margin-left:0}.row-no-gutters [class*=col-]{padding-right:0;padding-left:0}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}caption{padding-top:8px;padding-bottom:8px;color:#999;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:21px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #464545}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #464545}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #464545}.table .table{background-color:#222}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #464545}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #464545}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#3d3d3d}.table-hover>tbody>tr:hover{background-color:#464545}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#464545}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#393838}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#fcb82e}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#00a379}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#3498db}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#258cd1}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#f39c12}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#e08e0b}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#e74c3c}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#e43725}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15.75px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #464545}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:21px;font-size:22.5px;line-height:inherit;color:#fff;border:0;border-bottom:1px solid transparent}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{box-sizing:border-box;-webkit-appearance:none;appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;line-height:normal}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:11px;font-size:15px;line-height:1.42857143;color:#464545}.form-control{display:block;width:100%;height:45px;padding:10px 15px;font-size:15px;line-height:1.42857143;color:#464545;background-color:#fff;background-image:none;border:1px solid #f1f1f1;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#fff;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(255,255,255,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#ebebeb;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:45px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:35px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:66px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.checkbox label,.radio label{min-height:21px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.form-control-static{min-height:36px;padding-top:11px;padding-bottom:11px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:35px;padding:6px 9px;font-size:13px;line-height:1.5;border-radius:3px}select.input-sm{height:35px;line-height:35px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:35px;padding:6px 9px;font-size:13px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:35px;line-height:35px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:35px;min-height:34px;padding:7px 9px;font-size:13px;line-height:1.5}.input-lg{height:66px;padding:18px 27px;font-size:19px;line-height:1.3333333;border-radius:6px}select.input-lg{height:66px;line-height:66px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:66px;padding:18px 27px;font-size:19px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:66px;line-height:66px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:66px;min-height:40px;padding:19px 27px;font-size:19px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:56.25px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:45px;height:45px;line-height:45px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:66px;height:66px;line-height:66px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:35px;height:35px;line-height:35px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#fff}.has-success .form-control{border-color:#fff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#e6e6e6;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #fff}.has-success .input-group-addon{color:#fff;background-color:#fcb82e;border-color:#fff}.has-success .form-control-feedback{color:#fff}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#fff}.has-warning .form-control{border-color:#fff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#e6e6e6;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #fff}.has-warning .input-group-addon{color:#fff;background-color:#f39c12;border-color:#fff}.has-warning .form-control-feedback{color:#fff}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#fff}.has-error .form-control{border-color:#fff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#e6e6e6;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #fff}.has-error .input-group-addon{color:#fff;background-color:#e74c3c;border-color:#fff}.has-error .form-control-feedback{color:#fff}.has-feedback label~.form-control-feedback{top:26px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#fff}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:11px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:32px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:11px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:19px;font-size:19px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:7px;font-size:13px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:10px 15px;font-size:15px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#fff;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#fff;background-color:#464545;border-color:#464545}.btn-default.focus,.btn-default:focus{color:#fff;background-color:#2c2c2c;border-color:#060606}.btn-default:hover{color:#fff;background-color:#2c2c2c;border-color:#272727}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#fff;background-color:#2c2c2c;background-image:none;border-color:#272727}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#fff;background-color:#1a1a1a;border-color:#060606}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#464545;border-color:#464545}.btn-default .badge{color:#464545;background-color:#fff}.btn-primary{color:#fff;background-color:#375a7f;border-color:#375a7f}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#28415b;border-color:#101b26}.btn-primary:hover{color:#fff;background-color:#28415b;border-color:#253c54}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#28415b;background-image:none;border-color:#253c54}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#1d2f43;border-color:#101b26}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#375a7f;border-color:#375a7f}.btn-primary .badge{color:#375a7f;background-color:#fff}.btn-success{color:#fff;background-color:#fcb82e;border-color:#fcb82e}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#c58a12;border-color:#003d2d}.btn-success:hover{color:#fff;background-color:#c58a12;border-color:#007f5e}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#c58a12;background-image:none;border-color:#007f5e}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#00654b;border-color:#003d2d}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#fcb82e;border-color:#fcb82e}.btn-success .badge{color:#fcb82e;background-color:#fff}.btn-info{color:#fff;background-color:#3498db;border-color:#3498db}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#217dbb;border-color:#16527a}.btn-info:hover{color:#fff;background-color:#217dbb;border-color:#2077b2}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#217dbb;background-image:none;border-color:#2077b2}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#1c699d;border-color:#16527a}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#3498db;border-color:#3498db}.btn-info .badge{color:#3498db;background-color:#fff}.btn-warning{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#c87f0a;border-color:#7f5006}.btn-warning:hover{color:#fff;background-color:#c87f0a;border-color:#be780a}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#c87f0a;background-image:none;border-color:#be780a}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#a66908;border-color:#7f5006}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f39c12;border-color:#f39c12}.btn-warning .badge{color:#f39c12;background-color:#fff}.btn-danger{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#d62c1a;border-color:#921e12}.btn-danger:hover{color:#fff;background-color:#d62c1a;border-color:#cd2a19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#d62c1a;background-image:none;border-color:#cd2a19}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#b62516;border-color:#921e12}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#e74c3c;border-color:#e74c3c}.btn-danger .badge{color:#e74c3c;background-color:#fff}.btn-link{font-weight:400;color:#fcb82e;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#fcb82e;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#999;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:18px 27px;font-size:19px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:6px 9px;font-size:13px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:13px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;transition-property:height,visibility;transition-duration:.35s;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:15px;text-align:left;list-style:none;background-color:#303030;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#464545}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#ebebeb;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#fff;text-decoration:none;background-color:#375a7f}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#375a7f;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#999}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:13px;line-height:1.42857143;color:#999;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:66px;padding:18px 27px;font-size:19px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:66px;line-height:66px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:35px;padding:6px 9px;font-size:13px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:35px;line-height:35px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:10px 15px;font-size:15px;font-weight:400;line-height:1;color:#464545;text-align:center;background-color:#464545;border:1px solid transparent;border-radius:4px}.input-group-addon.input-sm{padding:6px 9px;font-size:13px;border-radius:3px}.input-group-addon.input-lg{padding:18px 27px;font-size:19px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#303030}.nav>li.disabled>a{color:#605e5e}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#605e5e;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#303030;border-color:#fcb82e}.nav .nav-divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #464545}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#464545 #464545 #464545}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#fcb82e;cursor:default;background-color:#222;border:1px solid #464545;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ebebeb}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ebebeb;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#222}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#375a7f}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ebebeb}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ebebeb;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#222}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:60px;margin-bottom:21px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-brand{float:left;height:60px;padding:19.5px 15px;font-size:19px;line-height:21px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:13px;margin-bottom:13px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:9.75px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:21px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:21px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:19.5px;padding-bottom:19.5px}}.navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:7.5px;margin-bottom:7.5px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:7.5px;margin-bottom:7.5px}.navbar-btn.btn-sm{margin-top:12.5px;margin-bottom:12.5px}.navbar-btn.btn-xs{margin-top:19px;margin-bottom:19px}.navbar-text{margin-top:19.5px;margin-bottom:19.5px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#375a7f;border-color:transparent}.navbar-default .navbar-brand{color:#fff}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#fcb82e;background-color:transparent}.navbar-default .navbar-text{color:#fff}.navbar-default .navbar-nav>li>a{color:#fff}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#fcb82e;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#fff;background-color:#28415b}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#fff;background-color:#28415b}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#fff}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#fcb82e;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#28415b}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-toggle{border-color:#28415b}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#28415b}.navbar-default .navbar-toggle .icon-bar{background-color:#fff}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:transparent}.navbar-default .navbar-link{color:#fff}.navbar-default .navbar-link:hover{color:#fcb82e}.navbar-default .btn-link{color:#fff}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#fcb82e}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#fcb82e;border-color:transparent}.navbar-inverse .navbar-brand{color:#fff}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#375a7f;background-color:transparent}.navbar-inverse .navbar-text{color:#fff}.navbar-inverse .navbar-nav>li>a{color:#fff}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#375a7f;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#00a379}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#aaa;background-color:transparent}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#00a379}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#fff}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#375a7f;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#00a379}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#aaa;background-color:transparent}}.navbar-inverse .navbar-toggle{border-color:#c58a12}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#c58a12}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#009871}.navbar-inverse .navbar-link{color:#fff}.navbar-inverse .navbar-link:hover{color:#375a7f}.navbar-inverse .btn-link{color:#fff}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#375a7f}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#aaa}.breadcrumb{padding:8px 15px;margin-bottom:21px;list-style:none;background-color:#464545;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#fff;content:"/\00a0"}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:21px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:10px 15px;margin-left:-1px;line-height:1.42857143;color:#fff;text-decoration:none;background-color:#fcb82e;border:1px solid transparent}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#fff;background-color:#00dba3;border-color:transparent}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#00dba3;border-color:transparent}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#fff;cursor:not-allowed;background-color:#007053;border-color:transparent}.pagination-lg>li>a,.pagination-lg>li>span{padding:18px 27px;font-size:19px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:6px 9px;font-size:13px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:21px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fcb82e;border:1px solid transparent;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#00dba3}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#ddd;cursor:not-allowed;background-color:#fcb82e}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#464545}.label-default[href]:focus,.label-default[href]:hover{background-color:#2c2c2c}.label-primary{background-color:#375a7f}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#28415b}.label-success{background-color:#fcb82e}.label-success[href]:focus,.label-success[href]:hover{background-color:#c58a12}.label-info{background-color:#3498db}.label-info[href]:focus,.label-info[href]:hover{background-color:#217dbb}.label-warning{background-color:#f39c12}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#c87f0a}.label-danger{background-color:#e74c3c}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#d62c1a}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:13px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#464545;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#375a7f;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#303030}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:23px;font-weight:200}.jumbotron>hr{border-top-color:#161616}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:68px}}.thumbnail{display:block;padding:2px;margin-bottom:21px;line-height:1.42857143;background-color:#222;border:1px solid #464545;border-radius:4px;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#fcb82e}.thumbnail .caption{padding:9px;color:#fff}.alert{padding:15px;margin-bottom:21px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#fff;background-color:#fcb82e;border-color:#fcb82e}.alert-success hr{border-top-color:#00a379}.alert-success .alert-link{color:#e6e6e6}.alert-info{color:#fff;background-color:#3498db;border-color:#3498db}.alert-info hr{border-top-color:#258cd1}.alert-info .alert-link{color:#e6e6e6}.alert-warning{color:#fff;background-color:#f39c12;border-color:#f39c12}.alert-warning hr{border-top-color:#e08e0b}.alert-warning .alert-link{color:#e6e6e6}.alert-danger{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.alert-danger hr{border-top-color:#e43725}.alert-danger .alert-link{color:#e6e6e6}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:21px;margin-bottom:21px;overflow:hidden;background-color:#ebebeb;border-radius:4px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:13px;line-height:21px;color:#fff;text-align:center;background-color:#375a7f;box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#fcb82e}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#3498db}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f39c12}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#e74c3c}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#303030;border:1px solid #464545}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#999;cursor:not-allowed;background-color:#ebebeb}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#999}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#375a7f;border-color:#375a7f}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#a8c0da}a.list-group-item,button.list-group-item{color:#fcb82e}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#0bcb9a}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#fcb82e;text-decoration:none;background-color:transparent}button.list-group-item{width:100%;text-align:left}.list-group-item-success{color:#fff;background-color:#fcb82e}a.list-group-item-success,button.list-group-item-success{color:#fff}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#fff;background-color:#00a379}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#fff;border-color:#fff}.list-group-item-info{color:#fff;background-color:#3498db}a.list-group-item-info,button.list-group-item-info{color:#fff}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#fff;background-color:#258cd1}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#fff;border-color:#fff}.list-group-item-warning{color:#fff;background-color:#f39c12}a.list-group-item-warning,button.list-group-item-warning{color:#fff}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#fff;background-color:#e08e0b}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#fff;border-color:#fff}.list-group-item-danger{color:#fff;background-color:#e74c3c}a.list-group-item-danger,button.list-group-item-danger{color:#fff}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#fff;background-color:#e43725}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#fff;border-color:#fff}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:21px;background-color:#303030;border:1px solid transparent;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:17px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#464545;border-top:1px solid #464545;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #464545}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:21px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #464545}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #464545}.panel-default{border-color:#464545}.panel-default>.panel-heading{color:#fff;background-color:#303030;border-color:#464545}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#464545}.panel-default>.panel-heading .badge{color:#303030;background-color:#fff}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#464545}.panel-primary{border-color:#375a7f}.panel-primary>.panel-heading{color:#fff;background-color:#375a7f;border-color:#375a7f}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#375a7f}.panel-primary>.panel-heading .badge{color:#375a7f;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#375a7f}.panel-success{border-color:#fcb82e}.panel-success>.panel-heading{color:#fff;background-color:#fcb82e;border-color:#fcb82e}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#fcb82e}.panel-success>.panel-heading .badge{color:#fcb82e;background-color:#fff}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#fcb82e}.panel-info{border-color:#3498db}.panel-info>.panel-heading{color:#fff;background-color:#3498db;border-color:#3498db}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#3498db}.panel-info>.panel-heading .badge{color:#3498db;background-color:#fff}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#3498db}.panel-warning{border-color:#f39c12}.panel-warning>.panel-heading{color:#fff;background-color:#f39c12;border-color:#f39c12}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#f39c12}.panel-warning>.panel-heading .badge{color:#f39c12;background-color:#fff}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#f39c12}.panel-danger{border-color:#e74c3c}.panel-danger>.panel-heading{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#e74c3c}.panel-danger>.panel-heading .badge{color:#e74c3c;background-color:#fff}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#e74c3c}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#303030;border:1px solid transparent;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:22.5px;font-weight:700;line-height:1;color:#fff;text-shadow:none;opacity:.2}.close:focus,.close:hover{color:#fff;text-decoration:none;cursor:pointer;opacity:.5}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);transform:translate(0,-25%);transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#303030;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.in{opacity:.7}.modal-header{padding:15px;border-bottom:1px solid #464545}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:20px}.modal-footer{padding:20px;text-align:right;border-top:1px solid #464545}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:13px;opacity:0}.tooltip.in{opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:15px;background-color:#303030;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover>.arrow{border-width:11px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#666;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#303030;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#666;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#303030;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#666;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#303030}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#666;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#303030}.popover-title{padding:8px 14px;margin:0;font-size:15px;background-color:#282828;border-bottom:1px solid #1c1c1c;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);opacity:.5}.carousel-control.left{background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:"\2039"}.carousel-control .icon-next:before{content:"\203a"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}.navbar{border-width:0}.navbar-default .badge{background-color:#fff;color:#375a7f}.navbar-inverse .badge{background-color:#fff;color:#fcb82e}.navbar-brand{line-height:1}.navbar-form .form-control{background-color:#fff}.navbar-form .form-control:focus{border-color:#fff}.btn{border-width:2px}.btn:active{box-shadow:none}.btn-group.open .dropdown-toggle{box-shadow:none}.text-primary,.text-primary:hover{color:#4673a3}.text-success,.text-success:hover{color:#fcb82e}.text-danger,.text-danger:hover{color:#e74c3c}.text-warning,.text-warning:hover{color:#f39c12}.text-info,.text-info:hover{color:#3498db}.table a:not(.btn),table a:not(.btn){text-decoration:underline}.table .dropdown-menu a,table .dropdown-menu a{text-decoration:none}.table .danger,.table .info,.table .success,.table .warning,table .danger,table .info,table .success,table .warning{color:#fff}.table .danger>a,.table .danger>td>a,.table .danger>th>a,.table .info>a,.table .info>td>a,.table .info>th>a,.table .success>a,.table .success>td>a,.table .success>th>a,.table .warning>a,.table .warning>td>a,.table .warning>th>a,table .danger>a,table .danger>td>a,table .danger>th>a,table .info>a,table .info>td>a,table .info>th>a,table .success>a,table .success>td>a,table .success>th>a,table .warning>a,table .warning>td>a,table .warning>th>a{color:#fff}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th,table>tbody>tr>td,table>tbody>tr>th,table>tfoot>tr>td,table>tfoot>tr>th,table>thead>tr>td,table>thead>tr>th{border:none}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th,table-bordered>tbody>tr>td,table-bordered>tbody>tr>th,table-bordered>tfoot>tr>td,table-bordered>tfoot>tr>th,table-bordered>thead>tr>td,table-bordered>thead>tr>th{border:1px solid #464545}input,textarea{color:#464545}.form-control,input,textarea{border:2px hidden transparent;box-shadow:none}.form-control:focus,input:focus,textarea:focus{box-shadow:none}.form-control-feedback{color:#464545}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#f39c12}.has-warning .form-control,.has-warning .form-control:focus{box-shadow:none}.has-warning .input-group-addon{border-color:#f39c12}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#e74c3c}.has-error .form-control,.has-error .form-control:focus{box-shadow:none}.has-error .input-group-addon{border-color:#e74c3c}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#fcb82e}.has-success .form-control,.has-success .form-control:focus{box-shadow:none}.has-success .input-group-addon{border-color:#fcb82e}.input-group-addon{color:#fff}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{border-color:#464545}.nav-pills>li>a,.nav-tabs>li>a{color:#fff}.pager a,.pager a:hover{color:#fff}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{background-color:#007053}.breadcrumb a{color:#fff}.close{text-decoration:none;text-shadow:none;opacity:.4}.close:focus,.close:hover{opacity:1}.alert .alert-link{color:#fff;text-decoration:underline}.progress{height:10px;box-shadow:none}.progress .progress-bar{font-size:10px;line-height:10px}.well{box-shadow:none}a.list-group-item.active,a.list-group-item.active:focus,a.list-group-item.active:hover{border-color:#464545}a.list-group-item-success.active{background-color:#fcb82e}a.list-group-item-success.active:focus,a.list-group-item-success.active:hover{background-color:#00a379}a.list-group-item-warning.active{background-color:#f39c12}a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover{background-color:#e08e0b}a.list-group-item-danger.active{background-color:#e74c3c}a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover{background-color:#e43725}.popover{color:#fff}.panel-default>.panel-heading{background-color:#464545}/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.leaflet-image-layer,.leaflet-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane,.leaflet-pane>canvas,.leaflet-pane>svg,.leaflet-tile,.leaflet-tile-container,.leaflet-zoom-box{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:0 0}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-overlay-pane svg,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer{max-width:none!important;max-height:none!important}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-bottom,.leaflet-top{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-tile{will-change:opacity}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}.leaflet-zoom-anim .leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-pan-anim .leaflet-tile,.leaflet-zoom-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-control,.leaflet-popup-pane{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-image-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-image-layer.leaflet-interactive,.leaflet-marker-icon.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline:0}.leaflet-container a{color:#0078a8}.leaflet-container a.leaflet-active{outline:2px solid orange}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font:12px/1.5 "Helvetica Neue",Arial,Helvetica,sans-serif}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a,.leaflet-bar a:hover{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:bold 18px 'Lucida Console',Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(images/layers.png);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(images/layers-2x.png);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(images/marker-icon.png)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.7);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover{text-decoration:underline}.leaflet-container .leaflet-control-attribution,.leaflet-container .leaflet-control-scale{font-size:11px}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;font-size:11px;white-space:nowrap;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box;background:#fff;background:rgba(255,255,255,.5)}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers{box-shadow:none}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-layers{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 19px;line-height:1.4}.leaflet-popup-content p{margin:18px 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;padding:4px 4px 0 0;border:none;text-align:center;width:18px;height:14px;font:16px/14px Tahoma,Verdana,sans-serif;color:#c3c3c3;text-decoration:none;font-weight:700;background:0 0}.leaflet-container a.leaflet-popup-close-button:hover{color:#999}.leaflet-popup-scrolled{overflow:auto;border-bottom:1px solid #ddd;border-top:1px solid #ddd}.leaflet-oldie .leaflet-popup-content-wrapper{zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto}.leaflet-oldie .leaflet-popup-tip-container{margin-top:-1px}.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-clickable{cursor:pointer;pointer-events:auto}.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before,.leaflet-tooltip-top:before{position:absolute;pointer-events:none;border:6px solid transparent;background:0 0;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}.leaflet-cluster-anim .leaflet-marker-icon,.leaflet-cluster-anim .leaflet-marker-shadow{-webkit-transition:-webkit-transform .3s ease-out,opacity .3s ease-in;-moz-transition:-moz-transform .3s ease-out,opacity .3s ease-in;-o-transition:-o-transform .3s ease-out,opacity .3s ease-in;transition:transform .3s ease-out,opacity .3s ease-in}.leaflet-cluster-spider-leg{-webkit-transition:-webkit-stroke-dashoffset .3s ease-out,-webkit-stroke-opacity .3s ease-in;-moz-transition:-moz-stroke-dashoffset .3s ease-out,-moz-stroke-opacity .3s ease-in;-o-transition:-o-stroke-dashoffset .3s ease-out,-o-stroke-opacity .3s ease-in;transition:stroke-dashoffset .3s ease-out,stroke-opacity .3s ease-in}.basemaps{padding:4px}.basemaps.closed .basemap{display:none}.basemaps.closed .basemap.alt{display:inline-block}.basemaps.closed .basemap.alt h4{display:none}.basemap{display:inline-block;cursor:pointer}.basemap.active img{border-color:orange;box-shadow:2px 2px 4px #000}.basemap img{width:64px;border:2px solid #fff;margin:0 2px;border-radius:40px;box-shadow:0 1px 5px rgba(0,0,0,.65)}.leaflet-control-locate a{font-size:1.4em;color:#444;cursor:pointer}.leaflet-control-locate.active a{color:#2074b6}.leaflet-control-locate.active.following a{color:#fc8428}.marker-cluster-small{background-color:rgba(255,255,255,.6)}.marker-cluster-small div{background-color:rgba(241,74,57,.6)}.marker-cluster-medium{background-color:rgba(255,255,255,.6)}.marker-cluster-medium div{background-color:rgba(217,34,15,.6)}.marker-cluster-large{background-color:rgba(255,255,255,.6)}.marker-cluster-large div{background-color:rgba(175,18,2,.6)}.leaflet-oldie .marker-cluster-small{background-color:#fff}.leaflet-oldie .marker-cluster-small div{background-color:#f14a39}.leaflet-oldie .marker-cluster-medium{background-color:#fff}.leaflet-oldie .marker-cluster-medium div{background-color:#d9220f}.leaflet-oldie .marker-cluster-large{background-color:#fff}.leaflet-oldie .marker-cluster-large div{background-color:#af1202}.marker-cluster{background-clip:padding-box;border-radius:20px}.marker-cluster div{width:30px;height:30px;margin-left:5px;margin-top:5px;text-align:center;border-radius:15px}.marker-cluster span{line-height:30px;color:#fff}#container,body,html{height:100%;width:100%;overflow:hidden}body{padding-top:50px}input[type=checkbox],input[type=radio]{margin:0}#sidebar{display:block;width:85%;height:100%;max-width:100%;float:left}@media (min-width:768px) and (max-width:991px){#sidebar{width:50%}}@media (min-width:992px){#sidebar{width:30%}}#map{width:auto;height:100%;box-shadow:0 0 10px rgba(0,0,0,.6)}#loading{position:absolute;width:220px;height:19px;top:50%;left:50%;margin:-10px 0 0 -110px;z-index:20001}#features{margin:0;border:none;border-radius:0;-webkit-box-shadow:none;box-shadow:none}#sidebar-hide-btn{margin-top:-2px}#aboutTabsContent{padding-top:10px}.progress-bar-full{width:100%}.white{color:#fff}.feature-row{cursor:pointer;width:250px}.sidebar-wrapper{width:100%;height:100%;position:relative}.sidebar-table{position:absolute;width:100%;top:103px;bottom:0;overflow:auto}.leaflet-control-layers{overflow:auto}.leaflet-control-layers label{font-weight:400;margin-bottom:0}.leaflet-control-layers-list input[type=radio],input[type=checkbox]{margin:2px}.table{margin-bottom:0}.bool-card-true{background-color:#fcb82e;color:#000}.navbar-default{background-color:#303030!important}.navbar .navbar-brand{font-weight:700;font-size:25px;color:#fff;background-color:#303030!important}.navbar-collapse.in{overflow-y:hidden}.navbar-header .navbar-icon-container{margin-right:15px}.navbar-header .navbar-icon{line-height:50px;height:50px}.navbar-header a.navbar-icon{margin-left:25px}.typeahead{background-color:#222}.tt-dropdown-menu{background-color:#222;border:1px solid rgba(0,0,0,.2);border-radius:4px 4px 4px 4px;box-shadow:0 5px 10px rgba(0,0,0,.2);margin-top:4px;padding:4px 0;width:100%;max-height:300px;overflow:auto}.tt-suggestion{font-size:14px;line-height:20px;padding:3px 10px}.tt-suggestion.tt-cursor{background-color:#fcb82e;color:#000;cursor:pointer}.tt-suggestion p{margin:0}.tt-suggestion+.tt-suggestion{border-top:1px solid #ccc}.typeahead-header{margin:0 5px 5px 5px;padding:3px 0;border-bottom:2px solid #333}.has-feedback .form-control-feedback{position:absolute;top:0;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}@media (max-width:992px){.navbar .navbar-brand{font-size:18px}}@media (max-width:767px){#sidebar{display:none}.url-break{word-break:break-all;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.dropdown-menu a i{color:#000}}@media print{.navbar{display:none!important}.leaflet-control-container{display:none!important}}@media screen and (min-width:768px){.modal-full{width:100%}}.leaflet-control-zoomhome-out .leaflet-control-zoomhome-in{font-size:16px!important;font-weight:700}.basemap img{border-radius:6px!important;width:44px!important;padding:0}.basemaps.leaflet-control{padding:0} \ No newline at end of file diff --git a/assets/css/images/layers-2x.png b/assets/css/images/layers-2x.png deleted file mode 100644 index 200c333..0000000 Binary files a/assets/css/images/layers-2x.png and /dev/null differ diff --git a/assets/css/images/layers.png b/assets/css/images/layers.png deleted file mode 100644 index 1a72e57..0000000 Binary files a/assets/css/images/layers.png and /dev/null differ diff --git a/assets/css/images/marker-icon-2x.png b/assets/css/images/marker-icon-2x.png deleted file mode 100644 index 88f9e50..0000000 Binary files a/assets/css/images/marker-icon-2x.png and /dev/null differ diff --git a/assets/css/images/marker-icon.png b/assets/css/images/marker-icon.png deleted file mode 100644 index 950edf2..0000000 Binary files a/assets/css/images/marker-icon.png and /dev/null differ diff --git a/assets/css/images/marker-shadow.png b/assets/css/images/marker-shadow.png deleted file mode 100644 index 9fd2979..0000000 Binary files a/assets/css/images/marker-shadow.png and /dev/null differ diff --git a/assets/data/fishfrymap.geojson b/assets/data/fishfrymap.geojson deleted file mode 100644 index 4fea33d..0000000 --- a/assets/data/fishfrymap.geojson +++ /dev/null @@ -1 +0,0 @@ -{"features": [{"id": "c3d08926-d218-464a-a62c-46a13d14bcb1", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "http://www.mcginnis-sisters.com/", "handicap": true, "phone": "412-858-7000", "venue_name": "McGinnis Sisters", "venue_address": "4311 Northern Pike, Monroeville, PA", "venue_type": "Market", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T09:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T09:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T09:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T09:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T09:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T09:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T09:00:00"}], "venue_notes": null, "etc": "MON-SAT 9 AM - 7 PM\r\nSUN 9 AM - 6 PM", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.753389, 40.435043], "type": "Point"}}, {"id": "c399dfee-5549-44ab-b696-c1496a174711", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 256.0, "validated": false, "website": null, "handicap": null, "phone": "814-474-2605", "venue_name": "Holy Cross (Reilly Center)", "venue_address": "7100 West Ridge Road, Fairview PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Fried pollack, fried shrimp, or combo. Adult $10, Child $5. Includes baked potato, homemade coleslaw, roll, butter, dessert, and beverage. Mac and cheese $5. "}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.245022, 42.03971], "type": "Point"}}, {"id": "3ca85436-d09d-4e0f-8d64-717530628a97", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/HHVFD/", "handicap": null, "phone": "412-824-9972", "venue_name": "Hartford Heights Volunteer Fire Department", "venue_address": "14335 U.S. 30, Irwin, PA 15642", "venue_type": "Fire Department", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/photo.php?fbid=1885613354784664&set=gm.2086300038274058&type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.767295, 40.352969], "type": "Point"}}, {"id": "b79c8a63-2459-46a4-a500-4f40c1d4f056", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.beavervalleyyachtclub.org/", "handicap": null, "phone": "(724) 847-4663", "venue_name": "Beaver Valley Yacht Club", "venue_address": "219 Front Street, New Brighton, Pennsylvania 15066, United States", "venue_type": "Community Organization", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T12:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T12:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T12:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T12:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T12:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T12:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T12:00:00"}], "venue_notes": "Clubhouse at top of driveway", "etc": "Beginning February 16, running every Friday through Good Friday Times: 12 noon-7 p.m.", "menu": {"url": null, "text": "Menu & Cost:\r\nEat in or take out. Adult Fish Dinner (Cod or Perch) $9, Adult Shrimp Dinner $9.25, Adult Chicken Tenders Dinner $8.50, Fish Sandwich (Cod or Perch) $7.25\u2013Senior (60+) and Child pricing available. Dinners incl. 3 sides & roll \u2014 Sandwich incl. 1 side. Sides: Cole Slaw, French Fries, Mac & Cheese. All incl. sales tax and coffee or hot tea. **Cash Only** Cash bar available.\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.309452, 40.724576], "type": "Point"}}, {"id": "38bdb70e-7bf4-4b6a-b700-b73dd1d39a56", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "http://www.ourladyofjoy.org", "handicap": true, "phone": "412-795-3388", "venue_name": "Our Lady of Joy, Holiday Park", "venue_address": "2000 O'Block Road Holiday Park, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "The Fish Fry is in Father Marchukanis Hall.", "etc": "Ash Wednesday and Fridays of Lent, including Good Friday, 4-7 p.m", "menu": {"url": null, "text": "Menu is a la carte, and features fried or baked fish, cole slaw, grilled cheese, haluski, macaroni and cheese, french fries, soft drinks, coffee and variety of desserts. Sandwiches are $7. Free ice cream for children. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.719563, 40.480007], "type": "Point"}}, {"id": "da4ea698-ce41-4d2d-a9c2-ba5f65e25584", "properties": {"lunch": true, "homemade_pierogies": false, "validated": true, "website": "https://www.facebook.com/StAlphonsusWheelingWV/", "handicap": null, "phone": "304-905-6589 takeout", "venue_name": "St Alphonsus Wheeling And St John Benwood Combined Fish Fry", "venue_address": "2111 Market St, Wheeling, WV", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T11:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Menu consists of fish sandwiches, french fries, macaroni and cheese, cabbage and noodles, cole slaw, deserts, and refreshments. Eat in or take out."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.723752, 40.060984], "type": "Point"}}, {"id": "d045c2ae-08dc-4649-a533-6bc3289aa311", "properties": {"lunch": false, "homemade_pierogies": true, "validated": true, "website": "http://www.smomp.org", "handicap": true, "phone": "412-390-4011", "venue_name": "St. Mary of the Mount Church - Sullivan Hall", "venue_address": "131 Bigham, Pittsburgh, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:30:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:30:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:30:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:30:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:30:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:30:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-03-30T19:30:00", "dt_start": "2018-03-30T16:30:00"}], "venue_notes": "Sullivan Hall", "etc": "Fridays of Lent, including Good Friday, 4:30-7:30 p.m.", "menu": {"url": null, "text": "Menu features fried and baked fish dinners, shrimp dinner, homemade pierogies, macaroni and cheese, cole slaw, soups and dessert. Costs: $10 adults; $9 seniors; $5 child; $8 sandwich. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.014238, 40.435178], "type": "Point"}}, {"id": "ac4080d1-482f-477c-9df2-b0c652c8bbab", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "http://www.aohdivision32.org/", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Ancient Order of Hibernians", "venue_address": "302 Mansfield Avenue Carnegie, Pa. 15106", "venue_type": "Community Organization", "alcohol": true, "take_out": null, "email": "aohdiv32@gmail.com", "events": [], "venue_notes": "Ukaranian American Citizens Club, Social Hall dining room", "etc": "Every Friday beginning with 2/16 thru Good Friday\r\n", "menu": {"url": null, "text": "Great fish, haluska, Mac and cheese, shrimp\u2026.reasonable prices and alcohol if desired.\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.090892, 40.41042], "type": "Point"}}, {"id": "61c11f19-a474-4c93-9734-20463a61623b", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 95.0, "validated": false, "website": "http://www.bridgevillevfd.com/2017fishfrymenu.pdf", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Bridgeville Volunteer Fire Department", "venue_address": "370 Commercial Street, Bridgeville, PA", "venue_type": "Fire Department", "alcohol": false, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T16:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}], "venue_notes": null, "etc": "4-7 pm biweekly: March 3, 17, 31; April 14", "menu": {"url": null, "text": "see website link"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.106939, 40.362], "type": "Point"}}, {"id": "7745a7b7-b0a9-4026-bfe7-bddd4d9a7e22", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.christthelightoftheworld.org/", "handicap": null, "phone": "412-466-8960", "venue_name": "Christ the Light of the World", "venue_address": "32 S 1st St, Duquesne, PA 15110", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": null, "etc": "Come enjoy our Parish Fish Fry every Friday in Lent EXCEPT March 2 and Good FridayEat in or Take-out (call 412-466-8960.) Local delivery available.", "menu": {"url": null, "text": "Cod Fish Sandwich, Jumbo Shrimp, Mac & Cheese, Waffle Fries, Haluski, Potato Pancakes, Cole Slaw and Home Made Desserts."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.845755, 40.372447], "type": "Point"}}, {"id": "66abce14-0102-4d2c-831c-63511c02fae2", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/Bobtown-Dunkard-Township-Vol-Fire-Dept-186206404761913/", "handicap": null, "phone": "724-839-7140", "venue_name": "Bobtown and Dunkard Twp Volunteer Fire (ADDRESS UNCERTAIN)", "venue_address": "1 Larimer Ave Bobtown, Pa 15315", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": "The address for this fish fry is uncertain. Please check with Bobtown and Dunkard Volunteer Fire Department before visiting.", "menu": {"url": "https://www.facebook.com/186206404761913/photos/a.638412672874615.1073741829.186206404761913/1556094534439753/?type=3&theater", "text": "see website link for full menu"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.980159, 39.759173], "type": "Point"}}, {"id": "3a7d2350-fc1e-49df-978f-bd60cd086a67", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 258.0, "validated": false, "website": null, "handicap": null, "phone": "724-222-5952", "venue_name": "Tower Restaurant", "venue_address": "680 W Chestnut St Washington, PA 15301", "venue_type": "Restaurant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.260334, 40.169556], "type": "Point"}}, {"id": "ab67f06f-edf1-4fb3-9d75-73ed75852c79", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://manorvfd.org/", "handicap": null, "phone": "(724) 863-5610", "venue_name": "Manor Volunteer Fire Department", "venue_address": "40 Main Street, Manor, Pennsylvania 15665, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": "Manor Borough Community Room", "etc": "Wednesday, February 14, 2018 (Ash Wednesday) 4 PM to 7 PM\r\nEvery Friday Night During Lent 4 PM to 7 PM (3 PM to 7 PM on Good Friday)\r\n Orders for Delivery Must Be Received No Later Than 5:30 PM\r\n", "menu": {"url": null, "text": "Dinners:\r\n1 Piece Fish Dinner \u2013 $8\r\n2 Piece Fish Dinner \u2013 $10\r\n6 Piece Shrimp Dinner \u2013 $9\r\n9 Piece Shrimp Dinner \u2013 $11\r\n4 Piece Chicken Dinner \u2013 $10\r\nDinners Include: 2 Sides, Dinner Roll, Butter, Beverage and Dessert\r\nPlatter:\r\nFish Sandwich Platter \u2013 $10\r\nPlatter Includes: 2 Pieces of Fish in a Big Bun, 1 Side, Beverage and Dessert\r\nKids Meal:\r\nKids Meal \u2013 $5\r\nKids Meal Includes: A choice of a Hotdog, Hamburger, Cheeseburger, Chicken (2 Pieces)\r\nOr Fish (1 Piece), Plus 1 Side, a Beverage and Dessert\r\nAl a Carte:\r\n1 Piece of Fish \u2013 $3\r\n3 Pieces of Shrimp \u2013 $2\r\n2 Pieces of Chicken \u2013 $2\r\nSides -$1\r\nFish Sandwich \u2013 $6\r\nBeverage \u2013 $1\r\nDessert \u2013 $2\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.671243, 40.33371], "type": "Point"}}, {"id": "d140ee64-5db5-4e57-a283-d39e6d1dd939", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "http://www.stpeterparish.org", "handicap": false, "phone": "412-321-2499", "venue_name": "St. Peter, Northside", "venue_address": "907 Middle St, Pittsburgh, PA 15212", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T18:30:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T18:30:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T18:30:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T18:30:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T18:30:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T18:30:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "Note that you must use the Middle Street address for GPS navigation. The fish fry is located at Our Lady Queen of Peace facilities at Middle and Suismon.", "etc": "For information, call 412-321-0711 or visit www.stpeterparish.org.\r\n", "menu": {"url": "http://www.stpeterparish.org/", "text": "Menu: baked or fried cod; salmon; crab cakes; macaroni and cheese or cabbage and noodles, stewed tomatoes or vegetable of the day; french fries; cole slaw or pickled beets. Also, roll and butter, coffee or tea. Cost is $10 for dinner, $6 for sandwiches. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.999768, 40.455751], "type": "Point"}}, {"id": "7f74bbc3-a185-4a1e-aa82-21da062c7d42", "properties": {"lunch": true, "homemade_pierogies": true, "cartodb_id": 245.0, "validated": false, "website": "www.stpatrickparish.net", "handicap": null, "phone": "724-745-6560", "venue_name": "St. Patrick, Canonsburg", "venue_address": " 317 W Pike St, Canonsburg, PA 15317", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}, {"dt_end": "2018-03-16T13:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-23T13:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}], "venue_notes": null, "etc": "Fridays of Lent, except Good Friday, 11 a.m.-1 p.m. lunch, 4-7 p.m. dinner. Fax orders to 724-746-1112 two hours prior to pickup or delivery.", "menu": {"url": null, "text": "Lunch menu features hand-breaded cod sandwich in adult and child size, soup and sides. Delivery is available for lunch within seven miles with minimum order of $30. Dinner entrees include hand-breaded baked or fried cod, shrimp and seafood platter, with two sides, roll and butter, dessert and beverage. Sides include hush puppies, haluski, macaroni and cheese, cole slaw, applesauce and stewed tomatoes. Also featuring homemade desserts. Homemade pierogies for sale, cooked with butter and onions, or dozen frozen."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.195076, 40.258009], "type": "Point"}}, {"id": "67ad3134-9fe3-4d2f-943e-452babea0bc1", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 253.0, "validated": false, "website": null, "handicap": null, "phone": "814-796-3023", "venue_name": "All Saints", "venue_address": "11264 Route 97 North, Waterford PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-02T19:30:00-05:00", "dt_start": "2018-03-02T16:30:00-05:00"}, {"dt_end": "2018-03-23T19:30:00-04:00", "dt_start": "2018-03-23T16:30:00-04:00"}, {"dt_end": "2018-02-23T19:30:00-05:00", "dt_start": "2018-02-23T16:30:00-05:00"}, {"dt_end": "2018-02-16T19:30:00-05:00", "dt_start": "2018-02-16T16:30:00-05:00"}, {"dt_end": "2018-03-09T19:30:00-05:00", "dt_start": "2018-03-09T16:30:00-05:00"}, {"dt_end": "2018-03-16T19:30:00-04:00", "dt_start": "2018-03-16T16:30:00-04:00"}], "venue_notes": null, "etc": "4:30-7:30 pm March 3, 10, 17, 24, 31, and April 7", "menu": {"url": null, "text": "Baked or fried white fish. Adult $9, Child 12 and under $4, Toddlers free. Includes choice of baked potato and french fries, coleslaw/applesauce, homemade desserts, and drink."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.009111, 41.974787], "type": "Point"}}, {"id": "8f641465-5301-4b01-a811-ef4c909e7c84", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 86.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Doublewide Grill (Mars/Cranberry)", "venue_address": "100 Adams Shoppes, Cranberry, PA", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.056449, 40.687426], "type": "Point"}}, {"id": "f4f2c56b-82e8-41b0-a4ab-70761fde6765", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "www.stmalachypgh.org", "handicap": true, "phone": "412-771-0848", "venue_name": "St. Malachy, Kennedy Township", "venue_address": "343 Forest Grove Road Kennedy Township, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T12:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T12:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T12:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T12:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T12:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T12:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T12:00:00"}, {"dt_end": "2018-03-30T12:15:00", "dt_start": "2018-03-30T12:00:00"}], "venue_notes": "In School Cafeteria", "etc": "Ash Wednesday and Fridays of Lent, including Good Friday, noon-7 p.m. (shorter hours Good Friday, with limited menu). Good Friday has limited menu, limited hours. ", "menu": {"url": "http://www.stmalachypgh.org/FISH%20FRY%202018%20MENU.pdf", "text": "Menu features 1-pound fish sandwich, baked fish, tuna salad sandwich, crab cake sandwich, shrimp, pierogies, macaroni and cheese, cabbage and noodles, cole slaw, french fries. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.10313, 40.47763], "type": "Point"}}, {"id": "ac983458-3559-4ed2-bf1b-29d87f64c01a", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 246.0, "validated": false, "website": "hogfathersbbq.com", "handicap": null, "phone": "724-222-9227", "venue_name": "Hogfathers Washington Crown Center", "venue_address": "1500 West Chestnut Street, Washington, PA 15301", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.246061, 40.172387], "type": "Point"}}, {"id": "9857830e-3008-42c9-83d4-743ebfb77d1f", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-379-7559", "venue_name": "Our Lady of the Valley, Donora", "venue_address": "1 Park Manor Rd. Donora, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T11:30:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T11:30:00"}, {"dt_end": "2018-03-30T18:00:00", "dt_start": "2018-03-30T15:00:00"}, {"dt_end": "2018-02-14T18:00:00", "dt_start": "2018-02-14T11:30:00"}, {"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T11:30:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T11:30:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T11:30:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T11:30:00"}], "venue_notes": "Social Hall, 1 Park Manor Road", "etc": "Ash Wednesday and Fridays of Lent, including Good Friday, 11:30 a.m.-6 p.m. (3-6 p.m. Good Friday)", "menu": {"url": null, "text": "Dinner entrees: baked or fried \u201cmonster\u201d fish; breaded jumbo shrimp; crab cakes. Dinners are $12.75, and include entree, choice of french fries or pierogies, cole slaw, dessert and beverage (for dine-in customers). Also, \u201cmonster\u201d baked or fried fish sandwich, with cole slaw is $9.75, and shrimp in a basket (five) with cole slaw is $9.75. A la carte menu includes french fries, pierogies, pasta fagioli with bread, cole slaw, dessert, buns and beverages. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.861272, 40.180659], "type": "Point"}}, {"id": "209e9911-1273-4943-b775-66033337638e", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 141.0, "validated": false, "website": "https://www.facebook.com/CALPost705/", "handicap": null, "phone": "724-632-9591", "venue_name": "Centerville American Legion Post 705", "venue_address": "1101 Old National Pike Fredericktown PA 15333", "venue_type": "Community Organization", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-02T20:00:00-05:00", "dt_start": "2018-03-02T17:00:00-05:00"}, {"dt_end": "2018-03-09T20:00:00-05:00", "dt_start": "2018-03-09T17:00:00-05:00"}, {"dt_end": "2018-02-23T20:00:00-05:00", "dt_start": "2018-02-23T17:00:00-05:00"}, {"dt_end": "2018-02-16T20:00:00-05:00", "dt_start": "2018-02-16T17:00:00-05:00"}, {"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T17:00:00-04:00"}, {"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T17:00:00-04:00"}, {"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T17:00:00-04:00"}], "venue_notes": null, "etc": "EVERY FRIDAY FROM NOVEMBER 11TH - APRIL 21ST", "menu": {"url": "https://www.facebook.com/CALPost705/photos/a.578206219030287.1073741828.334499336734311/602404116610497/?type=3&theater", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.987232, 40.047622], "type": "Point"}}, {"id": "8537aeab-d3c0-4fdf-a26c-1e54fbe7aec1", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://pizzaritapgh.com/", "handicap": null, "phone": null, "venue_name": "Pizzarita", "venue_address": "580 Burchfield Rd., Allison Park, PA", "venue_type": "Restaurant", "alcohol": null, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": "11am-10pm every Friday including Good Friday", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.962887, 40.544537], "type": "Point"}}, {"id": "f73673fe-182e-45f9-93b0-2ae39324db07", "properties": {"lunch": true, "homemade_pierogies": false, "cartodb_id": 179.0, "validated": false, "website": "http://www.stgregoryrussianchurch.org/", "handicap": null, "phone": "412-462-8256", "venue_name": "St Gregory Russian Orthodox Church", "venue_address": "214 E. 15th Ave, Homestead, PA 15120", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-23T17:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-16T17:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-02-16T17:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-02-23T17:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-03-30T17:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-02T17:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}, {"dt_end": "2018-03-09T17:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}], "venue_notes": null, "etc": "Homemade Cheregies!", "menu": {"url": "http://www.stgregoryrussianchurch.org/fish-fry-english/", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.905097, 40.402733], "type": "Point"}}, {"id": "b4b45314-6da3-431a-a200-eb157a9838c3", "properties": {"lunch": true, "homemade_pierogies": null, "validated": false, "website": "http://coyspizza.com/", "handicap": null, "phone": "724-463-9449", "venue_name": "Coy's Store & Pizza Shop", "venue_address": "11919 U.S. 422 Penn Run, PA 15765", "venue_type": "Unsure / N/A", "alcohol": null, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": "Is there a Fish Fry here?", "menu": {"url": "http://coyspizza.com/our-menu/", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-78.962238, 40.572312], "type": "Point"}}, {"id": "b1d10957-1b29-4f47-a31f-09fdaec72455", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://www.rileyspourhouse.com/", "handicap": null, "phone": "412.279.0770", "venue_name": "Riley's Pour House", "venue_address": "215 East Main Street, Carnegie, Pennsylvania 15106, United States", "venue_type": "Restaurant", "alcohol": true, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "11am-1am every Friday including Good Friday", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.085221, 40.408625], "type": "Point"}}, {"id": "2676cd35-5f24-40ac-9c73-877380054e24", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 93.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Fairmont-Hahntown VFD", "venue_address": "890 Rose St, Irwin, PA 15642", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.722499, 40.3162], "type": "Point"}}, {"id": "7506ce61-90fe-4cee-8915-3fe411ac3d29", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 148.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Larimer VFD", "venue_address": "1340 Brownstown Rd., Larimer, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.72572, 40.344486], "type": "Point"}}, {"id": "1885d00c-6343-4b7b-bc26-b053b29d45f2", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "stagneswm.com", "handicap": null, "phone": "Takeout available; call 412-466-9695.", "venue_name": "St. Agnes/Holy Trinity", "venue_address": "Holy Trinity Church Social Hall, 529 Grant Avenue Ext West Mifflin, PA 15122-3830", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T18:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": "Ash Wednesday and Fridays of Lent, including Good Friday, 11 a.m.-6 p.m. ", "menu": {"url": null, "text": "Fried and baked fish dinners and sandwiches, shrimp and crab cake dinners; pierogies; haluski; homemade soups of the day."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.86589, 40.370546], "type": "Point"}}, {"id": "f0c36b5c-f4cc-45d8-8036-9b8ab8190195", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 15.0, "validated": false, "website": "https://facebook.com/holyspiritchurch/", "handicap": null, "phone": "412-346-0477", "venue_name": "Holy Spirit (West Mifflin)", "venue_address": "2603 Old Elizabeth Road, West Mifflin, Pa 15122", "venue_type": "Church", "alcohol": null, "take_out": null, "email": "19201@diopitt.org", "events": [{"dt_end": "2018-02-14T19:00:00-05:00", "dt_start": "2018-02-14T11:00:00-05:00"}], "venue_notes": null, "etc": "Ash Wednesday 11a to 7p", "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.93331, 40.348065], "type": "Point"}}, {"id": "759c08ca-c957-4b1e-ad98-748165e27b16", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "http://miraculousmedalchurch.org/", "handicap": null, "phone": "724-228-8575", "venue_name": "Our Lady of the Miraculous Medal, Meadow Lands", "venue_address": "300 Pike St, Meadow Lands, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}], "venue_notes": null, "etc": "Ash Wednesday and Fridays of Lent, except Good Friday, 11 a.m.-7:30 p.m. Call 724-228-8575 for takeout. Online orders via website.", "menu": {"url": "http://miraculousmedalchurch.org/CCD-Events-Hall/Fish-Fry", "text": "Menu features Panko breaded cod, deep-fried in heart healthy tri-fry oil that is cholesterol- and trans fat-free. Other healthier options include baked cod or salmon, Maine lobster rolls and tuna melts. Also featuring homemade crab cakes, jumbo shrimp, and cabbage and noodles. Back by popular demand is seafood pizza. Side orders include green beans, baked potatoes, french fries, cole slaw, and macaroni and cheese. Featuring breads from Breadworks and homemade desserts."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.220646, 40.219197], "type": "Point"}}, {"id": "927dd613-4653-4fa5-835c-b717071f348d", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.st-therese.net/", "handicap": null, "phone": "412-462-8164", "venue_name": "St. Therese of Lisieux, Munhall", "venue_address": "3 Saint Therese Court, Homestead, Pennsylvania 15120, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T15:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T15:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T15:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T15:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T15:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T15:30:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:30:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Menu includes fried and baked fish, shrimp, homemade crab cakes, soup and more."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.90053, 40.38804], "type": "Point"}}, {"id": "d2d8ad1c-69da-48e2-8a11-6ad83d760208", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 254.0, "validated": false, "website": "hanovervfd45.com", "handicap": null, "phone": "724-729-3929", "venue_name": "Hanover Volunteer Fire Department Fish Fry", "venue_address": "9 Starck Drive, Burgettstown, PA 15021", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00-05:00", "dt_start": "2018-02-14T11:00:00-05:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}], "venue_notes": null, "etc": "Delivery available", "menu": {"url": null, "text": "Fish Dinner with Cole Slaw and One Side - $12.00\nShrimp Dinner with Cole Slaw and One Side - $12.00\nFish Sandwich - $10.00\nShrimp Basket - $10.00\nChicken Sandwich - $5.00\nMac and Cheese - $3.00\nHaluski - $3.00\nFrench Fries - $3.00\nPierogies (4) - $3.00\nCole Slaw - $3.00\nDrinks - $1.00"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.393425, 40.380792], "type": "Point"}}, {"id": "dfe8357e-7aae-4782-98ea-e8856aa7770c", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "412-276-1011 ext 220", "venue_name": "St Elizabeth Ann Seton, Carnegie", "venue_address": "330 3rd Ave, Carnegie, PA 15106", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:30:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:30:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": "In St Luke Hall", "etc": "For phone orders, call 412-276-1011, ext. 220, from 11 a.m.-6 p.m.", "menu": {"url": null, "text": "Dinner menu: fish trio (fried fish, shrimp, crab cake), baked or fried fish, jumbo shrimp, crab cakes (served with fries, cole slaw, roll and butter); macaroni and cheese with stewed tomatoes; pierogies (served with cole slaw, roll and butter); fish Parmesan (served with pasta marinara, and roll and butter). A la carte menu: baked and fried fish sandwich, crab cakes, popcorn shrimp, pierogies, french fries, pasta marinara, haluski, macaroni and cheese, stewed tomatoes, applesauce, cole slaw, clam chowder, potato soup. Also featuring homemade desserts and other treats. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.091003, 40.403918], "type": "Point"}}, {"id": "654fc9a4-189a-42f9-b59c-f9f66d2e7995", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/Geeseytown-Community-Fire-Company-1531587100412091/", "handicap": null, "phone": "(814) 695-8003", "venue_name": "Geeseytown Community Fire Company", "venue_address": "215 Mary Street, Hollidaysburg, Pennsylvania 16648, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T15:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T15:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T15:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T15:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T15:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T15:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": null, "etc": "Fridays of Lent, 3-7 including Good Friday", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-78.345659, 40.450352], "type": "Point"}}, {"id": "e6eb3a9f-c4a1-4b2e-b946-ff009183baf5", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "http://www.princeofpeacepittsburgh.org/", "handicap": null, "phone": "412-481-8380", "venue_name": "ASH WEDNESDAY AND GOOD FRIDAY ONLY Prince of Peace, South Side ", "venue_address": "81 S. 13th St. Pittsburgh, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T14:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T14:00:00"}], "venue_notes": null, "etc": "ASH WEDNESDAY AND GOOD FRIDAY ONLY. Takeout is available, but no advance orders taken. For information, call 412-481-8380 or visit www.princeofpeacepittsburgh.org. ", "menu": {"url": null, "text": "Menu: fish (baked or fried) or crab cake, with applesauce or cole slaw, two sides, dessert, coffee or tea, $9; fish (baked or fried) or crab cake sandwich, with applesauce or cole slaw, $6. Pierogies are three for $2.50, or $7 per dozen (frozen). "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.985145, 40.428951], "type": "Point"}}, {"id": "900c2073-a818-4ed7-9e58-1e4b1a125d67", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 53.0, "validated": false, "website": "http://www.stvictors.org/", "handicap": null, "phone": "724-265-4017", "venue_name": "Transfiguration/St. Victor, Bairdford", "venue_address": "527 Bairdford Road Bairdford, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T12:00:00-05:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T12:00:00-04:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T12:00:00-05:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T12:00:00-04:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T12:00:00-05:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T12:00:00-05:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T12:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://uploads.weconnect.com/mce/a4c36ded9dbf60a5a9dceb0d0a1e3b17ac92f8cf/2017%20FF%20Menu.pdf", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.873401, 40.633742], "type": "Point"}}, {"id": "0b1c1528-fc44-44f2-8865-d03d0c7a4cde", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "724-628-0900", "venue_name": "Connellsville Twp. VFD", "venue_address": "905 Fireman Street, Connellsville, Pennsylvania 15425, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T14:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T14:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T14:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T14:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T14:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T14:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T14:00:00", "dt_start": "2018-03-30T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "Lunch 11-2 and Dinner 4-7 every Friday of Lent including Good Friday", "menu": {"url": "https://www.facebook.com/564084873610128/photos/a.666221240063157.1073741827.564084873610128/1799858140032789/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.58451, 40.02847], "type": "Point"}}, {"id": "36c89f38-0fe1-40d7-a692-46caff889c52", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "https://www.assumptionchurch.org/", "handicap": true, "phone": "412-766-9727", "venue_name": "Assumption", "venue_address": "45 North Sprague Avenue, Bellevue, PA 15202", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "McGovern hall under the church", "etc": "Credit cards accepted. Voted one of the \u201cElite Eight\u201d fish fries in Pittsburgh region in 2017 and known for generous portions. Assumption Church (Bellevue) is handicapped accessible. There is a ramp that leads from North Jackson Avenue (behind the church) to our McGovern Hall. Bathrooms handicapped accessible too.\r\n", "menu": {"url": null, "text": "Menu features hand-breaded fish and cole slaw made from scratch. Traditional Eastern European sides offered, with homemade desserts available. Also, low-carb dinner available. Cost is $11 for adults, $3 for child and $8 for sandwich, with various a la carte items sold. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.05727, 40.497425], "type": "Point"}}, {"id": "f02a0177-4c0f-43ce-8b51-bcb388f8192d", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": null, "venue_name": "St. Fidelis, Butler", "venue_address": "125 Buttercup Road, Butler, Pennsylvania 16001, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-09T19:00:00", "dt_start": "2018-02-09T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "Guests dining in should use upper CCD building doors. Guests in need of handicap access and with takeout order should use center parish hall doors.\r\n", "etc": "Fridays, Feb. 9-March 23, 4-7 p.m. Proceeds benefit various ministries in support of Butler community. ", "menu": {"url": null, "text": "Dinner menu, choice of deep-fried or baked fish, scalloped potatoes or french fries, green beans, cole slaw, bread and butter, beverage and dessert. Cost: $10 adults, $5 children age 10 and under, free for child under 2. All takeout is $10. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.971124, 40.847453], "type": "Point"}}, {"id": "1c7f482b-350b-4099-a303-cd77f1eb127c", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "(412) 241-2218", "venue_name": "Penn Hills Bar and Grill", "venue_address": "11507 Frankstown Road, Pittsburgh, Pennsylvania 15235, United States", "venue_type": "Restaurant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "Please contact the restaurant for details.", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.831279, 40.465289], "type": "Point"}}, {"id": "ff4e8f5f-626b-4829-9e7c-313d6915592e", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://www.renesrestaurant.net/", "handicap": null, "phone": "412-823-9544", "venue_name": "Rene's", "venue_address": "1030 Fifth Avenue East McKeesport, PA", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-02T22:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T22:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T22:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T22:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T22:00:00", "dt_start": "2018-03-30T11:00:00"}, {"dt_end": "2018-02-16T22:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T22:00:00", "dt_start": "2018-02-23T11:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Full Lenten menu, including 1-lb fish sandwich"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.810268, 40.383], "type": "Point"}}, {"id": "a1964198-66ec-44a4-8676-1092dc1f8e28", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 249.0, "validated": false, "website": "https://www.facebook.com/Hills-Restaurant-117576318259711/", "handicap": null, "phone": "724-258-5422", "venue_name": "Hills Restaurant", "venue_address": "107 Main St, New Eagle, PA 15067", "venue_type": "Restaurant", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-02T20:00:00-05:00", "dt_start": "2018-03-02T10:00:00-05:00"}, {"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T10:00:00-04:00"}, {"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T10:00:00-04:00"}, {"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T10:00:00-04:00"}, {"dt_end": "2018-03-09T20:00:00-05:00", "dt_start": "2018-03-09T10:00:00-05:00"}, {"dt_end": "2018-02-23T20:00:00-05:00", "dt_start": "2018-02-23T10:00:00-05:00"}, {"dt_end": "2018-02-16T20:00:00-05:00", "dt_start": "2018-02-16T10:00:00-05:00"}], "venue_notes": null, "etc": " Fresh Hand Breaded Haddock, Tuna Salad, Cabbage and Homemade Dumplings, Homemade Mac and Cheese, Salmon Patties, Lobster Bisque, Shrimp n a Basket, and lots more.", "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.940977, 40.206987], "type": "Point"}}, {"id": "2c8cdc0f-e8eb-446d-84b9-7d0b8e1f0b58", "properties": {"lunch": false, "homemade_pierogies": false, "cartodb_id": 60.0, "validated": false, "website": "http://www.slserie.org/", "handicap": null, "phone": "814-825-7105 ", "venue_name": "St. Luke", "venue_address": "421 East 38th Street. Erie PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T17:00:00-05:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T17:00:00-05:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T17:00:00-05:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T17:00:00-05:00"}], "venue_notes": "St Luke Cafe", "etc": "Takeout available after 5pm. 50-50 and Gift Basket Raffle. Hosted by the Knights of Columbus, Msrg. Robert D Goodill Council 11229", "menu": {"url": null, "text": "Fish Dinner - 10. Captains Platter - 12 Shrimp Basket - 7"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.057136, 42.105262], "type": "Point"}}, {"id": "ef5c900d-429c-495b-a45f-cb80f9983736", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 81.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Hookstown Volunteer Fire Department", "venue_address": "102 Silver Slipper Rd Hookstown, Pennsylvania", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.475548, 40.58616], "type": "Point"}}, {"id": "2fe029cf-fe2c-4184-b978-1551768b3dd2", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": null, "venue_name": "St. Philip- Ascension Worship Site", "venue_address": "114 Berry St., Pittsburgh, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}, {"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}], "venue_notes": "Venue is located in Connor Hall of Ascension Church", "etc": "no phone orders taken", "menu": {"url": null, "text": "fish sandwich; fish sandwich dinner; baked fish dinner; jumbo shrimp dinner; homemade crab cake dinner; seafood dinner; macaroni and cheese; green beans; grilled cheese; salad; soup; haluski; desserts; beverages. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.068625, 40.449117], "type": "Point"}}, {"id": "ca655f0a-75c6-4562-9d89-3eb635dcfd9b", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://www.mostholynameofjesusparish15212.org/", "handicap": null, "phone": null, "venue_name": "Most Holy Name", "venue_address": "1515 Tinsbury Street, Pittsburgh, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "school hall", "etc": "When: every Friday throughout Lent except Good Friday\r\nTimes: 4-7 p.m.", "menu": {"url": null, "text": "Dinner menu, $10: fried or baked cod; crab cakes (two); breaded jumbo shrimp (six). Dinners come with choice of two sides (french fries, homemade macaroni and cheese, homemade cole slaw, applesauce, stewed tomatoes), homemade dessert, beverage (for dine-in only). A la carte menu and takeout available"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.983391, 40.464242], "type": "Point"}}, {"id": "4b1c2c2c-7904-4f32-a15b-96ccba3137ba", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/AdamsburgVfd", "handicap": null, "phone": "724-527-2180", "venue_name": "Adamsburg VFD", "venue_address": "495 Edna Rd, Adamsburg, Pennsylvania 15611", "venue_type": "Fire Department", "alcohol": false, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-14T13:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T13:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T13:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T13:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T13:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T13:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T13:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T13:00:00", "dt_start": "2018-03-30T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "Joint Fish Fry w/ the High Park Volunteer Fire Department ", "menu": {"url": null, "text": "See their Facebook page (https://www.facebook.com/AdamsburgVfd) for the complete menu."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.655381, 40.307082], "type": "Point"}}, {"id": "6d798953-08af-4bca-bd2a-798669bef76c", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "http://www.stmaryorthodoxchurch.net/", "handicap": null, "phone": "412-431-6428", "venue_name": "St. Mary Orthodox Church", "venue_address": "105 S. 19th St. Pittsburgh, PA 15203", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": "church hall", "etc": "When: Fridays - Feb. 16 through Good Friday\r\nTimes: 11am to 7pm\r\n", "menu": {"url": null, "text": "Fish Sandwich \u2013 $6.00\r\nChoice of fries, cole slaw, or applesauce\r\nShrimp \u2013 $7.00\r\nChoice of fries, cole slaw, or applesauce\r\nBaked Fish \u2013 $6.00\r\nGreek Salad \u2013 $5.00\r\nCrab Cake \u2013 $5.00\r\n3 Pierogi \u2013 $3.00\r\nHalushki \u2013 $3.00\r\nMac & Cheese \u2013 $3.00\r\nPop or Water \u2013 $1.00\r\nVarious deserts\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.978952, 40.42808], "type": "Point"}}, {"id": "3aa8feb1-98ca-4663-89e4-2fe4de8d8b40", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "http://sdpolishdeli.com/sdpolishdeli/", "handicap": true, "phone": "412-281-2906", "venue_name": "S&D Polish Deli", "venue_address": "2204 Penn Avenue, Pittsburgh, Pennsylvania 15222, United States", "venue_type": "Restaurant", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T15:00:00", "dt_start": "2018-02-16T12:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T15:00:00", "dt_start": "2018-02-23T12:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T15:00:00", "dt_start": "2018-03-02T12:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T15:00:00", "dt_start": "2018-03-09T12:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T15:00:00", "dt_start": "2018-03-16T12:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T15:00:00", "dt_start": "2018-03-23T12:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T15:00:00", "dt_start": "2018-03-30T12:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "Limited street parking available", "etc": null, "menu": {"url": "https://www.facebook.com/sdpolishdelipittsburgh/photos/rpp.544254162312994/1801789979892733/?type=3&theater", "text": "All platters come with coleslaw and haluszki or 3 pierogi or mac 'n cheese\r\nBaked Fish Platter - $12\r\nFried Fish Platter - $12\r\nMeatless Stuffed Cabbage Platter - $12\r\nPotato Pancake Platter - $12\r\n\r\nA la carte\r\nFried Fish Sandwich - $8\r\nMushroom Stuffed Cabbage - $4\r\n4 Pierogi - $5\r\n12 Pierogi - $11\r\nHaluszki - $6 Large, $3 Small\r\nMac 'n Cheese - $5 Large, $3 Small\r\n2 Potato Pancakes - $5\r\nColeslaw - $5 large, $3 small\r\nSoup of the Day - $4\r\nDessert of the Day - $5\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.981878, 40.452261], "type": "Point"}}, {"id": "9cf89226-6c72-43fe-8bf5-f8c7d63f9c7f", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://saintalphonsuswexford.org/", "handicap": null, "phone": "724-766-0420 and 878-208-3192", "venue_name": "St. Alphonsus (Wexford)", "venue_address": "201 Church St. Wexford, Pa. 15090", "venue_type": "Church", "alcohol": null, "take_out": true, "email": "N/A", "events": [{"dt_end": "2018-02-14T19:30:00", "dt_start": "2018-02-14T16:30:00"}, {"dt_end": "2018-02-16T19:30:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:30:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:30:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:30:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:30:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:30:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-03-30T19:30:00", "dt_start": "2018-03-30T15:30:00"}], "venue_notes": "Served in the school cafeteria.", "etc": "Ash Wednesday (Feb. 14) \u2014 Takeout only from 4:30 p.m. to 7:30 p.m. The brown-bag dinner includes a fish sandwich, macaroni and cheese and coleslaw. The price is $8. To order takeout, call 724-766-0420 or 878-208-3192 between 2 p.m. and 7 p.m. \r\nor visit www.fish-fry.org (website will be activated by Ash Wednesday)", "menu": {"url": "http://saintalphonsuswexford.org/fish-fry-2016-whats-on-the-menu-how-do-i-order-takeout/", "text": "Adult Dinners = $10\r\nKids Dinners = $2\r\n\r\nDine-in Dinners include:\r\n*Fried Fish or Baked Fish or Fried Shrimp or Fish Sandwich (Baked or Fried)\r\nMac & Cheese or French Fries or Baked Potato\r\nColeslaw or Applesauce\r\nClam Chowder or Tomato Florentine (not included in kid\u2019s meal)\r\nBeverage and Bread\r\n\r\n* We use Atlantic Cod because it is so delicious!\r\n\r\nTake-out Dinners (Adult meals only)\r\nFried Fish or Baked Fish or Fried Shrimp or Fish Sandwich (Fried or Baked)\r\nMac & Cheese or French Fries or Baked Potato\r\nColeslaw or Applesauce\r\nClam Chowder or Tomato Florentine\r\n\r\n\u00c1 La Carte Items\r\nBasket of Fried Shrimp = $6\r\nFish Sandwich (Fried or Baked) = $6\r\nFish by 8-oz. piece (Fried or Baked) = $6\r\nFish by pound (Fried or Baked) = $11\r\nMac & Cheese = $1.50\r\nFrench Fries = $1.50\r\nBaked Potato = $1.25\r\nColeslaw = $1.50\r\nApplesauce = $1.00\r\nClam Chowder (8 oz.) = $2.50\r\nTomato Florentine (8 oz.) = $2.50\r\nExtra Bun = 50 cents\r\nAssorted Desserts = $1"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.057339, 40.627681], "type": "Point"}}, {"id": "e08fb241-d823-4d0e-a54b-68ae67b93869", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 4.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "St. Albert the Great (Baldwin)", "venue_address": "3171 Churchview Ave. Pittsburgh, PA 15227", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.961604, 40.386654], "type": "Point"}}, {"id": "a46e34c4-1bef-49cc-959b-2e356dad719c", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://www.holyspiritmillvale.org", "handicap": null, "phone": "412-821-4424", "venue_name": "Holy Spirit (Millvale) - GOOD FRIDAY ONLY", "venue_address": "608 Farragut Street Millvale, PA 15209", "venue_type": "Church", "alcohol": null, "take_out": true, "email": "office@holyspiritmillvale.org", "events": [], "venue_notes": null, "etc": "Good Friday only, Take-out: 7 am-6 pm; Eat-in: 11 am-6:30 pm", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.976049, 40.480066], "type": "Point"}}, {"id": "c4f85313-7d07-4804-9f5e-c7f8f7b0b95c", "properties": {"lunch": null, "homemade_pierogies": true, "validated": true, "website": "http://www.stjohnthebaptistparish.net/", "handicap": null, "phone": "412-793-0555, ext. 241", "venue_name": "St. John the Baptist, Plum", "venue_address": "418 Unity Center Road, Pittsburgh, Pennsylvania 15239, United States", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T02:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T00:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T00:00:00"}], "venue_notes": "In school cafeteria.", "etc": "Live entertainment Feb. 16, March 2 and 16. Recorded music Feb. 23, March 9 and 23.", "menu": {"url": null, "text": "Regular menu includes baked or fried fish dinner (with or without bun). Fish dinners include cole slaw, beverage and choice of two sides: macaroni and cheese, french fries, haluski or green beans. Children have the choice of macaroni and cheese or pizza for their entree, and choice of one side. Dinners are $10 for adults, $4 for children. A la carte menu includes baked or fried fish sandwich for $7, plus a variety of sides (prices vary). Have a large group? You are covered with family special that includes four sandwiches (baked or fried), four cole slaws and choice of two large sides (listed above) for $35. An array of desserts will be available, as well as beer and wine. Weekly special menu, which includes beverage and choice of two sides, $10: Feb. 16, lasagna; Feb. 23, homemade pierogies; March 2, crab cakes; March 9, ravioli; March 16, fried shrimp; March 23, rigatoni. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.776601, 40.487594], "type": "Point"}}, {"id": "95083a5d-2e85-49c7-b6b5-16f4f3d6d4d1", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 70.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "PJ's Deli", "venue_address": "Bower Hill at McLaughlin Run, Bridgeville, PA", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T15:00:00-04:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T15:00:00-05:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T15:00:00-05:00"}, {"dt_end": "2018-02-14T18:00:00-05:00", "dt_start": "2018-02-14T09:00:00-05:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T15:00:00-05:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T15:00:00-04:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T15:00:00-05:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T15:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.105278, 40.35834], "type": "Point"}}, {"id": "e0d83e4c-5f06-4c2a-9fb3-c1340bb2a180", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": null, "venue_name": "St. Robert Bellarmine", "venue_address": "1313 Fifth Avenue, North Versailles, Pennsylvania 15137, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "Sponsored by parish's Men's Club.", "menu": {"url": null, "text": "Menu: fish dinner, $10, includes choice of baked or fried fish, shrimp or crab cake; choice of one side (french fries, pierogies, haluski), cole slaw or applesauce and dinner roll (sandwich bun available for additional 50 cents); children\u2019s fish dinner, $5.50 (smaller portion of adult fish dinner); fish sandwich, $8; grilled cheese sandwich, $1. Side dish menu, $2 each: fresh-cut french fries; pierogies; haluski. Hushpuppies, three for $1. Also featuring desserts and ice cream, with free ice cream for children 12 and under. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.812754, 40.378566], "type": "Point"}}, {"id": "11ef3b38-9e2e-42d6-9dc3-ddcda2189fd9", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "http://ruralridgevfd.org/", "handicap": null, "phone": "(724) 265-4000", "venue_name": "Rural Ridge Fire ", "venue_address": "135 Little Deer Creek Road, Rural Ridge, PA 15075", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T15:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T15:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T15:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T15:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T15:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T15:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": null, "etc": "When: Every Friday during Lent beginning February 16th including Good Friday\r\nTimes: 3 p.m. to 7 p.m.", "menu": {"url": null, "text": "Fish Combo Plain or With Cheese (Cole Slaw and Fries) $10.00\r\nFish Sandwich (Plain or Cheese) $ 7.00\r\nShrimp Basket (8 Pieces of Shrimp and Fries) $8.00\r\nShrimp (8 Pieces) $6.00\r\nChicken Basket ( 3 Chicken Strips and Fries) $7.00\r\nChicken Strips (3 Pieces) $5.00\r\nHaluski / Macaroni and Cheese / Fresh Cut Fries $3.00 Each\r\nCole Slaw $2.00 Deviled Crab $2.50\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.82866, 40.58562], "type": "Point"}}, {"id": "50d94de6-67d5-44ba-b237-82caea009ef2", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/hillervfc/", "handicap": null, "phone": "(724) 785-9793", "venue_name": "Hiller Volunteer Fire Company", "venue_address": "911 1st Street, Hiller, Pennsylvania 15444, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T20:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": "Ash Wednesday and every Friday of Lent 11am-8pm including Good Friday", "menu": {"url": "https://www.facebook.com/hillervfc/photos/rpp.715401925138294/1838493036162505/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.902608, 40.010286], "type": "Point"}}, {"id": "a8bb0921-c59a-4679-8752-50764f1282a2", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": " (814) 755-4321", "venue_name": "St. Anthony Church", "venue_address": "112 Bridge Street, Tionesta, Pennsylvania 16353, United States", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": "St. Anthony social hall", "etc": "When: Fridays - Feb. 16th thru Mar. 23th", "menu": {"url": null, "text": "Cost: $10.00 or $11.00\r\nMenu:\r\nFried or baked fish\r\nChoice of baked potato, Mac. & cheese or French fries\r\nAssorted cakes\r\nCole slaw or applesauce\r\nBeverages\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.457597, 41.493547], "type": "Point"}}, {"id": "940d81e5-589e-4005-a093-07081582a794", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://www.alpost712pa.org/", "handicap": null, "phone": "(412) 653-1555", "venue_name": "American Legion Post 712", "venue_address": "650 Old Clairton Road, Pleasant Hills, Pennsylvania 15236, United States", "venue_type": "Community Organization", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T20:00:00", "dt_start": "2018-02-14T12:00:00"}, {"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T12:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T12:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T12:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T12:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T12:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T12:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T12:00:00"}], "venue_notes": null, "etc": "When: Ash Wednesday & every Friday throughout Lent including Good Friday\r\nTimes: 12PM TO 8PM", "menu": {"url": null, "text": "Menu & Cost:\r\nFish sandwich and slaw 8.95\r\nJumbo shrimp and slaw 10.95\r\nGrilled cheese sandwich 4.00\r\nClam chowder soup 4.00\r\nSIDES\r\nCole slaw 2.00\r\nMac & cheese 3.00\r\nFries 3.00\r\nHaluski 3.00\r\nStewed tomatoes 2.00\r\n(4) Pierogies 3.00\r\nCONDIMENTS\r\nTartar & cocktail sauces\r\nKetchup\r\nHot sauce\r\nExtra cheese .75\r\nExtra bun .75\r\nTake-out charge .50\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.958014, 40.324625], "type": "Point"}}, {"id": "014f4364-bbaa-4d22-a1eb-54b1d17c10a7", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "(724) 694-3118", "venue_name": "Ladies Auxiliary and the Derry Volunteer Fire Co #41", "venue_address": "100 West 2nd Avenue, Derry, Pennsylvania 15627, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T15:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T15:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T15:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T15:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T15:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T15:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T15:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": "AV Germano Hall", "etc": "When: Ash Wednesday & every Friday throughout Lent\r\nTimes: 3 - 7pm including Good Friday", "menu": {"url": null, "text": "Dinner $10 Includes:\r\nFish \u2013 Bakes or Fried or 5 Shrimp and choice of 2: Pierogi, Halushki, Mac N Cheese, Twice Baked Potato or Coleslaw, Dessert and a drink\r\nAla Carte:\r\nFish sandwich $6.00\r\n(5) Shrimp $5.00\r\nBaked Fish $5.00\r\nPierogi (3) $2.50\r\nHalushki $2.50\r\nMac n Cheese $2.50\r\nTwice Baked Potato $2.50\r\nColeslaw $1.00\r\nDessert $2.00\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.302356, 40.330408], "type": "Point"}}, {"id": "2b92a4d5-7aef-47b1-8a23-b3bc9b0cde72", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://www.thepubinthepark.com/", "handicap": null, "phone": "412-241-9242", "venue_name": "Pub in the Park", "venue_address": "7034 Blackhawk Street, Pittsburgh, Pennsylvania 15218, United States", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": "Non-smoking. Open 11am-2am.", "menu": {"url": "https://www.facebook.com/Pubinthepark7034/photos/a.1549920871928302.1073741829.1548955355358187/2003365433250508/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.897564, 40.421372], "type": "Point"}}, {"id": "edd3ecf4-1f8a-4576-89f1-f3a115d40ee1", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://originaloysterhousepittsburgh.com/", "handicap": null, "phone": "412-566-7925", "venue_name": "Original Oyster House", "venue_address": "20 Market Square, Pittsburgh, PA 15222", "venue_type": "Restaurant", "alcohol": true, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": "http://originaloysterhousepittsburgh.com/Menu", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.001995, 40.440974], "type": "Point"}}, {"id": "b41fe54f-3fe7-4a40-8367-983e739f5686", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "412-431-4000", "venue_name": "Shiloh Grill", "venue_address": "123 Shiloh Street, Pittsburgh, PA", "venue_type": "Unsure / N/A", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": "Begins Ash Wednesday February 14. Offered every day through Good Friday.\r\n11:30 AM - 10 PM\r\n\r\nMonongahela Mullet Fish Sandwich Served with Fries or Coleslaw $10.88; we also serve pierogies (which aren't made in house, but are the same that are available at S & D Polish Deli).", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.006991, 40.430918], "type": "Point"}}, {"id": "617088d8-e18c-4c08-b139-44352c41dd3f", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 119.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Mahoning Township VFD", "venue_address": "570 Jackson St Edinburg, Pennsylvania", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.434998, 41.014327], "type": "Point"}}, {"id": "9bb85b0e-82c3-46df-8774-bc17f82d79c6", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": null, "venue_name": "St. Michael the Archangel, Butler - ASH WEDNESDAY ONLY", "venue_address": "432 Centre Avenue, Butler, Pennsylvania 16001, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}], "venue_notes": "parish hall", "etc": "Ash Wednesday, Feb. 14, 4-7 p.m.", "menu": {"url": null, "text": "Menu includes baked or deep-fried fish, scalloped potatoes, green beans, cole slaw, bread and butter, dessert and beverage. Cost: $10 adult, $5 child ages 6-10; free for children 5 and under; $10 for all takeout (no fried fish)."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.88807, 40.85363], "type": "Point"}}, {"id": "d36b1fcc-006f-4d04-9f9c-0dee978ca17b", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 76.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Patterson Township Vol. Fire Co.", "venue_address": "407 Darlington Rd, Beaver Falls, PA 15010", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.333821, 40.745071], "type": "Point"}}, {"id": "7581737c-bf09-451d-8fe0-8d97acbbd632", "properties": {"lunch": true, "homemade_pierogies": true, "cartodb_id": 67.0, "validated": false, "website": null, "handicap": null, "phone": "724-489-0500", "venue_name": "Holy Ghost Byzantine Catholic Church", "venue_address": "828 Meadow Ave. Charleroi PA 15022", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-09T18:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-02-16T18:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-02-23T18:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-03-23T18:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}], "venue_notes": null, "etc": "Eat in or take out. ON THE DAY OF THE SALES, Please call the social hall for takeout orders at 724-489-0500", "menu": {"url": null, "text": "Fresh breaded one pound fish sandwich. Pirogi. Choice of frozen cabbage pirogi and or frozen lekvar. Cooked potato cheese with butter and onions or can buy frozen. We will be featuring ethnic lenten dishes on these dates.. Soups.. Lima Bean , NE Clam chowder; Halushki, Potato Pancakes, Coleslaw Macaroni with green peppers in tomato sauce. ***There will be different soups and specials for each week*** Also we will be selling Paska Bread for Easter.. (Can call ahead for advance orders)Call by March 12th and pick up on April 7th. Call to order Paska 724-258-5720 or 724-777-2092"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.90493, 40.139008], "type": "Point"}}, {"id": "77b793e8-74de-411e-ae2e-d099a9325e24", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://resurrectionmonroeville.wordpress.com/", "handicap": null, "phone": "412-372-8650", "venue_name": "Church of the Resurrection Byzantine", "venue_address": "455 Center Road, Monroeville, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": null, "etc": "FISH FRIES begin on Ash Wednesday Feb 14 and will continue each Friday of Lent except for Good Friday. In addition to our famous fried codfish, we will have baked cod, salmon patties, shrimp, pirohi, haluski, mac & cheese, and lots of baked goods. 4-7 p.m.", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.761257, 40.453849], "type": "Point"}}, {"id": "5d01b593-d53b-46f2-aae2-04755b65c202", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 323.0, "validated": false, "website": "https://www.facebook.com/events/792100320951360/", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Keep Pittsburgh Fishy Annual Secular Fish Fry (Good Friday Only)", "venue_address": "242 51st street, pittsburgh, pa", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-30T21:00:00-04:00", "dt_start": "2018-03-30T17:00:00-04:00"}], "venue_notes": null, "etc": "We're back again, and on the last day of the 2017 fish fry season! Keep Pittsburgh Fishy is an annual secular fish fry benefiting local progressive organizations. Get your fish fry fix while supporting equality! This year, our proceeds will benefit New Voices Pittsburgh, a local organization dedicated to the health and well-being of Black women and girls through leadership development, Human Rights and Reproductive Justice. We'll be partnering with local restaurants to bring you some awesome side dishes to enjoy with our classic fish sandwiches and a delicious vegetarian-friendly option. In addition to that, we'll have a dessert table, raffle, photobooth, drinks, and live entertainment. This is an all-ages event!", "menu": {"url": null, "text": "$10 gets you... - Our classic spiced cornmeal-crusted FISH SANDWICH on a hearty bun with a tasty Sriracha mayo \"tartar\" sauce ~ OR ~ a vegan sun dried tomato hummus/pickled carrots/arugula sandwich prepared by 52nd Street Market http://52ndstreetmarket.com/ - Coleslaw (vegan!), prepared by Apteka http://aptekapgh.com/ - Macaroni & cheese (vegetarian!), prepared by The Vandal http://www.thevandalpgh.com/ Plus, for a few bucks more... - Desserts provided by Ben Houck - Drinks both alcoholic and non from Spirit's fully-stocked bar (don't forget your ID!)"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.955693, 40.47834], "type": "Point"}}, {"id": "cb872074-2d4d-4fdd-a977-15505159bf03", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 321.0, "validated": false, "website": null, "handicap": null, "phone": "304-243-1571", "venue_name": "Stone Church VFD", "venue_address": "621 Stone Church Rd., Wheeling, WV", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T16:00:00-05:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T16:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Coleman's fish; cole slaw, french fries, onion rings, mac and cheese, pierogi, green beans and drinks dine in or take out will be available. "}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.638455, 40.038195], "type": "Point"}}, {"id": "682905d7-30ab-480c-bd79-20c5ea5b29a8", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "https://www.bethany-dormont.com/", "handicap": null, "phone": null, "venue_name": "Bethany Evangelical Lutheran - March 9, 16, 23", "venue_address": "3104 West Liberty Avenue, Pittsburgh, Pennsylvania 15216, United States", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "Enter lower side door on Park Blvd.", "etc": null, "menu": {"url": null, "text": "Menu:\r\nFish (fried or baked)\r\nHomemade clam chowder\r\nHomemade mac and cheese\r\nPierogi\r\nDesserts\r\nRolls\r\nFrench fries\r\nCole slaw\r\nApplesauce\r\nThere is no cost. Donations are optional\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.039408, 40.391406], "type": "Point"}}, {"id": "e996a714-98dd-4ad5-9272-1a77bd14e87b", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/GreenFrontPgh/", "handicap": null, "phone": "412-481-0702", "venue_name": "The Green Front", "venue_address": "2341 East Carson Street, Pittsburgh, Pennsylvania 15203, United States", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": "All you can eat fish or shrimp 3pm-8pm", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.971493, 40.428485], "type": "Point"}}, {"id": "cd9acb3d-03ed-48d7-a82e-dceca431bc96", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "http://www.brodysbbq.com", "handicap": null, "phone": "(814) 938-3344", "venue_name": "Brody's BBQ", "venue_address": "20135 Route 119, Punxsutawney, Pennsylvania 15767, United States", "venue_type": "Restaurant", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T21:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T21:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T21:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T21:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T21:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T21:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T21:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": "Yuengling battered fish sandwich, smoked mac n cheese", "menu": {"url": "http://www.brodysbbq.com/menu.htm", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.002826, 40.90988], "type": "Point"}}, {"id": "11c07934-33f5-405e-8777-d33af7d1b1e8", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "stvincentnewcastle.org", "handicap": true, "phone": "724-652-5538, ext. 6 or8", "venue_name": "St. Vincent de Paul, New Castle", "venue_address": "1 Lucymont Drive, New Castle, Pennsylvania 16102, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T11:00:00"}], "venue_notes": null, "etc": "Fridays of Lent, except Good Friday, 11 a.m.-6 p.m. ", "menu": {"url": null, "text": "Menu: baked or fried fish sandwich, with one piece of signature fish on a bun served with choice of side, $9; baked or fried fish dinner, one piece of signature fish served with two sides of choice, Italian bread, ice cream cup, $10; shrimp basket, order of fried popcorn shrimp with choice of two sides, Italian bread and ice cream cup, $10. Extra sides are $2, and include waffle fries, macaroni and cheese, cabbage and noodles, green beans and cole slaw. Half piece of fried or baked fish on sandwich with choice of one side, plus Italian bread and ice cream cup is $5. Also featuring a fresh baked goods stand every week. Note: beverage is free with dine-in only. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.376773, 40.979502], "type": "Point"}}, {"id": "a7bedef2-8136-4108-b878-302464e8e24c", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/Blairsville.Volunteer.Fire.Department/?rf=216910771719421", "handicap": null, "phone": "(724) 459-8111", "venue_name": "Blairsville Fire Department", "venue_address": "51 West Campbell Street, Blairsville, PA", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "LENTEN DINNERS/ FISH FRY every Friday during Lent.4-7 pm", "menu": {"url": "https://www.facebook.com/Blairsville.Volunteer.Fire.Department/photos/rpp.132337260167867/1565721686829410/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.265356, 40.431776], "type": "Point"}}, {"id": "235cf025-1dae-412d-b76d-56e37b5d2b21", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 219.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Siwiaks HOMEstyle cooking", "venue_address": "737 West Pike Street Houston, PA 15342", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T08:00:00-05:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T08:00:00-05:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T08:00:00-05:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T08:00:00-04:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T08:00:00-05:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T08:00:00-04:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T08:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Fish (cod) jumbo shrimp regular shrimp oysters and other seafoods an more."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.21326, 40.242152], "type": "Point"}}, {"id": "f7b49ba4-b778-4ed6-b197-b7309656b574", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 261.0, "validated": false, "website": null, "handicap": null, "phone": "724-222-1430", "venue_name": "Gabby Inn", "venue_address": "1488 Park Avenue, Washington, PA 15301", "venue_type": "Restaurant", "alcohol": true, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-23T23:45:00-04:00", "dt_start": "2018-03-23T07:00:00-04:00"}, {"dt_end": "2018-03-16T23:45:00-04:00", "dt_start": "2018-03-16T07:00:00-04:00"}, {"dt_end": "2018-02-16T23:45:00-05:00", "dt_start": "2018-02-16T07:00:00-05:00"}, {"dt_end": "2018-03-09T23:45:00-05:00", "dt_start": "2018-03-09T07:00:00-05:00"}, {"dt_end": "2018-03-02T23:45:00-05:00", "dt_start": "2018-03-02T07:00:00-05:00"}, {"dt_end": "2018-02-23T23:45:00-05:00", "dt_start": "2018-02-23T07:00:00-05:00"}, {"dt_end": "2018-03-30T23:45:00-04:00", "dt_start": "2018-03-30T07:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.846948, 40.12535], "type": "Point"}}, {"id": "4ade5d3b-9105-4bf6-87d5-9db4fe6ca3a6", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 59.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "St. Joseph Lucinda", "venue_address": "112 Rectory Ln, Lucinda, PA 16235", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.365143, 41.310899], "type": "Point"}}, {"id": "6c381db2-4f6e-41a7-b708-a26d80d0a349", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 152.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "St. Michael", "venue_address": "85 North High Street, Greenville, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.39651, 41.40634], "type": "Point"}}, {"id": "e432c68c-354f-440e-9dfd-030e20c493ab", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 275.0, "validated": false, "website": "http://www.roadhousech.com/home.html", "handicap": null, "phone": "412-415-1087", "venue_name": "Rupe's Roadhouse", "venue_address": "325 Camp Horne, Pittsburgh, PA 15202", "venue_type": "Restaurant", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-30T23:45:00-04:00", "dt_start": "2018-02-14T00:00:00-05:00"}], "venue_notes": null, "etc": "Ash Wednesday and all Fridays of Lent", "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.090051, 40.51864], "type": "Point"}}, {"id": "1ec6f568-5946-4c7b-be62-dbe9ed49ca37", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "www.madonnadelcastello.org", "handicap": true, "phone": "412-271-3959", "venue_name": "Madonna del Castello, Swissvale", "venue_address": "2021 South Braddock Ave", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T12:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T12:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T12:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T12:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T12:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T12:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T12:00:00"}], "venue_notes": "social hall", "etc": "12-7pm Ash Wednesday and Fridays of Lent, except Good Friday", "menu": {"url": null, "text": "Menu includes baked or fried fish dinner. A la carte menu includes fish, eggplant, haluski, macaroni and cheese, pasta fagiole, applesauce."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.884757, 40.421887], "type": "Point"}}, {"id": "74f654f8-4b2e-4c42-9803-fc1c2e66bdd5", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "www.stgabespgh.org", "handicap": true, "phone": "412-881-0495", "venue_name": "St. Gabriel, Whitehall", "venue_address": "5200 Greenridge Dr, Pittsburgh, Pennsylvania 15236, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "parish hall", "etc": null, "menu": {"url": null, "text": "Menu includes baked orange roughy, hand-breaded cod, shrimp, seafood cakes, haluski, and macaroni and cheese. Cost: adults, $10; child, $3.50; fish sandwich, $7. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.005703, 40.3564], "type": "Point"}}, {"id": "b93e2b7d-811f-44f9-8d92-8bb5392ac92b", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 173.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Cambria Suites - Reflect Bistro and Bar", "venue_address": "451 Racetrack Road, Washington, PA 15301", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.208394, 40.221346], "type": "Point"}}, {"id": "5cf2ef4e-dd9b-44d5-b6ae-1e1852f3e668", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 111.0, "validated": false, "website": "https://www.labriolaitalianmarkets.com/products.asp?cat=23", "handicap": null, "phone": "412-795-3366", "venue_name": "Labriola's Italian Market", "venue_address": "121 Hulton Road Verona, Pa 15147", "venue_type": "Restaurant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": "https://www.labriolaitalianmarkets.com/products.asp?cat=23", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.820114, 40.484554], "type": "Point"}}, {"id": "91523ba5-87cf-4033-857f-a36c24c33cd7", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 142.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Faith Lutheran Church", "venue_address": "6810 Rt. 22 Highway East New Florence, PA. 15944", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.097634, 40.44577], "type": "Point"}}, {"id": "389450c2-db2b-43d9-8404-285a9d0acbd6", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 242.0, "validated": false, "website": "http://hogfathersbbq.com", "handicap": null, "phone": "724-743-3227", "venue_name": "Hogfathers Canonsburg", "venue_address": "113 Cavasina Drive, Canonsburg, PA 15317", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.17428, 40.26255], "type": "Point"}}, {"id": "e4f79b65-016d-4fad-97db-73df104ede2c", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://seasnh.org", "handicap": null, "phone": "724-864-6364", "venue_name": "St. Elizabeth Anne Seton", "venue_address": "200 Leger Road North Huntingdon, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": "Mack Hall", "etc": null, "menu": {"url": "https://stelizannsetonnhpa.files.wordpress.com/2018/01/2018-menu-fish-fry.pdf", "text": "MEALS (come with choice of fries or potato chips AND haluski or slaw AND dessert)\r\n8 oz. Baked Cod Loin - $8\r\nPecan Crusted Tilapia - $8\r\nCountry-fried Fish Fillet - $8\r\nShrimp - $8\r\n\r\nSANDWICHES\r\nGiant Fish Sandwich (Beer Battered) $8\r\n8 oz. Baked Fish Sandwich $6\r\nFried Fish Sandwich $5\r\n\r\nA La Carte\r\n8 oz. Baked Cod Loin - $5\r\nPecan Crusted Tilapia - $4\r\nFried Fish Fillet - $4\r\nTwo Crab Cakes - $4\r\nShrimp - $4\r\nCheese Sticks (w./marinara side) - $3\r\nFrench Bread Pizza - $2.50\r\nHaluski - $2.50\r\nMac 'n Cheese - $2\r\n3 Pierogi - $2\r\nFries or Chips - $1.5\r\nColeslaw - $1.5\r\nBeverage - $1\r\nDessert - $1"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.761435, 40.347939], "type": "Point"}}, {"id": "92ae1e28-1f4c-421a-bcfa-acec8a7cb298", "properties": {"lunch": true, "homemade_pierogies": false, "validated": true, "website": null, "handicap": true, "phone": "724-310-2027", "venue_name": "St. Damien of Molokai, Monongahela", "venue_address": "400 Park Ave, Monongahela, PA 15063", "venue_type": "Church", "alcohol": null, "take_out": true, "email": "stdamienparish@verizon.net", "events": [{"dt_end": "2018-02-14T14:00:00", "dt_start": "2018-02-14T11:30:00"}, {"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T14:00:00", "dt_start": "2018-02-16T11:30:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T14:00:00", "dt_start": "2018-02-23T11:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T14:00:00", "dt_start": "2018-03-02T11:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T14:00:00", "dt_start": "2018-03-09T11:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T14:00:00", "dt_start": "2018-03-16T11:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T14:00:00", "dt_start": "2018-03-23T11:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": null, "etc": "Ash Wednesday and Fridays of Lent, except Good Friday, 11:30 a.m.-2 p.m. lunch, 4-7 p.m. dinner\r\n\r\nParish park (behind Dierken\u2019s Pharmacy at 100 E. Main St.) in Monongahela.", "menu": {"url": null, "text": "Menu includes fish dinners and sandwiches, shrimp, crab cakes, pizza, fresh-cut french fries, macaroni and cheese, cole slaw, haluski, provolone sticks and more."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.9243, 40.198765], "type": "Point"}}, {"id": "9e6c962a-7201-4c24-b145-c4182fc0a22d", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "www.harrisgrill.com", "handicap": null, "phone": "(412) 288-5273", "venue_name": "Harris Grill Downtown", "venue_address": "245 Fourth Av, Pittsburgh, Pennsylvania 15222, United States", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": "Begins Ash Wednesday February 14. Offered every day through Good Friday.\r\n11:30 AM - 10 PM\r\n\r\nMonongahela Mullet Fish Sandwich Served with Fries or Coleslaw $10.88; we also serve pierogies (which aren't made in house, but are the same that are available at S & D Polish Deli).", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.001567, 40.439656], "type": "Point"}}, {"id": "7afcaaa8-7798-4de6-bd35-c6e3e75459a9", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 150.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Pirollos Deli", "venue_address": "307 Hulton Rd, Verona, Pa. 15147", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.819455, 40.489741], "type": "Point"}}, {"id": "6c7437c5-b9f3-4843-9249-6faae5063932", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/groups/stjosepheverson/about/", "handicap": null, "phone": "(724) 887-7013", "venue_name": "Partner Parish of St John the Baptist & St Joseph", "venue_address": "504 South Broadway Street, Scottdale, Pennsylvania 15683, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T11:00:00"}], "venue_notes": "St. John's social hall", "etc": "Ash Wednesday, Fridays in Lent Except Good Friday Times: 11am - 6pm\r\n", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.58761, 40.099392], "type": "Point"}}, {"id": "4a188c26-0ad9-456b-9231-6d5a8c58d9d4", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 42.0, "validated": false, "website": null, "handicap": null, "phone": "412-881-8201", "venue_name": "St. Norbert, Overbrook", "venue_address": "2413 St. Norberts St. Pittsburgh, PA", "venue_type": "Church", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T16:00:00-04:00"}, {"dt_end": "2018-03-23T14:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T16:00:00-05:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T16:00:00-05:00"}, {"dt_end": "2018-03-30T14:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-02T14:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}, {"dt_end": "2018-03-09T14:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-16T14:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": "http://holyapostlesparish.org/wp-content/uploads/2017/03/FishFryMenus17L.pdf", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.994229, 40.382435], "type": "Point"}}, {"id": "ee80096b-8f78-4c7f-af4b-6515a5068c50", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "www.holyspiritmillvale.org", "handicap": true, "phone": "412-874-5470", "venue_name": "Holy Spirit, Millvale - GOOD FRIDAY ONLY", "venue_address": "106 North Avenue, Pittsburgh, Pennsylvania 15209, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-30T18:30:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": "parish lyceum", "etc": null, "menu": {"url": null, "text": "Adult dinner menu includes Icelandic cod, macaroni and cheese, stewed tomatoes, cole slaw, roll, dessert and drink. Shrimp, children\u2019s dinner and fish sandwiches available. Cost is $11 for adults, $8 for child, $7 for sandwich, $1 for each side. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.975448, 40.480418], "type": "Point"}}, {"id": "db3ce72b-adf5-4532-a91a-fddb03901150", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://drive.google.com/file/d/1z6hxBu1uiB-vyp2Uzd7zUo7FBrmXPEfx/view", "handicap": true, "phone": null, "venue_name": "NO FISH FRY IN 2018 St. Stephen, Hazelwood ", "venue_address": "134 East Elizabeth St. Pittsburgh, PA", "venue_type": "Church", "alcohol": false, "take_out": false, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Baked and fried fish dinners include french fries and cole slaw. A la carte menu features fried or baked fish sandwiches, grilled cheese, french fries, macaroni and cheese, haluski and cole slaw. Also featuring bake sale."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.942663, 40.407194], "type": "Point"}}, {"id": "e303cf50-e97d-457f-b8de-538393c7fe05", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "www.stlouisedemarillac.org", "handicap": true, "phone": "412-833-1010", "venue_name": "St Louise de Marillac", "venue_address": "320 McMurray Road, Upper St Clair", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T19:30:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:30:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:30:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:30:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:30:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:30:00", "dt_start": "2018-03-23T16:30:00"}], "venue_notes": "LeGras Parish Hall", "etc": "Fridays in Lent, except Good Friday, 4:30-7:30 p.m. Credit cards accepted. Online ordering available. ", "menu": {"url": null, "text": "Menu includes fried fish, baked fish, homemade lump crab cakes, fish tacos, shrimp, haluski, pizza and more. Also, pasta from local favorite Italian family restaurant Pasta Too. Featuring a variety of different soups, such as crab and shrimp bisque and tomato basil. Desserts provided by Bethel Bakery, Kona Ice and school families."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.071657, 40.315309], "type": "Point"}}, {"id": "32be5b5d-59ad-41ad-916f-b725a6e05050", "properties": {"lunch": true, "homemade_pierogies": true, "cartodb_id": 143.0, "validated": false, "website": "http://www.thepubchipshop.com/", "handicap": true, "phone": "412-381-2447", "venue_name": "The Pub Chip Shop", "venue_address": "1830 E Carson St Pittsburgh, Pennsylvania", "venue_type": "Resturant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": "http://www.thepubchipshop.com/food/", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.979369, 40.428466], "type": "Point"}}, {"id": "88a7564e-8509-4760-aa1c-f94d9399af0e", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 222.0, "validated": false, "website": "www.sthilaryparish.org", "handicap": null, "phone": "724-222-4087", "venue_name": "St. Hilary, Washington", "venue_address": " 320 Henderson Ave, Washington, PA 15301", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-23T11:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-16T18:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-30T18:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}], "venue_notes": null, "etc": "Ash Wednesday and Fridays of Lent, including Good Friday, 11 a.m.-6 p.m. For takeout orders, call 724-222-1381.", "menu": {"url": null, "text": "Menu includes hand-breaded haddock, fried shrimp, french fries, cole slaw, dessert and beverages. Dine-in or takeout. For information, call 724-222-4087 or visit www.sthilaryparish.org."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.266978, 40.188747], "type": "Point"}}, {"id": "e3369376-cb1b-4915-97af-994d775d6c78", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "http://www.mcginnis-sisters.com/", "handicap": true, "phone": "412-882-6400 ", "venue_name": "McGinnis Sisters", "venue_address": "3825 Saw Mill Run Blvd, Pittsburgh, PA 15227", "venue_type": "Market", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T09:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T09:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T09:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T09:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T09:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T09:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T09:00:00"}], "venue_notes": null, "etc": "MON-SAT 9 AM - 7 PM\r\nSUN 9 AM - 6 PM", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.982177, 40.369712], "type": "Point"}}, {"id": "7a778252-3b06-49a8-acd3-8e14e93999ec", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 84.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Doublewide Grill (South Side)", "venue_address": "2339 East Carson Street, Pittsburgh, PA", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.971327, 40.428513], "type": "Point"}}, {"id": "2a702af5-9781-4549-88a2-cb87fb60fac2", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/truck280/", "handicap": null, "phone": "(724) 224-0999", "venue_name": "Highland Hose Volunteer Fire Company", "venue_address": "401 East 8th Avenue, Tarentum, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "upstairs hall", "etc": "When: Ash Wednesday and every Friday during Lent including Good Friday Times: 4-7 pm", "menu": {"url": null, "text": "Dinner (Fish sandwich or shrimp, cole slaw, and one side) $8\r\nFish Sandwich $6\r\nShrimp $6\r\nHomemade Mac n Cheese $4\r\nHomemade haluski $4\r\nFresh cut fries $4\r\nPierogi $4\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.753166, 40.604556], "type": "Point"}}, {"id": "2ce1b600-345a-4f14-8c25-3cbe5a6b4148", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/SaxonburgVFC/", "handicap": null, "phone": "724.352.9948", "venue_name": "Saxonburg Volunteer Fire Company (WEDNESDAYS OF LENT)", "venue_address": "210 Horne Avenue, Saxonburg, Pennsylvania 16056, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-21T15:45:00", "dt_start": "2018-02-21T15:30:00"}, {"dt_end": "2018-02-28T18:30:00", "dt_start": "2018-02-28T16:30:00"}, {"dt_end": "2018-03-07T18:30:00", "dt_start": "2018-03-07T16:30:00"}, {"dt_end": "2018-03-14T18:30:00", "dt_start": "2018-03-14T16:30:00"}, {"dt_end": "2018-03-21T18:30:00", "dt_start": "2018-03-21T16:30:00"}, {"dt_end": "2018-03-28T18:30:00", "dt_start": "2018-03-28T16:30:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.809181, 40.747571], "type": "Point"}}, {"id": "23904793-380a-42fb-b5b3-494685031f53", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-794-2880", "venue_name": "St. Peter, Slippery Rock", "venue_address": "670 South Main Street, Slippery Rock, Pennsylvania 16057, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "church hall", "etc": "Fridays of Lent, including Good Friday, 4-7 p.m.", "menu": {"url": null, "text": "Menu includes fried or baked cod, french fries, macaroni and cheese, pierogies, salad, beverage and dessert. Cost: $10 adult; $8 student; $6 child 12 and under; $15 all-you-can-eat dine-in (no takeout)."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.050693, 41.056428], "type": "Point"}}, {"id": "1a665b06-fea1-4f8d-a69b-f0898a6eb0a3", "properties": {"lunch": true, "homemade_pierogies": false, "validated": true, "website": "http://swissvalefire.org/", "handicap": true, "phone": "4122718787", "venue_name": "Swissvale Fire Department", "venue_address": "7400 Irvine Street, Pittsburgh, PA 15218", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.889398, 40.420674], "type": "Point"}}, {"id": "3c09b62f-a7f6-4f14-af83-ba98acec69f1", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/EmilsLoungePA/", "handicap": null, "phone": "(412) 271-9911", "venue_name": "Emil's Lounge", "venue_address": "414 Hawkins Avenue, Rankin, Pennsylvania 15104, United States", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T10:00:00"}, {"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T10:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T10:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T10:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T10:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T10:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T10:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T10:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/EmilsLoungePA/photos/pcb.1704710062914856/1704709479581581/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.880362, 40.413387], "type": "Point"}}, {"id": "a6de5a01-5197-4159-8213-3f78881489c4", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 250.0, "validated": false, "website": null, "handicap": null, "phone": "412 722-6314", "venue_name": "Heidelberg Volunteer Fire Department", "venue_address": "456 First Street, Heidelberg PA 15106", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-02-14T19:00:00-05:00", "dt_start": "2018-02-14T11:00:00-05:00"}], "venue_notes": "Fire Department Social Hall. Ample parking and hall entrance is located behind the fire station.", "etc": "Ash Wednesday and Good Friday only", "menu": {"url": null, "text": "Main dishes include fish sandwiches, fish and shrimp dinners and crab cakes. Sides including mac n cheese, fries, soups, and more. Our world famous pierogis will also be available ,potato and cheese only for Ash Wednesday. Stop by early as they are sure to sell out. For Good Friday only, if youd like to pre-order pierogis - potato and cheese, sauerkraut or sweet cabbage , please call 412-722-6314."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.092331, 40.391722], "type": "Point"}}, {"id": "744830f9-a8a8-4b85-96ae-5a683e62fa02", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/St.MarysHermanFishFries/", "handicap": null, "phone": null, "venue_name": "St. Mary (Herman)", "venue_address": "821 Herman Road, Butler, PA 16002", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": null, "etc": "Fridays of Lent, except Good Friday, 4-7 p.m. Takeout available at noon. ", "menu": {"url": null, "text": " Menu features baked or pan-fried fish fillet, with scalloped potatoes or french fries, green beans, Spanish rice, cole slaw and bread. Adults and takeout meals are $10, and free for children 5 and under. Also, homemade desserts and beverage. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.81627, 40.830089], "type": "Point"}}, {"id": "0388d25f-b385-4a56-a526-ecdaf6437a71", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 136.0, "validated": false, "website": "https://www.facebook.com/Official-Coys-Pizza-Six-Pack-Shop-601961369885756/", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Coy's Pizza Shop", "venue_address": "2845 Old Rte 56, Homer City, PA", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-09T22:00:00-05:00", "dt_start": "2018-03-09T08:00:00-05:00"}, {"dt_end": "2018-03-30T22:00:00-04:00", "dt_start": "2018-03-30T08:00:00-04:00"}, {"dt_end": "2018-02-16T22:00:00-05:00", "dt_start": "2018-02-16T08:00:00-05:00"}, {"dt_end": "2018-03-23T22:00:00-04:00", "dt_start": "2018-03-23T08:00:00-04:00"}, {"dt_end": "2018-03-16T22:00:00-04:00", "dt_start": "2018-03-16T08:00:00-04:00"}, {"dt_end": "2018-02-23T22:00:00-05:00", "dt_start": "2018-02-23T08:00:00-05:00"}, {"dt_end": "2018-03-02T22:00:00-05:00", "dt_start": "2018-03-02T08:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": " LENTEN SPECIALS -- Fish Dinners All dinners are served with 1 side item, Cole Slaw, Hush Puppies Roll, & Butter Seafood Platter...$10.99 Seafood Platter .Fish, clam strips & jumbo butterfly shrimp. Jumbo Shrimp Platter (8 jumbo shrimp) $9.99 Breaded Cod Dinner (5 oz. portion)...$8.99 Beer Battered Cod Dinner (9 oz. portion) ....$10.99 Baked Cod Dinner (8 oz. portion) $10.99 ***Limited supply of baked cod dinners available, so order early!!!! Choose 1 side: Pierogies Haluski Macaroni & Cheese French Fries ADDITIONAL GREAT SPECIALS INCLUDE --$1.00 off all ANY SIZE Pierogie Pizzas & White Pizzas --Shrimp Basket and French Fries $4.99 --Fried Cod Sub $4.25 --Side of Hush Puppies $1.79 --Side of Cole Slaw $1.89 --Side of Haluski, Macaroni & Cheese or Pierogies $2.09"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.195986, 40.564215], "type": "Point"}}, {"id": "93ff9e33-0be5-4965-bc58-2889b9a78450", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 243.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Spring House", "venue_address": "1531 Route 136 Washington, PA 15301", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.248628, 40.174551], "type": "Point"}}, {"id": "aa48d324-eb0a-43d8-aaf2-209be9bb64ff", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/markle.vfd/", "handicap": null, "phone": null, "venue_name": "Markle VFD", "venue_address": "470 Joyce St., Apollo, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}], "venue_notes": "Social Hall", "etc": null, "menu": {"url": null, "text": "Cost:\r\nAdults: $12.00\r\nChildren 5-10 year old: $6.00\r\nChildren under 5 years of age eat FREE\r\nMenu:\r\n-Our Famous Fried or Baked Fish\r\n-Chicken Tenders\r\n-French Fries\r\n-Green Bean Casserole\r\n-Our Signature Mac-n-Cheese\r\n-Haluski\r\n-Cole Slaw\r\n-Sandwich and Dinner Rolls\r\nThis year we have chosen to add Pierogies and Cake to the main buffet\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.645171, 40.571938], "type": "Point"}}, {"id": "48850c1b-1d45-4116-acdc-c68d94bee01f", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 318.0, "validated": false, "website": "https://www.facebook.com/infernopizzanorthhuntingdonpa/", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Inferno Pizza, Pasta, and Wings", "venue_address": "13380 US-30 Hwy Irwin, Pennsylvania", "venue_type": "Restaurant", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-23T23:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-16T23:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-30T23:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/infernopizzanorthhuntingdonpa/photos/a.973337789424791.1073741829.954992927925944/1262489097176324/?type=3&theater", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.760647, 40.342681], "type": "Point"}}, {"id": "cf2192f8-c885-424d-8616-2a1127700445", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/Hampton-Township-VFD-1-190996607599327/", "handicap": null, "phone": "(412) 487-1114", "venue_name": "Hampton Township VFD #1", "venue_address": "2536 Duncan Avenue, Allison Park, Pennsylvania 15101, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T12:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/190996607599327/photos/pcb.1746780642020908/1746780602020912/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.963937, 40.559664], "type": "Point"}}, {"id": "1556a63d-e0e5-4940-a837-983e87d8421d", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "https://www.facebook.com/McClarensBarPgh/", "handicap": null, "phone": "412-478-5825", "venue_name": "McClaren's Bar", "venue_address": "2000 Whitaker Way, Munhall, PA", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-17T00:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-24T00:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-03T00:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-10T00:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-17T00:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-24T00:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-31T00:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/McClarensBarPgh/photos/a.901674729917897.1073741829.827595107325860/1269636793121687/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.890151, 40.403115], "type": "Point"}}, {"id": "ac52d1f9-1611-4aa2-8c52-c8c2f4da5cf0", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 57.0, "validated": false, "website": "http://www.stbrigidchurch.org/", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "St. Brigid", "venue_address": "383 Arch Street, Meadville, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-23T18:30:00-04:00", "dt_start": "2018-03-23T16:30:00-04:00"}, {"dt_end": "2018-03-02T18:30:00-05:00", "dt_start": "2018-03-02T16:30:00-05:00"}, {"dt_end": "2018-03-16T18:30:00-04:00", "dt_start": "2018-03-16T16:30:00-04:00"}, {"dt_end": "2018-03-09T18:30:00-05:00", "dt_start": "2018-03-09T16:30:00-05:00"}], "venue_notes": null, "etc": "Lenten Fish Dinners will be held Fridays at St. Brigid social hall from 4:30-6:30 PM thru April 7.", "menu": {"url": null, "text": "Dinners of Baked or Fried Icelandic Haddock Fish, Scalloped Potatoes, Green Beans,Coleslaw/Applesauce, bread and beverage. Prices remain the same as last year: Adults: $9; Children $4.50 Macaroni & Cheese or Grilled Cheese & $1.50 Ice Cream Bar (dish/ cone). "}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.148842, 41.636344], "type": "Point"}}, {"id": "5ad3fe51-5429-4587-8513-38cbc721d8c1", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://www.stpaulspgh.org/", "handicap": null, "phone": "412-780-7606", "venue_name": "St. Paul's Episcopal", "venue_address": "1066 Washington Road, Mt. Lebanon, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [], "venue_notes": "church hall-second level", "etc": "When: Feb. 23, March 9 and March 23\r\nTimes: 5 p.m.", "menu": {"url": null, "text": "Fried Fish or Shrimp ($9.00) or Baked Salmon in wine ($11.00) dinners with choice of 2 sides: pierogies, tossed salad, coleslaw, macaroni and cheese, fiesta rice or french fries.\r\nHomemade New England clam chowder \u2013 $3.00 cup/$5.00 bowl/$8.00 quart (to go)!\r\nDelicious homemade desserts \u2013 $1.00\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.050178, 40.370768], "type": "Point"}}, {"id": "a494722d-168a-41ed-9237-5c402dd5b9a3", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "412-682-2509", "venue_name": "St. Maria Goretti", "venue_address": "321 Edmond St, Pittsburgh, PA 15224", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "social hall at Friendship Campus", "etc": "Ash Wednesday and Fridays of Lent, except Good Friday, 4-7 p.m.", "menu": {"url": null, "text": "Weekly dinner menu with featured side is $10 for adults, with fish available baked or fried: Ash Wednesday, Feb. 14, Feb. 23 and March 23, fish, shrimp, french fries, cole slaw; Feb. 16 and March 9, fish, shrimp, spaghetti with garlic and oil, broccoli; March 2, fish, shrimp, macaroni and cheese, vegetable; March 16, fish, shrimp, ditaline (pasta with peas). Dinners include coffee or hot tea. Pop and water available for $1. French fries available as alternative to various side dishes offered that week. Children\u2019s dinners are $7, and fish sandwich is $8."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.949893, 40.461709], "type": "Point"}}, {"id": "74ac5d03-7cd4-44d6-9625-8d8f738aebe2", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/BlaineHillVFC/", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Blaine Hill VFD", "venue_address": "409 Oxford ave, Elizabeth, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/BlaineHillVFC/photos/a.346748162112077.1073741829.346723065447920/1244760105644207/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.875079, 40.272983], "type": "Point"}}, {"id": "1d842ef9-b21b-4904-b5a6-b706eb1d571e", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "www.olovpittsburgh.org", "handicap": true, "phone": "412-278-0841", "venue_name": "Our Lady of Victory Maronite Catholic Parish, Carnegie", "venue_address": "1000 Lindsay Road, Carnegie, Pennsylvania 15106, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T12:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T12:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T12:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T12:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T12:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T12:00:00"}], "venue_notes": null, "etc": "Fridays of Lent, except Good Friday, noon-7 p.m.", "menu": {"url": null, "text": "Menu: fried and baked fish; macaroni and cheese; french fries; variety of delicious Lebanese side dishes. Cost: dinner with three sides, $14; dinner with two sides, $11; dinner with all sides plus drink, $20; fish sandwich only, $6; extra side dishes, $3; children 10 and under, $5. Credit cards accepted."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.075295, 40.385473], "type": "Point"}}, {"id": "1f52f253-757b-4506-ae85-0ec7be292664", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 105.0, "validated": false, "website": null, "handicap": null, "phone": "412-664-0820", "venue_name": "St. Sava", "venue_address": "901 Hartman, Mckeesport, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T18:00:00-04:00", "dt_start": "2018-03-16T12:00:00-04:00"}, {"dt_end": "2018-03-23T18:00:00-04:00", "dt_start": "2018-03-23T12:00:00-04:00"}, {"dt_end": "2018-03-02T18:00:00-05:00", "dt_start": "2018-03-02T12:00:00-05:00"}, {"dt_end": "2018-02-23T18:00:00-05:00", "dt_start": "2018-02-23T12:00:00-05:00"}, {"dt_end": "2018-02-16T18:00:00-05:00", "dt_start": "2018-02-16T12:00:00-05:00"}, {"dt_end": "2018-03-09T18:00:00-05:00", "dt_start": "2018-03-09T12:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": "http://www.stsavapa.org/files/Bulletins/St-Sava-Fish-Fry--Menu-2017.pdf", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.83401, 40.350403], "type": "Point"}}, {"id": "e84ab93d-3894-4d8f-aada-cfd7f806f050", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://wilkinstwp303.com/", "handicap": null, "phone": null, "venue_name": "Wilkins Township VFC #3", "venue_address": "109 Powell St, East Pittsburgh, PA 15112", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T12:00:00"}], "venue_notes": "social hall", "etc": "When: Every Friday throughout Lent\r\nTimes: 4 - 7 p.m.; noon to 7 p.m. on Good Friday", "menu": {"url": null, "text": "Fish Dinner $ 8.00\r\nFish sandwich, fries, coleslaw\r\nFish Sandwich $ 6.50\r\nBaked Fish Dinner $ 8.00\r\n(While supplies last)\r\nBaked Fish, fries, coleslaw\r\nBaked Fish Only $ 6.50\r\n(While supplies last)\r\nShrimp Dinner $ 7.50\r\nShrimp, fries, coleslaw\r\nShrimp Only $ 6.00\r\nCrab Cake Dinner $ 6.00\r\n2 Crab Cakes, fries, coleslaw\r\nCrab Cake Only $ 2.00 per cake\r\nFries Only $ 2.00\r\nCheddar Cheese Sauce $ 0.50\r\nExtra Bun $ 1.00\r\nExtra Coleslaw $ 0.75\r\nSoup $ 3.00\r\nTomato Bisque or Clam Chowder\r\nShrimp Cocktail $ 4.00\r\n5 Count Tail on cleaned and peeled\r\nMacaroni & Cheese $ 2.50\r\n8 oz.\r\nHush Puppies ( 5 ) $1.00\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.839093, 40.41792], "type": "Point"}}, {"id": "dc2f1ae2-0c67-4021-a6f7-f3d345f7870c", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "http://www.lfhvfd.com", "handicap": null, "phone": "(724) 337-0191", "venue_name": "Logans Ferry Heights VFD #235-Social Club", "venue_address": "1001 Summit Ave., New Kensington, PA 15068", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T11:30:00"}], "venue_notes": "Social Hall #235 LFHVFD", "etc": null, "menu": {"url": "http://www.lfhvfd.com", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.749766, 40.546165], "type": "Point"}}, {"id": "2b97fade-5171-401e-9403-eea1d73ce9ab", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.saintcolmanchurch.org/", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "St. Colman, Turtle Creek", "venue_address": "100 Tri-Boro Expressway, Turtle Creek, Pennsylvania 15145, United States", "venue_type": "Church", "alcohol": false, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T15:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T15:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T15:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T15:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T15:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T15:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T15:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": "In school cafeteria", "etc": null, "menu": {"url": null, "text": " \u201cHand-dipped\u201d fried or baked cod fish sandwich, $7. Variety of side items to mix and match for $4, including haluski, pierogies, macaroni and cheese, french fries, cole slaw, Boston clam chowder, crab cakes. Also featuring bake sale and soft-serve ice cream. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.827338, 40.406208], "type": "Point"}}, {"id": "75f3d2cc-f606-4aa2-b2f2-4ced6a273a5b", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 268.0, "validated": false, "website": null, "handicap": null, "phone": "814-825-8140", "venue_name": "SS Peter and Paul Byzantine, Social Hall", "venue_address": "3415 Wallace St. Erie, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:30:00-04:00"}], "venue_notes": null, "etc": "March 3, 17, 31 4:30-7", "menu": {"url": null, "text": "Baked fish and/or pierogi. Adult $10, child 6-12 $5, child under 6 free. Includes choice of baked cod, potato and cheese pierogi or combo. Nut roll bake sale!"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.057359, 42.108712], "type": "Point"}}, {"id": "9289c186-a85c-406f-a2b3-62e683a87d41", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/alleghenyelks/", "handicap": false, "phone": "412-321-1834", "venue_name": "Allegheny Elks Lodge #339", "venue_address": "400 Cedar Avenue, Pittsburgh, PA", "venue_type": "Community Organization", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T20:30:00", "dt_start": "2018-02-16T17:30:00"}, {"dt_end": "2018-02-23T20:30:00", "dt_start": "2018-02-23T17:30:00"}, {"dt_end": "2018-03-02T20:30:00", "dt_start": "2018-03-02T17:30:00"}, {"dt_end": "2018-03-09T20:30:00", "dt_start": "2018-03-09T17:30:00"}, {"dt_end": "2018-03-16T20:30:00", "dt_start": "2018-03-16T17:30:00"}, {"dt_end": "2018-03-23T20:30:00", "dt_start": "2018-03-23T17:30:00"}, {"dt_end": "2018-03-30T20:30:00", "dt_start": "2018-03-30T17:30:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.000775, 40.451826], "type": "Point"}}, {"id": "e8df53d3-5e37-4ca8-afeb-cff8baf7d384", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://thelorenzcafe.wixsite.com/home", "handicap": null, "phone": "(412) 921-5959", "venue_name": "Lorenz Cafe", "venue_address": "718 Lorenz Avenue, Pittsburgh, Pennsylvania 15220, United States", "venue_type": "Restaurant", "alcohol": true, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "9am-2am", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.039762, 40.444829], "type": "Point"}}, {"id": "b9e9914a-651c-4a12-985b-594216bc3213", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/calvfd23/", "handicap": null, "phone": "(724) 938-9283", "venue_name": "California Volunteer Fire Department", "venue_address": "1000 Wood Street, California PA 15419", "venue_type": "Fire Department", "alcohol": false, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": "Ash Wednesday and Fridays during Lent, 11AM-7PM", "menu": {"url": "https://www.facebook.com/calvfd23/photos/a.718790561472923.1073741828.205736189445032/1788386751179960/?type=3&theater", "text": "Several types of traditional fried fish sandwiches, ever popular baked fish dinners after 3pm, and plenty of side dishes."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.889763, 40.067488], "type": "Point"}}, {"id": "463e54a8-8043-41d2-b736-3198a8a49b18", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-652-9471", "venue_name": "St. Camilus, Neshannock Township - ASH WEDNESDAY ONLY", "venue_address": "314 West Englewood Avenue, New Castle, Pennsylvania 16105, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:00:00", "dt_start": "2018-02-14T11:00:00"}], "venue_notes": "McGurk Hall", "etc": "Ash Wednesday, Feb. 14, 11 a.m.-6 p.m. Phone orders taken from 10 a.m.-3 p.m. on day of sale.\r\n", "menu": {"url": null, "text": "Menu features deep-fried, baked or oven-fried fish, plus macaroni and cheese, french fries, cole slaw, pierogies, dessert and beverages. Fish sandwich is $7, and includes french fries or macaroni and cheese. One quart of pasta fagioli is available for $6 (takeout only). Cost: $12 adult dinner; $6 child meal; $7 sandwich. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.355885, 41.027391], "type": "Point"}}, {"id": "b9c63b7a-02b9-4f8f-8292-913a2f80bf2a", "properties": {"lunch": false, "homemade_pierogies": false, "cartodb_id": 217.0, "validated": false, "website": "www.stbartsparish.com/", "handicap": null, "phone": "412-242-2511", "venue_name": "St. Bartholomew", "venue_address": "111 Erhardt Dr, Penn Hills, PA 15235", "venue_type": "Church", "alcohol": false, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:30:00-04:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T16:30:00-05:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T16:30:00-04:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T16:30:00-05:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T16:30:00-05:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T16:30:00-05:00"}], "venue_notes": "The Fish Fry is in the school cafeteria.", "etc": null, "menu": {"url": null, "text": "Variety of choices available, including baked, breaded or battered fish, jumbo shrimp, crab cakes, pierogies, haluski, macaroni and cheese, personal cheese pizza, french fries and breadsticks."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.84085, 40.46448], "type": "Point"}}, {"id": "ba311443-b91d-491a-a948-915073e2b3d0", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "www.holyfamilyparishpa.com", "handicap": true, "phone": "724-224-8342", "venue_name": "Holy Family (Creighton) - lunch only", "venue_address": "787 Freeport Rd., Creighton, PA 15030", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-23T14:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T14:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T14:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T14:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T14:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-02-16T14:00:00", "dt_start": "2018-02-16T11:00:00"}], "venue_notes": "social hall", "etc": null, "menu": {"url": "https://docs.wixstatic.com/ugd/a1004c_829a6db449c24adf91f8be48766cba94.docx?dn=2018%20Fish%20Flyer.docx", "text": "Cost is $10 for adults, $5 for child, $7 for sandwiches. Lite lunch available for $8, and includes 1/2 piece of fish with two sides. Menu features homemade pierogies."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.779311, 40.58093], "type": "Point"}}, {"id": "f5764713-a39f-4013-848f-6b18e4495f5e", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-869-5723", "venue_name": "Our Lady of Peace, Conway - Every other Friday of Lent", "venue_address": "1000 Third Ave. Conway, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-03-02T23:30:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}, {"dt_end": "2018-05-04T19:00:00", "dt_start": "2018-05-04T11:00:00"}], "venue_notes": null, "etc": "Fridays, Feb. 16, March 2, 16, 30 (Good Friday), May 4, 11 a.m.-7 p.m.", "menu": {"url": null, "text": "Menu: shrimp dinner, $9 adult, $8.50 senior; baked or fried fish dinner, $8.50 adults, $8 senior, $7 children ages 12 and under; chicken dinner, $8.50 adult, $8 seniors, $7 children 12 and under; fish sandwich, $7.50. Dinner includes cole slaw, roll, coffee, and choice of side (french fries, macaroni and cheese, baked potato). Extra side order for $1.50 each. Children under 6 eat in dining room free. Guests can buy whole dessert, or enjoy a piece with any dinner. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.236547, 40.660245], "type": "Point"}}, {"id": "3e3b715b-16e4-4cc4-a63c-a8944262e9f8", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "http://steliasmunhallpa.weebly.com/lenten-kitchen.html", "handicap": null, "phone": "412-461-9271", "venue_name": "St. Elias Byzantine", "venue_address": "4200 Homestead-Duquesne Road, Munhall, PA 15120", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T11:30:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T11:30:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T11:30:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T11:30:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T11:30:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T11:30:00"}], "venue_notes": null, "etc": "Voted GOLD under Best Ethnic category by Tribune Review South Readers.", "menu": {"url": "https://steliasmunhallpa.weebly.com/lenten-kitchen.html", "text": "Baked Fish Dinner (w./ fries 'n slaw)\r\nFried Fish Dinner (w./ fries 'n slaw)\r\nButterfly Shrimp Dinner (w./fries 'n slaw)\r\nFish Sandwich\r\nPirohi\r\nMac 'n Cheese\r\nHaluski\r\nVarious Hungarian Pastries\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.895522, 40.383301], "type": "Point"}}, {"id": "f4fd28f7-a766-4cd1-a30f-c7f040b614c6", "properties": {"lunch": false, "homemade_pierogies": true, "validated": true, "website": "http://stmauriceparish.org/", "handicap": true, "phone": "412-723-1200", "venue_name": "St. Maurice, Forest Hills", "venue_address": "2001 Ardmore Boulevard, Pittsburgh, Pennsylvania 15221, United States", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T14:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T14:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T14:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T14:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T14:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T14:30:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T14:30:00"}], "venue_notes": "The fish fry will be in Keane Hall", "etc": "Friday of Lent, including Good Friday, 2:30-7 p.m. Pierogies are frozen and sold for take-out only.", "menu": {"url": null, "text": "Menu features fried and baked fish, shrimp, cole slaw, macaroni and cheese, haluski, french fries, pizza, sandwiches and pasta. Potato and cheese and sauerkraut pierogies are available for purchase by the dozen for take-out only."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.851648, 40.421506], "type": "Point"}}, {"id": "5350c7bc-10ca-4878-810e-04d48659cff5", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://unionvilleumc.org/", "handicap": null, "phone": " (724) 843-0862", "venue_name": "Unionville Methodist Church", "venue_address": "1297 PA-68, Rochester, PA 15074", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "Family Life Center", "etc": "When: Every Friday throughout Lent\r\nTimes: 4-7 pm\r\nTake out menu available 4-6 pm", "menu": {"url": null, "text": "Adult Fish Dinner \u2013 $10\r\nAdult Chicken Tender Dinner \u2013 $10\r\nAdult Shrimp Dinner \u2013 $11\r\nFish Sandwich Dinner \u2013 $10\r\nAll dinners include French Fries or Mac n Cheese and Food Bar\r\nSenior Dinner Discount available\r\nChild Menu Available\r\nAla Carte Menu Available\r\nFish Sandwich Only $6\r\n\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.206967, 40.746226], "type": "Point"}}, {"id": "6d90fcff-8291-44a1-a6e8-3fd605dc4f1e", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.stmaryglenshaw.org/", "handicap": true, "phone": "412-684-1112", "venue_name": "St. Mary of the Assumption (Glenshaw)", "venue_address": "2510 Middle Road, Glenshaw, PA 15116", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:30:00"}], "venue_notes": "Marian Hall", "etc": "Fridays of Lent, except Good Friday, 4:30-7 p.m.", "menu": {"url": null, "text": "Adult and senior dinner menu includes baked or fried fish, with roll or sandwich bun, choice of three sides (corn, green beans, baked potato, macaroni and cheese), choice of applesauce or cole slaw, dessert and beverage. Cost: $10 adults; $9 seniors; $6 children, ages 4-10; $4 children ages 3 and under. Special a la carte menu available."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.932372, 40.554213], "type": "Point"}}, {"id": "c3169e71-42a4-49fe-8922-2a5e1f432696", "properties": {"lunch": true, "homemade_pierogies": false, "validated": true, "website": "http://moontwpfire.com", "handicap": null, "phone": "412-262-5006", "venue_name": "Moon Township VFC", "venue_address": "1000 Beaver Grade Road, Moon Township, PA 15108", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": "Come and eat at the Volunteer Fire Company\u2019s Fish Fry on Fridays throughout lent. Take out dinners and sit downs are available. Choose from fish, shrimp, or chicken finger dinners, sandwiches, and desserts. Dinners include fries and cole slaw. *Hours for 2018 have not been verified).", "menu": {"url": null, "text": "Choose from fish, shrimp, or chicken finger dinners, sandwiches, and desserts. Dinners include fries and cole slaw."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.208152, 40.504618], "type": "Point"}}, {"id": "431172da-b89d-467f-bb8f-6b962c2aebc9", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://imperialvfd.org/", "handicap": null, "phone": "724-695-8845", "venue_name": "Imperial VFD", "venue_address": "111 Pine Street, Imperial, Pennsylvania 15126, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T10:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T10:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T10:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T10:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T10:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T10:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T10:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.24675, 40.451553], "type": "Point"}}, {"id": "25673975-803e-4876-a74d-c79c9c67c6ce", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "www.epiphanychurch.net", "handicap": null, "phone": "412-471-1008", "venue_name": "Epiphany (Uptown)", "venue_address": "164 Washington Place Pittsburgh, Pa. 15219", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": "McDowell Hall; below church", "etc": null, "menu": {"url": null, "text": "Deep fried or Baked fish sandwich on bun \u2013 $9.00\r\nCrab cakes (2) \u2013 $6.00\r\nJumbo Shrimp (6) \u2013 $7.00\r\nPierogies (3) \u2013 $3.00\r\nFrench Fries \u2013 $2.00\r\nCole Slaw \u2013 $2.00\r\nClam Chowder (New England style) \u2013 $3.00\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.990649, 40.439768], "type": "Point"}}, {"id": "e04aa272-7bdc-44d3-9584-dd0e13440186", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.olgscott.org/", "handicap": null, "phone": "412-200-2694", "venue_name": "Our Lady of Grace, Scott Township", "venue_address": "310 Kane Blvd. Scott Township, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:30:00"}], "venue_notes": "Conroy Hall (school)", "etc": null, "menu": {"url": "https://1.cdn.edl.io/o7UyN6IDVlvsF3iBUgkC33TK8z3eVw0lxoxjhsPdCMfWQHjM.pdf", "text": "Dinner menu features fried and baked fish, shrimp, crab cake, seafood platter. Dinners include drink, dessert, baked potato, roll and cole slaw. A la carte menu includes lobster bisque, macaroni and cheese, pierogies, haluski, pizza, french fries, baked potatoes and more."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.08519, 40.373327], "type": "Point"}}, {"id": "a6d29a55-0ff4-4525-adf1-5dc3ba823dec", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 82.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Elwood's Pub", "venue_address": "163 Little Deer Creek Rd., Rural Ridge, PA", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.827979, 40.589245], "type": "Point"}}, {"id": "afb83f21-6972-4a7a-b3f0-7fced2bbd0e0", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 163.0, "validated": false, "website": "http://niedshotel.myfastsite.com/", "handicap": null, "phone": "412-781-9853", "venue_name": "Nied's Hotel", "venue_address": "5438 Butler St, Pittsburgh, PA 15201", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T23:45:00-04:00", "dt_start": "2018-03-16T07:00:00-04:00"}, {"dt_end": "2018-03-30T23:45:00-04:00", "dt_start": "2018-03-30T07:00:00-04:00"}, {"dt_end": "2018-03-02T23:45:00-05:00", "dt_start": "2018-03-02T07:00:00-05:00"}, {"dt_end": "2018-03-09T23:45:00-05:00", "dt_start": "2018-03-09T07:00:00-05:00"}, {"dt_end": "2018-03-23T23:45:00-04:00", "dt_start": "2018-03-23T07:00:00-04:00"}, {"dt_end": "2018-02-23T23:45:00-05:00", "dt_start": "2018-02-23T07:00:00-05:00"}, {"dt_end": "2018-02-16T23:45:00-05:00", "dt_start": "2018-02-16T07:00:00-05:00"}], "venue_notes": null, "etc": "famous fish sandwich", "menu": {"url": "http://niedshotel.myfastsite.com/menu/", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.949836, 40.483363], "type": "Point"}}, {"id": "c1ccde17-49f5-4992-8eba-277c509f7869", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 171.0, "validated": false, "website": "https://www.facebook.com/BulldogPubPGH/", "handicap": null, "phone": "412-404-2775", "venue_name": "Bulldog Pub", "venue_address": "1818 Morningside Ave. Pittsburgh, PA 15206", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T12:00:00-04:00"}, {"dt_end": "2018-02-23T20:00:00-05:00", "dt_start": "2018-02-23T12:00:00-05:00"}, {"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T12:00:00-04:00"}, {"dt_end": "2018-03-02T20:00:00-05:00", "dt_start": "2018-03-02T12:00:00-05:00"}, {"dt_end": "2018-03-09T20:00:00-05:00", "dt_start": "2018-03-09T12:00:00-05:00"}, {"dt_end": "2018-02-16T20:00:00-05:00", "dt_start": "2018-02-16T12:00:00-05:00"}, {"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T12:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.92653, 40.486705], "type": "Point"}}, {"id": "79276e7d-1fbf-4676-a66f-7295baf5de65", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.stnicholasmonroeville.org/", "handicap": null, "phone": "412-856-8166", "venue_name": "St. Nicholas Serbian Orthodox", "venue_address": "2110 Haymaker Road, Monroeville, PA", "venue_type": "Church", "alcohol": false, "take_out": null, "email": "stnicholasmonroeville@gmail.com", "events": [{"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "Klub Karadjordje fish fry 4-7 every Friday during Lent.", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.756456, 40.404933], "type": "Point"}}, {"id": "ad2152d3-1d9e-4018-b7aa-214d9dbda985", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": null, "venue_name": "Most Holy Name of Jesus, Troy Hill", "venue_address": "1515 Tinsbury Street, Pittsburgh, Pennsylvania 15212, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "school hall", "etc": "Fridays of Lent, except Good Friday, 4-7 p.m.", "menu": {"url": null, "text": "Dinner menu, $10: fried or baked cod; crab cakes (two); breaded jumbo shrimp (six). Dinners come with choice of two sides (french fries, homemade macaroni and cheese, homemade cole slaw, applesauce, stewed tomatoes), homemade dessert, beverage (for dine-in only). A la carte menu and takeout available."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.983499, 40.464173], "type": "Point"}}, {"id": "b16d07c3-e6bb-4d39-806f-9b57660e27d0", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 128.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Fayette City VFC", "venue_address": "340 Second Street, Fayette City, PA 15438", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.839722, 40.098682], "type": "Point"}}, {"id": "0dd7f35f-c6ba-49de-9fad-e4045ae96cb1", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "(412) 384-7050", "venue_name": "Elizabeth United Methodist Church", "venue_address": "317 South Second Avenue, Elizabeth, Pennsylvania 15037, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T13:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T13:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T13:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T13:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T13:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T13:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "church's social hall", "etc": "When: Fridays in Lent Except Good Friday\r\nTimes: Lunch is from 11:00 am - 1:00 pm & Dinner is from 4:00 pm - 7:00 pm\r\n", "menu": {"url": null, "text": "Available items include a Fish Dinner, Shrimp Dinner, Combo Dinner, or Crab Cake Dinner at $11 or smaller portion at $9. All dinners include one side dish, coleslaw, roll, cake, & beverage. Fish sandwiches are $8, Fish or Shrimp on a Dish is $7, Crab cake is $4, Clam Chowder is $3, Mac & Cheese, Haluski, Coleslaw, or French Fries are $2 each. Cake is $1. Dine in beverages are free.\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.888332, 40.271121], "type": "Point"}}, {"id": "8425cb60-033d-488c-9b29-f8de311e9b90", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "www.facebook.com/ololburgettstown", "handicap": true, "phone": "724-947-5076 or 724-947-3363", "venue_name": "Our Lady of Lourdes", "venue_address": "1109 Main St. Burgettstown, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T15:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T15:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T15:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T15:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T15:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T15:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T15:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": "For information, call 724-947-5076 or 724-947-3363, or visit www.facebook.com/ololburgettstown.", "menu": {"url": null, "text": "Menu features fried and baked fish, crab cakes, fried shrimp, pierogies, cabbage and noodles, macaroni and cheese, french fries, hush puppies, soup of the day and homemade desserts. Cost: dinner, $10-$11; child, $5; sandwich, $8. Takeout available; call 724-947-5076. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.389857, 40.373218], "type": "Point"}}, {"id": "8b2f0d9f-63ad-4875-a35e-cf8ea1253622", "properties": {"lunch": false, "homemade_pierogies": false, "cartodb_id": 273.0, "validated": false, "website": "stmikesparishschool.org", "handicap": null, "phone": "304-242-1560 takeout", "venue_name": "St Michael Parish", "venue_address": "1221 National Road, Wheeling, Wv", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00-05:00", "dt_start": "2018-02-14T16:00:00-05:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T16:00:00-05:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T16:00:00-05:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T16:00:00-05:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T16:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Baked Fish Dinner - 7 Six Piece Shrimp Dinner - 7 Fish Dinner - 7 Includes Two Sides and a Roll. Side Dishes include French Fries - 1 Green Beans - 1 Mac and Cheese - 1 Cole Slaw - 1 Baked Potato - 1 There are also a la carte items including pizza - 2 and grilled cheese - 2. Soda, bottled water, and coffee - 1. "}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.683142, 40.073288], "type": "Point"}}, {"id": "0c510817-e134-4b4a-8168-716415a12617", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "724-627-7568 option 5 or EXT 17", "venue_name": "St. Ann, Waynesburg", "venue_address": "232 E. High St. Waynesburg, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T13:00:00", "dt_start": "2018-02-16T11:30:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T13:00:00", "dt_start": "2018-02-23T11:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T13:00:00", "dt_start": "2018-03-02T11:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T13:00:00", "dt_start": "2018-03-09T11:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T13:00:00", "dt_start": "2018-03-16T11:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T13:00:00", "dt_start": "2018-03-23T11:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-03-30T13:00:00", "dt_start": "2018-03-30T11:30:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:30:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/stannchurchwbg/photos/rpp.1813413848884489/2430278980531303/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.183427, 39.896451], "type": "Point"}}, {"id": "0e23c9a2-08d9-4eea-ab23-e0a11995b92a", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://stferd.org/", "handicap": null, "phone": "724-776-2899", "venue_name": "St. Ferdinand", "venue_address": "2535 Rochester Rd Cranberry Township, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T13:30:00", "dt_start": "2018-02-16T11:30:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T13:30:00", "dt_start": "2018-02-23T11:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T13:30:00", "dt_start": "2018-03-02T11:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T13:30:00", "dt_start": "2018-03-09T11:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T13:30:00", "dt_start": "2018-03-16T11:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T13:30:00", "dt_start": "2018-03-23T11:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": "Oldenski Hall", "etc": "https://www.facebook.com/saintferdinandcranberry/photos/a.792356890806571.1073741826.345338188841779/1385459621496292/?type=3&theater", "menu": {"url": "http://stferd.org/fish-dinners/", "text": "Homemade Tossed Cheese Pizza $2.00\r\nHomemade Soup of the Week $2.00\r\nPierogi or Haluski $3.00\r\nMacaroni and Cheese $3.00\r\nFrench Fries $2.00\r\nCole Slaw $1.00\r\nApple Sauce $1.00\r\nBaked or Fried Fish Fillet $6.00\r\nFish Sandwich $7\r\nAll Fish Dinners include a choice of Baked or Fried Fish Fillet, French Fries, Homemade Haluski or Homemade Macaroni and Cheese, and a choice of Applesauce, Coleslaw or Green Beans. \r\nAdult Fish Dinner $10\r\nChild`s Dinner $6\r\nPierogi Dinner $8\r\nBrownie and Ice Cream included with dine-in dinners\r\nBrownie included with take-out dinners; Ice Cream donated by Ice Box Creamery-"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.110371, 40.698105], "type": "Point"}}, {"id": "538698a9-6dd2-465c-8825-fc623d14f286", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 56.0, "validated": false, "website": "http://www.st-boniface.org/", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "St. Boniface", "venue_address": "359 Main Street, Kersey, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T16:00:00-05:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T16:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-78.601931, 41.361494], "type": "Point"}}, {"id": "78580f02-25c0-4c27-87bf-20b8b2a37876", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": null, "handicap": null, "phone": "412-372-7040", "venue_name": "Pitcairn Hose Company #1", "venue_address": "100 Center Ave., Pitcairn, PA", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "Behind Sunoco", "etc": "Free in town delivery. ", "menu": {"url": "https://www.facebook.com/PittsburghLentenFishFryMap/posts/1616708431757622", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.777859, 40.401789], "type": "Point"}}, {"id": "48756d31-aec7-4a4b-a52c-545810c64733", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/American-Legion-Post-868-112935482084816/", "handicap": true, "phone": "724-339-9417", "venue_name": "American Legion Post 868", "venue_address": "1100 Wildlife Lodge Rd., Lower Burrell, PA", "venue_type": "Community Organization", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.710824, 40.583376], "type": "Point"}}, {"id": "6a2ddc66-0519-4a71-b33d-3f62e27d48b1", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 29.0, "validated": false, "website": "https://www.facebook.com/SewardVFC/", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Seward Volunteer Fire Company Auxiliary", "venue_address": "1230 10th Street Seward, Pa. 15954", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-02T18:00:00-05:00", "dt_start": "2018-03-02T12:00:00-05:00"}, {"dt_end": "2018-03-23T18:00:00-04:00", "dt_start": "2018-03-23T12:00:00-04:00"}, {"dt_end": "2018-02-16T18:00:00-05:00", "dt_start": "2018-02-16T12:00:00-05:00"}, {"dt_end": "2018-02-23T18:00:00-05:00", "dt_start": "2018-02-23T12:00:00-05:00"}, {"dt_end": "2018-03-30T18:00:00-04:00", "dt_start": "2018-03-30T12:00:00-04:00"}, {"dt_end": "2018-03-16T18:00:00-04:00", "dt_start": "2018-03-16T12:00:00-04:00"}, {"dt_end": "2018-03-09T18:00:00-05:00", "dt_start": "2018-03-09T12:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Dinners ($10.00 each): - Fried Fish Sandwich - Baked Fish Dinner - Shrimp Dinner - Chicken Strips Dinner All Dinners include: Choice of One - Cabbage & Noodles, Mac & Cheese, French Fries, or Stewed Tomatoes Choice of: Coleslaw or Applesauce Choice of Cake. A'la carte: $7.00 - Fish Sandwich, Baked Fish, Shrimp, or Chicken Strips $1.50 - Cabbage & Noodles, Mac & Cheese, French Fries, Stewed Tomatoes $1.00 - Coleslaw or Cake $0.75 - Applesauce"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.024207, 40.413379], "type": "Point"}}, {"id": "60f7ef86-f631-45bb-8d1d-783ad9296892", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://www.holychildrcparish.org", "handicap": null, "phone": "412-221-6514", "venue_name": "Holy Child (Bridgeville)", "venue_address": "220 Station St. Bridgeville, PA 15107", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T13:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T13:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T13:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T13:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T13:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T13:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T13:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "School Building", "etc": null, "menu": {"url": "http://www.holychildrcparish.org/documents/2018/2/DOC020818.pdf", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.11533, 40.359053], "type": "Point"}}, {"id": "d021359f-29ec-47ea-8569-fa56a3d6f299", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 120.0, "validated": false, "website": "https://www.facebook.com/Washington-Twp-VFC-116733318342068/", "handicap": null, "phone": "724-929-4172", "venue_name": "Washington Township VFC", "venue_address": "1314 Axton St Belle Vernon, Pennsylvania", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/116733318342068/photos/a.370045689677495.111863.116733318342068/1655755587773159/?type=3&theater", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.841409, 40.118249], "type": "Point"}}, {"id": "47d56e66-1829-461d-bb50-3b7aa799d8e9", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "(412) 824-1563", "venue_name": "Monroeville VFD #3", "venue_address": "2601 Third Street, Monroeville Mall, Pennsylvania 15146, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T20:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": "Social Hall", "etc": "Ash Wednesday and Every Friday until Easter including Good Friday 11am til 8pm", "menu": {"url": null, "text": "Beer Batter Cod sandwich 8.00\r\nFish sandwich platter (2 sides) 10.50\r\nCajun Clam Chowder 4.00\r\nHalushki\r\nmac and cheese\r\ncole slaw\r\nFried and coconut shrimp\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.802884, 40.397682], "type": "Point"}}, {"id": "6dc9fa96-09af-4d8d-bff5-510e755c18b8", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "www.mystjoan.org", "handicap": true, "phone": "412-854-3173", "venue_name": "St. Joan of Arc (South Park)", "venue_address": "6414 Montour Street, South Park, Pennsylvania 15129, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}], "venue_notes": "Domremy Hall", "etc": "Dine-in or takeout. ", "menu": {"url": null, "text": "Menu features fried and baked fish, salmon and crab cakes. Sandwiches are $8. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.025897, 40.287091], "type": "Point"}}, {"id": "0e50ca75-d74c-422d-b6fc-57f489908cf4", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 305.0, "validated": false, "website": "http://www.piperspub.com/", "handicap": true, "phone": "412-381-3977", "venue_name": "Piper's Pub", "venue_address": "1828 E Carson St., Pittsburgh, PA 15203", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.979431, 40.428427], "type": "Point"}}, {"id": "63d49af3-6e2d-43b6-820e-c11214e85eb1", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 165.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Beaver Falls Elks Lodge 348", "venue_address": "1000 6th avenue Beaver Falls Pa 15010", "venue_type": "Community Organization", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.317942, 40.750738], "type": "Point"}}, {"id": "a8ee62d5-de4d-43e4-809c-be1642e7f3a9", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/qorfishfry/", "handicap": true, "phone": "412-872-5136", "venue_name": "Queen of the Rosary, Glassport", "venue_address": "530 Michigan Ave. Glassport, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T10:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T10:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T10:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T10:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T10:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T10:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T10:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T10:00:00"}], "venue_notes": null, "etc": "Public invited to \u201cbest fish ever.\u201d ", "menu": {"url": null, "text": "Menu includes batter-dipped fried fish, baked fish, shrimp, fish sandwich, potato pancakes (made fresh) and various soups. Sides include french fries, pierogies, haluski, macaroni and cheese and more. Prices: $9.50 dinner, includes two sides; $8 fish sandwich; $8.50 fish and chips. Also, bake sale, 50/50 raffle, small games of chance, specialty basket raffle and more. Free coffee and tea."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.890492, 40.327075], "type": "Point"}}, {"id": "e2d95153-b20e-4a45-b779-3ebabad138a0", "properties": {"lunch": true, "homemade_pierogies": false, "cartodb_id": 213.0, "validated": false, "website": "http://stockdalevfd.com/", "handicap": null, "phone": "724-938-3300", "venue_name": "Stockdale Volunteer Fire Department", "venue_address": "316 Railroad St. Stockdale PA 15483", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}, {"dt_end": "2018-02-14T19:00:00-05:00", "dt_start": "2018-02-14T11:00:00-05:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}], "venue_notes": "Located in the Social Hall Annex", "etc": "11-7 Ash Wednesday and all Fridays of Lent", "menu": {"url": "https://www.facebook.com/stockdalevfd/photos/a.761528880555444.1073741830.737250029649996/1437486629626329/?type=3&theater", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.84925, 40.08291], "type": "Point"}}, {"id": "cf9aacbd-6029-4ba3-b114-5592d4c1c4d1", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 274.0, "validated": false, "website": "http://www.ascensionpittsburgh.org/lenten-dinner-series/", "handicap": null, "phone": "412-621-4361", "venue_name": "Church of the Ascension", "venue_address": "4729 Ellsworth Ave, Pittsburgh, PA", "venue_type": "Church", "alcohol": false, "take_out": false, "email": null, "events": [{"dt_end": "2018-03-09T20:30:00-05:00", "dt_start": "2018-03-09T18:30:00-05:00"}, {"dt_end": "2018-03-02T20:30:00-05:00", "dt_start": "2018-03-02T18:30:00-05:00"}, {"dt_end": "2018-02-23T20:30:00-05:00", "dt_start": "2018-02-23T18:30:00-05:00"}, {"dt_end": "2018-03-16T20:30:00-04:00", "dt_start": "2018-03-16T18:30:00-04:00"}], "venue_notes": null, "etc": "Evening-long program: Dinner-6:30, Worship-7:15, Teaching-7:30, QA-8:15, Dismiss-8:30. See the website for speakers.", "menu": {"url": null, "text": "Buffet dinner catered by Denise Bozich. Suggested donations for the dinner are as follows: $7/adult, $3/child, $20 family maximum."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.946821, 40.449102], "type": "Point"}}, {"id": "40c50fa9-a2cc-4ec4-84c1-1e21380ce3cc", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 144.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "My Sister's Bistro", "venue_address": "7205 State Route 22 Greensburg, Pennsylvania", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.524097, 40.402715], "type": "Point"}}, {"id": "2830c627-9615-49ea-8cb0-14b1ca9a3a1d", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 114.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "St. Paul's Episcopal Church", "venue_address": "130 West Main Street Monongahela, PA 15063", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.923358, 40.200669], "type": "Point"}}, {"id": "f15f35bb-ea59-4f72-96c0-5e8ef250d9f3", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-312-4088", "venue_name": "SS. Peter and Paul, Beaver", "venue_address": "370 East End Avenue, Beaver, Pennsylvania 15009, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T15:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T15:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T15:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T15:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T15:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T15:00:00"}], "venue_notes": "school cafeteria", "etc": "Fridays of Lent, except Good Friday, 3-7 p.m.", "menu": {"url": null, "text": "Fish dinner is $10 for adults, $9 for seniors, $5 for child, and includes large fish (baked or fried), cole slaw, roll, dessert, lemonade or coffee, plus choice of pierogies, macaroni and cheese, haluski, french fries, baked potato and aglio et olio pasta. Also: fish sandwich, $8; Pittsburgh fish sandwich, $9; aglio et olio pasta with fish, $9; pasta and garlic bread, $8. Variety of side dishes available for purchase."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.297904, 40.69924], "type": "Point"}}, {"id": "95b985e0-17d3-4aa7-8250-e41c758f2bdf", "properties": {"lunch": true, "homemade_pierogies": false, "cartodb_id": 251.0, "validated": false, "website": "http://armandospizza.net/", "handicap": null, "phone": "724-483-5540", "venue_name": "Armandos Pizza", "venue_address": "583 Fallowfield Ave. Charleroi, PA 15022", "venue_type": "Resturant", "alcohol": true, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "Ash Wednesday and every Friday", "menu": {"url": null, "text": "Colossal Fish Sandwich and Cole Slaw 6.99. The Pounder Platter 1lb of Fish and 1lb of Fries 10.99. Voted Best Fish in the Valley."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.899255, 40.138896], "type": "Point"}}, {"id": "082f8c76-a98f-408f-8b93-cc5427d1f107", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://www.christumc.net/", "handicap": null, "phone": "412-835-6621", "venue_name": "Christ United Methodist Church, Bethel Park", "venue_address": "44 Highland Rd., Bethel Park, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T14:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T14:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T14:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T14:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T14:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-02-16T14:00:00", "dt_start": "2018-02-16T11:00:00"}], "venue_notes": null, "etc": "Where: Christian Life Center-South Entrance\r\nWhen: Fridays, February 16-March 23.\r\nTimes: Lunch: 11am-2pm, Dinner: 4pm-7pm.", "menu": {"url": null, "text": "Menu & Cost:\r\nFish Sandwich (w or wo bun) $9\r\nBaked Fish $9\r\nFried Shrimp $9\r\nBoom-Boom Shrimp $9\r\nBoom-Boom Shrimp Tacos $9\r\nChicken Fingers $9\r\nKids Chicken Fingers $5\r\n(All meals include choice of mac n\u2019 cheese, haluski or fresh cut fries and coleslaw)\r\nA la Carte Items:\r\nFresh Cut Fries $3\r\nMac n\u2019 Cheese $3\r\nHaluski $3\r\nColeslaw $2\r\nDessert $2\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.048385, 40.348504], "type": "Point"}}, {"id": "d251db5e-7a72-4ff1-ae18-b480e1ae0a8c", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.saintkilian.org/fishfry/", "handicap": true, "phone": "724-625-1665", "venue_name": "St. Kilian (Cranberry)", "venue_address": "7076 Franklin Road, Cranberry Township, PA 16066", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T16:00:00"}], "venue_notes": "parish church hall for dining in; school cafeteria for takeout", "etc": "Fridays of Lent except Good Friday, 4-8 pm", "menu": {"url": null, "text": "Menu: fried or baked fish on a dish; fish sandwich; fried shrimp; baked potato; pierogies and other sides; tomato Florentine soup; cheese pizza options. Costs, $11 adult; $8 senior; $5 child; $7 a la carte entree; $1-2 a la carte sides."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.07463, 40.683618], "type": "Point"}}, {"id": "a9566ce8-76be-4767-84dd-be7364f6c2bd", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "https://www.facebook.com/firstchurchkittanning", "handicap": true, "phone": "xxx-xxx-xxxx", "venue_name": "First United Methodist Church Covenant Center", "venue_address": "301 North Jefferson Street, Kittanning, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T18:30:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T18:30:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T18:30:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T18:30:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T18:30:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T18:30:00", "dt_start": "2018-03-23T16:30:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Baked or Fried Fish or Sloppy Joe Sandwich, Comes with Choice of: Baked Potato, Curly Fries, or Macaroni and Cheese, and Choice of: Apple sauce or Cole Slaw, and Roll, Beverage and Homemade Pie Adult is $9, Children $4"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.52297, 40.816874], "type": "Point"}}, {"id": "0ad7db5a-c429-4676-90b9-2dc9fa103fcd", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "www.stcatherineofsweden.org", "handicap": null, "phone": "412-486-6001", "venue_name": "St. Catherine of Sweden", "venue_address": " 2554 Wildwood Rd, Allison Park, PA 15101", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "In the social hall", "etc": "A 10 percent discount is applied for all dinners served in social hall between 4-5 p.m. Takeout available; call 412-486-6001 or visit www.stcatherineofsweden.org. Curbside pick-up is available for all advance orders by phone or online. Please allow 20 minutes for takeout orders.", "menu": {"url": null, "text": "fried or baked cod; steamed or batter-baked shrimp; pizza; macaroni and cheese; fish or shrimp taco; vegetarian chef salad. Side dishes include: french fries; pierogies; baked potato; applesauce; cole slaw. Clam chowder, fish sandwiches and pierogies are available as a la carte items. Cost is $10 for adults, $9 for seniors, $5 for child, $7.50 for sandwiches"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.966565, 40.591488], "type": "Point"}}, {"id": "2616fe1e-3a16-42e9-91b2-65cb4f21f9f3", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "412-329-7911", "venue_name": "St. Joseph (Coraopolis)", "venue_address": "1313 Fifth Avenue, Coraopolis, Pennsylvania 15108, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T13:30:00", "dt_start": "2018-02-16T11:30:00"}, {"dt_end": "2018-02-16T18:45:00", "dt_start": "2018-02-16T15:30:00"}, {"dt_end": "2018-02-23T13:30:00", "dt_start": "2018-02-23T11:30:00"}, {"dt_end": "2018-02-23T18:45:00", "dt_start": "2018-02-23T15:30:00"}, {"dt_end": "2018-03-02T13:30:00", "dt_start": "2018-03-02T11:30:00"}, {"dt_end": "2018-03-02T18:45:00", "dt_start": "2018-03-02T15:30:00"}, {"dt_end": "2018-03-09T13:30:00", "dt_start": "2018-03-09T11:30:00"}, {"dt_end": "2018-03-09T18:45:00", "dt_start": "2018-03-09T15:30:00"}, {"dt_end": "2018-03-16T13:30:00", "dt_start": "2018-03-16T11:30:00"}, {"dt_end": "2018-03-16T18:45:00", "dt_start": "2018-03-16T15:30:00"}, {"dt_end": "2018-03-23T13:30:00", "dt_start": "2018-03-23T11:30:00"}, {"dt_end": "2018-03-23T18:45:00", "dt_start": "2018-03-23T15:30:00"}, {"dt_end": "2018-03-30T13:30:00", "dt_start": "2018-03-30T11:30:00"}, {"dt_end": "2018-03-30T18:45:00", "dt_start": "2018-03-30T15:30:00"}], "venue_notes": null, "etc": "Fridays of Lent, including Good Friday, 11:30 a.m.-1:30 p.m. lunch (phone lines open at 10:30 a.m.), dinner 3:30-6:45 p.m. (phone lines open at 3 p.m.). Takeout available; call 412-329-7911, but allow a minimum of 30 minutes prior to desired pick-up time. ", "menu": {"url": null, "text": "Lunch menu: baked fish (made to order, allow 10-15 minutes) or fried fish, available with or without bun, cole slaw and one side, $10; sandwich only, $8; macaroni and cheese meal, with cole slaw, french fries and dinner roll, $8; fried shrimp meal, includes eight shrimp, cole slaw, roll and one side, $10. Variety of a la carte items available for lunch for $3.50. Dinner menu: baked or fried fish, with or without dinner roll, or on a sandwich bun, plus cole slaw and one side, $10; sandwich only, $8; macaroni and cheese with cole slaw, roll and one side, $8; fried shrimp (eight), cole slaw, roll and one side, $10; crab cake (two), cole slaw, roll and one side, $10. Dinner sides include french fries, macaroni and cheese or haluski. Pierogies are $9 for dozen, $6 half-dozen. Kids\u2019 menu, includes roll and one side; baked or fried fish meal, $5; fish nuggets (eight), $5; macaroni and cheese, $4; and pizza, $2.50. A la carte menu available for dinner. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.15899, 40.515674], "type": "Point"}}, {"id": "b7492a46-1954-4b01-a98e-ed79401bf54f", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-654-9297", "venue_name": "St. Vitus School, New Castle - ASH WEDNESDAY ONLY", "venue_address": "915 South Jefferson Street, New Castle, Pennsylvania 16101, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T17:30:00", "dt_start": "2018-02-14T11:30:00"}], "venue_notes": "Fabbri Hall", "etc": "Ash Wednesday, 11:30 a.m.-5:30 p.m. Deliveries to businesses with advanced arrangements, call 724-654-9297 or fax 724-654-9364. Takeout available. Meal tickets sold at door, items available while supplies last.\r\n", "menu": {"url": null, "text": "Full meal is $11, and includes baked or fried fish, cup of pasta fagioli or macaroni and cheese, cole slaw, roll and butter, ice cream cup and drink. A la carte menu: baked or fried fish sandwich, $6; bowl of pasta fagioli, $3; macaroni and cheese, $3; cole slaw, $2; pizza slice, $2; ice cream cup, $2; drink, $1."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.346505, 40.990508], "type": "Point"}}, {"id": "d99c1643-cf63-4df5-bb38-8d35873e59de", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "https://www.facebook.com/EliottAthleticAssociation/", "handicap": null, "phone": "412-928-8854", "venue_name": "Elliott West End Athletic Association", "venue_address": "Herschel St and Hassler St Pittsburgh, PA 15220", "venue_type": "Community Organization", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "Sales are out of the Herschel Playground Little League candy stand. ", "etc": "Takeout only. WE WILL BE ACCEPTING - Visa, MasterCard, Discover and American Express (on a square)!", "menu": {"url": null, "text": "Fried Fish Dinner and Shrimp Dinners 10 each, Fried Fish Sandwich 7, Haluski 4, Mac and Cheese 4, Grilled Cheese with chips 4, French Fries 2, Cole Slaw 2. Dinners include French fries, cole slaw, and drink. Extra drinks 1 extra. Drink choices include Pepsi, Diet Pepsi, Mountain Dew, Root Beer, Brisk Tea, Sierra Mist, bottled water."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.04379, 40.44088], "type": "Point"}}, {"id": "a3f97278-08a5-4c42-8267-a93725795e6b", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 276.0, "validated": false, "website": "http://smithtonfire.org/news.html?view=1&id=11521", "handicap": null, "phone": "724-872-9201", "venue_name": "Smithton VFD", "venue_address": "609 Center Street, Smithton, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T16:00:00-04:00"}], "venue_notes": null, "etc": "4-7 PM every Friday of Lent", "menu": {"url": null, "text": "Hand Breaded / Fried North Atlantic Cod; French Fries; Homemade Cole Slaw; Roll and Butter; Free Coffee; Pop / Water can be purchased at the hall; Cost per Dinner: $9.50"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.743086, 40.15497], "type": "Point"}}, {"id": "c4ea7032-e006-4d65-bfd1-30d7f4e901d0", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 244.0, "validated": false, "website": "http://hogfathersbbq.com", "handicap": null, "phone": "724-229-1227", "venue_name": "Hogfathers Washington", "venue_address": "1301 Jefferson Ave, Washington, PA 15301", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.26741, 40.18625], "type": "Point"}}, {"id": "b0e53c35-f20a-455d-9008-0fd36aa44c07", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 91.0, "validated": false, "website": null, "handicap": null, "phone": "724-863-9889", "venue_name": "North Irwin VFC", "venue_address": "2nd St & Broadway Ave North Irwin, Pennsylvania 15642", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T16:00:00-04:00"}, {"dt_end": "2018-03-02T20:00:00-05:00", "dt_start": "2018-03-02T16:00:00-05:00"}, {"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}, {"dt_end": "2018-02-23T20:00:00-05:00", "dt_start": "2018-02-23T16:00:00-05:00"}, {"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-02-16T20:00:00-05:00", "dt_start": "2018-02-16T16:00:00-05:00"}, {"dt_end": "2018-03-09T20:00:00-05:00", "dt_start": "2018-03-09T16:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": "http://northirwinfire.com/news.html?view=1&id=72836", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.710202, 40.337252], "type": "Point"}}, {"id": "b276bdd7-c0e6-4c9e-83ca-a87ebb5937cf", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 167.0, "validated": false, "website": "https://www.facebook.com/152535481459140/photos/a.544155842297100.1073741825.152535481459140/1354051681307508/?type=3&theater", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Belle Vernon Volunteer Fire Department", "venue_address": "10 Main Street Belle Vernon, PA 15680", "venue_type": "Fire Department", "alcohol": false, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-02-14T19:00:00-05:00", "dt_start": "2018-02-14T11:00:00-05:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}], "venue_notes": null, "etc": "11am-7pm Ash Wednesday and all Fridays of Lent", "menu": {"url": null, "text": "see website link for full menue"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.875649, 40.128673], "type": "Point"}}, {"id": "e2a20a4d-c9d1-4890-a21b-9bf8aa775f70", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 209.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "VFW Post 764", "venue_address": "460 Valleybrook Rd, McMurray, PA 15317", "venue_type": "Veterans", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T20:00:00-05:00", "dt_start": "2018-02-16T11:30:00-05:00"}, {"dt_end": "2018-02-23T20:00:00-05:00", "dt_start": "2018-02-23T11:30:00-05:00"}, {"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T11:30:00-04:00"}, {"dt_end": "2018-03-02T20:00:00-05:00", "dt_start": "2018-03-02T11:30:00-05:00"}, {"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T11:30:00-04:00"}, {"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T11:30:00-04:00"}, {"dt_end": "2018-03-09T20:00:00-05:00", "dt_start": "2018-03-09T11:30:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.089085, 40.285113], "type": "Point"}}, {"id": "a3414cc4-dd4d-45f7-aed3-3b513035bbbc", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 223.0, "validated": false, "website": "http://jimmygsgrill.com/", "handicap": true, "phone": "724-745-5666", "venue_name": "Jimmy Gs Grill", "venue_address": "341 South Central Ave. Canonsburg, PA 15317", "venue_type": "Restaurant", "alcohol": true, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-23T23:45:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-02-23T23:45:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-03-09T23:45:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-30T23:45:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-02-14T22:00:00-05:00", "dt_start": "2018-02-14T11:00:00-05:00"}, {"dt_end": "2018-02-16T23:45:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-03-16T23:45:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-02T23:45:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.184174, 40.253097], "type": "Point"}}, {"id": "3ff4932f-a02c-47e2-842c-6e87c98f970b", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "http://www.straphaelpgh.org/", "handicap": null, "phone": null, "venue_name": "St. Raphael, Morningside/Stanton Heights", "venue_address": "1154 Chislett St. Pittsburgh, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:30:00"}], "venue_notes": "St. Padre Pio Multi Purpose Room", "etc": "Join us for the Fish Fry!\r\nBegins this week! Every Friday\r\nduring Lent (including Good Friday)\r\nfrom 4:30 p.m.\u20147 p.m. in the\r\nSt. Padre Pio Multi-Purpose Room.\r\nEat in or Take-Out. Proceeds benefit\r\nSt. Raphael Elementary School. Please be sure to stop\r\nby our 8th Grade Bake Sale for dessert!\r\nProceeds benefit their field trip to Cedar Point.", "menu": {"url": "https://www.facebook.com/photo.php?fbid=10215181144472280&set=p.10215181144472280&type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.928966, 40.478645], "type": "Point"}}, {"id": "70e25d22-e834-47e7-aa94-bacd39267afa", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 132.0, "validated": false, "website": "https://www.facebook.com/vfd59/", "handicap": null, "phone": "724-468-9978", "venue_name": "Salem FD-Slickville VFD", "venue_address": "128 Main Street, Slickville, Pa. 15684", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}, {"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T16:00:00-04:00"}, {"dt_end": "2018-02-23T20:00:00-05:00", "dt_start": "2018-02-23T16:00:00-05:00"}, {"dt_end": "2018-03-02T20:00:00-05:00", "dt_start": "2018-03-02T16:00:00-05:00"}, {"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-03-09T20:00:00-05:00", "dt_start": "2018-03-09T16:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.520653, 40.460437], "type": "Point"}}, {"id": "9965de7c-3784-4450-9abd-1c7520019af0", "properties": {"lunch": null, "homemade_pierogies": null, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Shelleys Pike Inn Restaurant", "venue_address": "144 W Park Street, Houston, Pennsylvania 15342, United States", "venue_type": "Restaurant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "(test)", "menu": {"url": null, "text": "Come try our delicious breaded cod. Fish sandwich alone is $8.99, or get a fish sandwich, french fries, and coleslaw for $10.99."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.218302, 40.223398], "type": "Point"}}, {"id": "c16db8a8-c71d-4d4b-be9b-632caeadf81c", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 131.0, "validated": false, "website": null, "handicap": null, "phone": "724-966-7408", "venue_name": "Nemacolin Fire Department", "venue_address": "200 Roosevelt Ave, Nemacolin Pa 15351", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-09T18:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-16T18:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-30T18:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-23T18:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-02-16T18:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-02-23T18:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-03-02T18:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.930817, 39.875755], "type": "Point"}}, {"id": "26f48a90-c1f1-49a1-b2c7-002d6517ba3e", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "(412) 441-9495", "venue_name": "New Jerusalem Holiness Church", "venue_address": "111 Auburn Street, Pittsburgh, Pennsylvania 15206, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [], "venue_notes": "Where: Fellowship Hall. Use parking lot entrance on Larimer Avenue\r\n", "etc": "When: February 9, 16, 23, March 2, 9, 16, 30, April 6, 13, 20, 27\r\nTimes: 11am-6pm", "menu": {"url": null, "text": "Fish Sandwich $6.00\r\nFish Dinner (2 pieces) $9.00\r\nWing Dinner (5 wings) $9.00\r\n\u00bc Chicken (breast/wing or (thigh/leg) $9.00\r\nFish & Chicken Combo $12.00\r\nALL DINNERS COME WITH 2 SIDES, AND DESSERT\r\nChoice of 2 sides: green beans, greens, potato salad, macaroni & cheese, black eyed peas & rice\r\nDessert: Chocolate cake, lemon cake, pound cake, sweet potato pie\r\nAdditional sides or dessert $1.50\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.916209, 40.463718], "type": "Point"}}, {"id": "ce676937-be65-4884-9605-26ea9d71052b", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "www.icwashpa.net", "handicap": null, "phone": "724-222- 9737", "venue_name": "Immaculate Conception, Washington", "venue_address": "119 W. Chestnut St., Washington, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": "Ash Wednesday and Fridays of Lent, including Good Friday, 11 a.m.-7 p.m.", "menu": {"url": null, "text": "Menu features fried and baked fish sandwiches and dinners, fish tacos, clam chowder, macaroni and cheese, shrimp, pizza, pierogies, cabbage and noodles, desserts and drinks. Cost is $9 for dinner, $7 for sandwich."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.248403, 40.172023], "type": "Point"}}, {"id": "3fc22395-0024-4083-92ad-1f305b2ac1ab", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/Wilpen-VFD-165522976986550/", "handicap": null, "phone": "724-238-7221", "venue_name": "Wilpen VFD", "venue_address": "379 Wilpen Rd., Ligonier, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "4-7 every Friday of Lent", "menu": {"url": null, "text": "*Fish sandwiches *Baked fish *Homemade Haluski *Pierogies *Macaroni and Cheese *Desserts"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.195428, 40.281313], "type": "Point"}}, {"id": "69b4ad56-66d5-4e5e-9233-e54abca41432", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 149.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Hempfield #2 VFD", "venue_address": "421 Thornton, Greensburg, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.529453, 40.293724], "type": "Point"}}, {"id": "3369cddd-9f1a-4664-bcc6-3a732a8ea017", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://saintthomasabecket.com", "handicap": true, "phone": "412-655-2885", "venue_name": "St. Thomas A Becket, Jefferson Hills", "venue_address": "139 Gill Hall Road Pittsburgh, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-17T13:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T15:30:00"}, {"dt_end": "2018-02-23T13:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T15:30:00"}, {"dt_end": "2018-03-02T13:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T15:30:00"}, {"dt_end": "2018-03-10T13:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T15:30:00"}, {"dt_end": "2018-03-16T13:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T15:30:00"}, {"dt_end": "2018-03-23T13:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T15:30:00"}, {"dt_end": "2018-03-30T13:00:00", "dt_start": "2018-03-30T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:30:00"}], "venue_notes": null, "etc": "Pierogies available as a dinner special on Good Friday. \r\nLunch is takeout-only.\r\nTakeout available; call 412-655-9966", "menu": {"url": "http://saintthomasabecket.com/2017FishFrymenu.pdf", "text": "baked or fried fish dinner, $10; fried shrimp dinner, $10, combo dinner platter (fried fish and fried shrimp), $11; tuna melt sandwich with french fries and beverage, $7. Fish dinners include beverage, cole slaw or applesauce, and choice of one side (haluski, homemade macaroni and cheese, french fries, baked potato, vegetable). A variety of a la carte items available. Homemade crab cakes featured March 2 and 23, with pierogies March 30."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.964112, 40.316059], "type": "Point"}}, {"id": "c2bcf13c-4f19-4084-9f24-8a0f752997c4", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://skyview4.com/custom.html?id=17408", "handicap": null, "phone": "412-461-9553 ", "venue_name": "Skyview VFC", "venue_address": "660 Noble Dr., West Mifflin, PA", "venue_type": "Fire Department", "alcohol": false, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}, {"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}], "venue_notes": null, "etc": "11-7; Ash Wednesday and Fridays of Lent. Delivery available, $20 minimum", "menu": {"url": null, "text": "FISH SANDWICH $7.50\r\nFISH DINNER $9.00\r\nEXTRA BUN $1.00\r\nBAKED FISH $7.50\r\nBAKED FISH DINNER $9.00\r\n \r\nSHRIMP BASKET $7.00\r\nSHRIMP DINNER $8.50\r\n \r\nGRILLED CHEESE SANDWICH $3.00\r\nGRILLED CHEESE w/FRIES $4.25\r\n \r\nDEVILED CRAB $2.75\r\nCRAB CAKE $3.25\r\nCRAB CAKE DINNER $7.50\r\n \r\nMACARONI & CHEESE $3.75\r\nHALUSKI $3.75\r\nFRENCH FRIES $3.25\r\nCHEESE SAUCE $1.00\r\nCOLE SLAW (includes two) $2.75\r\nCOFFEE $1.00\r\n20oz BOTTLES of POP $1.75"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.929583, 40.360804], "type": "Point"}}, {"id": "85d32d97-89bd-436f-994a-8e09048423df", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-883-2445", "venue_name": "St. Thomas, Jefferson", "venue_address": "1340 Jefferson Rd, Jefferson, Pennsylvania 15344, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T12:00:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T12:00:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T12:00:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T12:00:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T12:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T12:00:00"}, {"dt_end": "2018-03-30T18:00:00", "dt_start": "2018-03-30T12:00:00"}], "venue_notes": "St. Marcellus Hall", "etc": "Fridays of Lent, including Good Friday, noon-3 p.m. (lunch, takeout only), 3:30-6 p.m. (dinner)", "menu": {"url": null, "text": "Menu includes fried and baked cod dinners, and shrimp dinner. A la carte menu includes macaroni and cheese, baked potato, shrimp, cole slaw, desserts, haluski and french fries. Cost is $9-$9.50 for adult dinner, $6.50 for sandwich. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.051713, 39.93486], "type": "Point"}}, {"id": "aae9d901-c82d-41d7-8a26-6a47e9fb608c", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/MSPParish/", "handicap": true, "phone": "724-335-1458", "venue_name": "Mount St. Peter (BYOB)", "venue_address": "100 Freeport Road, New Kensington, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T11:00:00"}], "venue_notes": "Marble Hall- back parking lot of the church", "etc": "Ash Wednesday & every Friday throughout Lent except Good Friday\r\nTimes: 11 a.m. \u2013 6 p.m.\r\nCredit/debit cards accepted. \r\n", "menu": {"url": "https://www.facebook.com/MSPParish/photos/pcb.1977790839105199/1977790629105220/?type=3&theater", "text": "Hand breaded Fish Dinner (baked or fried) with side order of steak fries, cole slaw and bun ($10.00)\r\nFish sandwich (hand breaded - baked or fried, bun) ($8.75)\r\nFried Shrimp and Steak Fries Basket (10 pieces with cole slaw) ($10)\r\nLinguine with marinara sauce and roll ($8.25)\r\nPasta Aglio e Oglio (garlic and oil) and roll ($8.25)\r\nSide of Linguine with Marinara Sauce ($4.25)\r\nSide of pasta aglio e oglio ($4.25)\r\nSide of Fried Shrimp (5 pieces) ($4.25)\r\nHomemade Mac n cheese ($4.25)\r\nPasta Fagiole (individual $3.75, quart $6.75)\r\nSteak Fries ($3.50)\r\nDessert ($2)\r\nCole Slaw ($1)\r\nPop/water ($1)\r\nHand breaded Fish Sandwich (baked or fried), with bun ($8.75)\r\nFried Shrimp & Steak Fries Basket (10 pieces shrimp with cole slaw) ($10.00)\r\nLinguine with homemade Marinara Sauce ($8.25)\r\nPasta Aglio e Oglio (galic & oil sauce) ($8.25)\r\nSide of Linguine with Marinara sauce ($4.25)\r\nSide of Pasta Aglio e Oglio ($ 4.25)\r\nSide of Fried Shrimp (5 pieces) ($ 4.25)\r\nHomemade Macaroni & Cheese ($4.25)\r\nPasta Fagioli (Italian bean & pasta soup) (Individual serving $3.75, Quart $ 6.75)\r\nSteak Fries ($ 3.50)\r\nHomemade Desserts ($2.00)\r\nCole Slaw ($ 1.50)\r\nPop/Water ($1.00)\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.761143, 40.563602], "type": "Point"}}, {"id": "84029e2f-ad16-458c-9b66-b79051c6ad24", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/americanserbianclubPittsburgh/", "handicap": null, "phone": "412-431-9351", "venue_name": "American Serbian Club", "venue_address": "2524 Sarah St., Pittsburgh, PA 15203", "venue_type": "Community Organization", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T14:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": "Events benefit Holy Trinity.", "etc": null, "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.969302, 40.426471], "type": "Point"}}, {"id": "0bf6161b-5063-4b55-b280-9b092fb405d3", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "www.saintjames-church.com", "handicap": true, "phone": "412-741-5540, press 2", "venue_name": "St. James, Sewickley", "venue_address": "200 Walnut St. Sewickley, Pa. 15143", "venue_type": "Church", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:30:00"}], "venue_notes": "school cafeteria", "etc": "Major credit cards accepted. Also, raffle for $1 each chance that will be chosen Good Friday. Prizes include \u201cEverything Pennsylvania\u201d gift basket, autographed and framed Steelers jerseys from Terry Bradshaw, Lynn Swann and Joe Green, and more. Also featuring 50/50 raffle.", "menu": {"url": null, "text": "Dinners include dinner roll and choice of two sides, plus choice of tea, coffee and lemonade for dine-in customers: fried fish plate, $11; Boston baked cod plate, $13; shrimp plate, $13; Atlantic salmon plate, $13. Choice of two sides: french fries, cole slaw, macaroni and cheese, green beans, carrots, haluski and applesauce. Customers receive free giveaway chance for each plate purchased. Family meal for takeout is $39, and includes four pieces of fried fish, with rolls and two family-size side dishes. Kids\u2019 menu has fish nuggets or pasta with sauce and one small side for $5. New this year, shrimp or fish nuggets and french fries basket for $10. A la carte menu: fish sandwich only, $8; pizza, $2 per slice; homemade soup, $2; pierogies, $5; linguini, $5; homemade desserts, $1; plus additional sides for $2 each. Beer and wine available for dine-in customers at additional cost. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.182422, 40.538575], "type": "Point"}}, {"id": "cf2bf255-577d-4e95-a86b-99474d3bde64", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "www.facebook.com/Ressifishfry", "handicap": false, "phone": "412-563-4400", "venue_name": "Resurrection, Brookline", "venue_address": "1100 Creedmoor Avenue, Pittsburgh, Pennsylvania 15226, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T13:30:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T13:30:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T13:30:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T13:30:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T13:30:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T13:30:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T13:30:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "in parish\u2019s garden room behind church on Chelton Avenue (church and parking lot at 1100 Creedmoor Ave.)... not handicap accessible", "etc": "not handicap accessible", "menu": {"url": null, "text": "Dinner includes generous portions of hand beer-battered fish on fresh Breadworks bun, or baked fish, with choice of homemade macaroni and cheese or french fries, choice of cole slaw or apple sauce, and veggie or stewed tomatoes. Also featuring homemade desserts, coffee, tea or iced tea. A la carte menu includes homemade pierogies, homemade haluski and cheese pizza. Cost: $12 adult dinner; $8 child; $8 sandwich. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.015635, 40.391031], "type": "Point"}}, {"id": "49797524-af03-4018-a215-70b29393ba9a", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://stmarykittanning.org/Pages/default.aspx", "handicap": null, "phone": null, "venue_name": "St. Mary Our Lady of Guadalupe Parish", "venue_address": "101 West High Street, Kittanning, Pennsylvania 16201, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "Parish hall", "etc": "When: All Fridays of Lent except Good Friday\r\nTimes: 4:00 to 7:00 pm\r\nDesignated take-out area for quick service!\r\n", "menu": {"url": "http://stmarykittanning.org/Documents/Lenten%20Fish%20Dinners%20Flyer%202018%20-%20final.pdf", "text": "Fried or baked fish, or fried shrimp choice of fries, baked potato or homemade mac & cheese choice of cole slaw or applesauce price includes beverage and dessert"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.524888, 40.81781], "type": "Point"}}, {"id": "0c9abf0a-b413-44ac-a4b9-2f630b1a965b", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.elks.org/lodges/lodgefacilities.cfm?LodgeNumber=1668", "handicap": true, "phone": "412-828-1668", "venue_name": "Oakmont Elks", "venue_address": "106 Washington Ave., Oakmont, PA", "venue_type": "Community Organization", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": "Dinner in the main dining room.", "etc": "Seating and pickup 11am-7pm", "menu": {"url": null, "text": "Fish Dinner (baked or fried) $9; Shrimp Dinner $10. Dinners include fries and coleslaw. Sides $2: Mac & Cheese, Haluski."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.847427, 40.516208], "type": "Point"}}, {"id": "4a4d944d-36c5-43aa-984c-6a737208951e", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-476-1476", "venue_name": "St. Alphonsus, West Sunbury - Feb 16 and March 23 only", "venue_address": "202 E State St, West Sunbury, Pennsylvania 16061, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "parish hall", "etc": "Fridays, Feb. 16 and March 23, 4-6 p.m.", "menu": {"url": null, "text": "Menu includes baked or fried fish, choice of side (scalloped potatoes, french fries, macaroni and cheese), green beans, cole slaw, dessert and beverage. Dinners are $10 for adults, $5 for child. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.898134, 41.005222], "type": "Point"}}, {"id": "de772888-b191-4d37-8d3a-c230dc60e562", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/pages/Italian-Independent-Club/115216795168326", "handicap": null, "phone": "\t(724) 745-9878", "venue_name": "Muse Italian Club", "venue_address": "283 Muse-Bishop Road, Muse, PA", "venue_type": "Community Organization", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "Mon-Sun 7am-10pm", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.203134, 40.297357], "type": "Point"}}, {"id": "36370458-953f-4826-bee9-dc4474c79a8d", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://stjosephveronapa.com/event/fish-fry/", "handicap": false, "phone": "412-795-5114", "venue_name": "St. Joseph, Verona", "venue_address": "825 Second Street, Verona, Pennsylvania 15147, United States", "venue_type": "Church", "alcohol": false, "take_out": null, "email": "joevchurch@verizon.net", "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "Dine-in cafeteria or get your meal to go. Delivery is available to parish shut-ins. Orders must be placed on Tuesday for Ash Wednesday and on Thursday for the Friday dinners. To place an order, call 412-795-5114 from noon-2 p.m. to place your order.", "menu": {"url": "http://stjosephveronapa.com/wp-content/uploads/2018/01/2018_fish_fry.pdf", "text": "Regular Fish Dinner, $10.00 ($9.00 for seniors). Regular Shrimp Dinner, $10.00 ($9.00 for seniors). See menu link for dinner descriptions and an extensive list of Ala Carte items."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.835611, 40.506643], "type": "Point"}}, {"id": "94f14cb8-5ce8-4a70-bdec-7cb8f5f1fa84", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 320.0, "validated": false, "website": null, "handicap": null, "phone": "304-845-2646", "venue_name": "St. Jude Catholic Church", "venue_address": "710 Jefferson Ave., Glen Dale, WV", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T18:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-09T18:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-23T18:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-30T18:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.742926, 39.917986], "type": "Point"}}, {"id": "65cc9fbf-d718-40ea-8e33-c23d650014e8", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "http://www.trinitychurchlb.net/", "handicap": null, "phone": "724-230-0866", "venue_name": "Trinity United Christian Church", "venue_address": "3400 Garvers Ferry Rd., Lower Burrell, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T18:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": "Cafeteria/social hall", "etc": "Dates & Times: Fridays starting 2/16/18 to 3/23/18 \u2013 4:00pm \u2013 7:00pm; Good Friday (3/30/18) 3:00 pm \u2013 6:00pm", "menu": {"url": null, "text": "Battered cod sandwich $9.00\r\nBattered cod (on a plate) $8.50\r\nBaked lemon-pepper cod $8.50\r\nFresh-cut french fries $1.50\r\nCreamy mac and cheese $1.50\r\nHaluski (cabbage and noodles) $1.50\r\nCole slaw $1.50\r\nHomemade broccoli & cheese soup $1.50\r\nAdd: American cheese (2 slices) $0.50\r\nAdd: Cheddar cheese sauce (4 oz. Cup) $0.50\r\nFree Items\r\nDill Pickles\r\nMild Peppers\r\nKetchup\r\nTarter Sauce\r\nCoctail Sauce\r\nHot Sauce\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.709254, 40.603583], "type": "Point"}}, {"id": "4f7ee4b1-1474-4544-ae26-2bce8997e483", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.mhtcc.org/", "handicap": null, "phone": " 814-643-0160 ", "venue_name": "Most Holy Trinity, Huntingdon", "venue_address": "524 Mifflin Street, Huntingdon, Pennsylvania 16652, United States", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T18:30:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T18:30:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T18:30:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T18:30:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T18:30:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T18:30:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Baked or Fried Fish Meal $9.50\r\n\r\n (includes cole slaw or applesauce, mac-n-cheese, roll, stewed tomatoes, homemade dessert). Drinks included in Dine-In Only.\r\n\r\n\"NEW THIS YEAR\" - Cheese Pizza Slice $4.00\r\n\r\n Includes Cole Slaw or Applesauce and Homemade Dessert"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-78.012017, 40.486385], "type": "Point"}}, {"id": "508db366-3d0b-47c1-ba60-fb068a3d6cd8", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "www.sbapeters.org", "handicap": true, "phone": "724-941-9406", "venue_name": "St. Benedict the Abbot, Peters Township", "venue_address": " 120 Abington Dr, McMurray, PA 15317", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T13:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-16T19:30:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T13:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-02-23T19:30:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T13:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-02T19:30:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T13:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-09T19:30:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T13:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-16T19:30:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T13:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-23T19:30:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": null, "etc": "Fridays of Lent, except Good Friday, 11 a.m.-1 p.m. (lunch), 4-7:30 p.m. (dinner). ", "menu": {"url": null, "text": "Lunch menu includes fried fish basket with french fries and cole slaw, macaroni and cheese and pizza. Dinner menu includes fried and baked fish, fried shrimp, fish tacos and pasta with marinara sauce. Weekly soup provided by Jackson\u2019s Restaurant at the Hilton Garden Inn at Southpointe. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.08578, 40.283122], "type": "Point"}}, {"id": "f3fc3f94-3685-4ed7-a3e2-a062cdb765c8", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "http://www.goodsam1.org", "handicap": true, "phone": "724-266-6010 ", "venue_name": "Good Samaritan Parish", "venue_address": "8th and Melrose, Ambridge, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": "Office@goodsam1.org", "events": [{"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}], "venue_notes": "Jericho Hall", "etc": "Delivery available to Ambridge local area. $20.00 minimum, please call 30 minutes ahead to order. ", "menu": {"url": "http://www.goodsam1.org/documents/FishFry2018.pdf", "text": "Menu features fried and baked fish, french fries, macaroni and cheese, haluski, shrimp and crab cakes."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.228207, 40.589161], "type": "Point"}}, {"id": "55e076a1-70cf-425b-b3ab-0e9539bc6de2", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "https://wholey.com/kitchen-menu/", "handicap": null, "phone": "412-391-3737", "venue_name": "Robert Wholey & Co Inc", "venue_address": "1711 Penn Avenue, Pittsburgh, PA", "venue_type": "Market", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:00:00", "dt_start": "2018-02-14T08:00:00"}, {"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T08:00:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T08:00:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T08:00:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T08:00:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T08:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T08:00:00"}, {"dt_end": "2018-03-30T18:00:00", "dt_start": "2018-03-30T08:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://wholey.com/kitchen-menu/", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.98599, 40.450032], "type": "Point"}}, {"id": "17e08daa-12a5-468f-a7a8-bd58e0d6693d", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "http://holyapostlesparish.org/", "handicap": true, "phone": "412-440-0221", "venue_name": "Holy Apostles Parish at St. Albert the Great, Baldwin", "venue_address": "3198 Schieck St", "venue_type": "Church", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-15T15:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T15:00:00"}, {"dt_end": "2018-02-16T14:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T15:00:00"}, {"dt_end": "2018-02-23T14:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T15:00:00"}, {"dt_end": "2018-03-02T14:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T15:00:00"}, {"dt_end": "2018-03-09T14:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T15:00:00"}, {"dt_end": "2018-03-16T14:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T15:00:00"}, {"dt_end": "2018-03-24T14:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T15:00:00"}, {"dt_end": "2018-03-30T14:00:00", "dt_start": "2018-03-30T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": "All items are a la carte. Food is brought to your table after ordering. Seating available in upper hall. ", "etc": "Credit cards and checks welcome.", "menu": {"url": "http://holyapostlesparish.org/wp-content/uploads/2018/02/fish-fry-menu-2018.pub_.pdf", "text": "Panko breaded Icelandic Cod fried fish sandwich $6.00\r\n* Panko breaded Icelandic Cod fried fish on a dish $6.00\r\nOrange juice and herb baked Icelandic Cod fish $6.00\r\n(Gluten free available)\r\nBreaded Shrimp (8 per order) $6.00\r\nMaryland Crab Cakes (2 per order) $6.00\r\nPotato and cheese Pierogis (6 per order) $6.00\r\n* Tuna salad croissant w/ lettuce and tomato $4.00\r\nCheese Pizza\u2026$2.00\r\nFried Wheel of Provolone Cheese with marinara $4.00\r\n* SOUP: $4.00 (12 oz.)\r\nNew England Clam Chowder\r\nNEW Soup du Jour (weekly)\r\n ALL SIDES: $2.00\r\n* French Fries\u2026* Coleslaw\u2026 * Haluski\u2026\r\n* Stewed Tomatoes\u2026* Side salad...Macaroni and Cheese\r\nPotato Pancakes (2 per order) Potato Pierogi (2 per order)\r\nAssorted Desserts\u2026$1.00\r\nDONUTS: Fresh made\u2026 .75\u00a2 each; $7.50/dozen\u2026 (plain, iced, sugar, jimmies)\r\nBeverages: Soda/Bottled water\u2026$1.00 \u2026. Beer\u2026$2.00 Coffee/Tea ... Free"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.961613, 40.386655], "type": "Point"}}, {"id": "38d4fee7-88b9-4bc0-ba79-7e0effb1d872", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 170.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Brown Chapel AME Church", "venue_address": "1400 Boyle St. Pittsburgh, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.006315, 40.457463], "type": "Point"}}, {"id": "9d6db8eb-0e57-4cc3-b127-c913b852f5b8", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 72.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Sciullo's 910 Deli and Catering", "venue_address": "4358 Gibsonia Road, Gibsonia, PA", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.920841, 40.621799], "type": "Point"}}, {"id": "3de4ce55-0ea3-4ae1-bda4-9e5d958b77f3", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "http://www.rennerdalevfd.com", "handicap": null, "phone": "412-276-9652", "venue_name": "Rennerdale VFD", "venue_address": "30 Suburban Ave., Rennerdale, PA 15106", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:30:00"}], "venue_notes": null, "etc": "Friday February 16, 23 March 2, 9, 16, 23\r\n4:30pm to 7:00pm\r\nhttp://www.rennerdalevfd.com/teams/default.asp?u=RENNERDALEVFD&s=htosports&p=custom&pagename=Fish+Fry", "menu": {"url": null, "text": "All dinners come with two (2) sides and one (1) drink\r\n1 \u2013 Shrimp Dinner \u2013 $12.00\r\n2 \u2013 Baked Cod Fish Dinner \u2013 $10.00\r\n3 \u2013 Breaded Cod Fish Sandwich Dinner \u2013 $10.00\r\n4 \u2013 Kids Chicken Plank Dinner \u2013 $ 6.00\r\nBreaded Fish Sandwich / Breaded or Baked Fish on a Dish \u2013 No Sides \u2013 $ 7.00\r\nSides\r\nHalushki \u2013 $ 4.00\r\nFrench Fry\u2019s \u2013 $ 4.00\r\nMac & Cheese \u2013 $ 4.00\r\nSteamed Vegetables \u2013 $ 4.00\r\nStewed Tomato\u2019s \u2013 $ 4.00\r\nCole Slaw \u2013 $ 4.00\r\nDeserts, Beverages \u2013 $1.00\r\nNew Online Order and Drive Up Take Out Service\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.142647, 40.397699], "type": "Point"}}, {"id": "165e5649-9c2e-4c37-a85d-c8c980097e60", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "(724) 483-4072", "venue_name": "St. Mary's Anglican Church", "venue_address": "509 Sixth Street, Charleroi, Pennsylvania 15022, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T11:00:00"}], "venue_notes": "social hall", "etc": "When: every Friday throughout Lent except Good Friday\r\nTimes: 11 a.m. - 6 p.m.", "menu": {"url": null, "text": "Fish OR Crab Cake Dinner with Cole Slaw, Hushpuppies and choice of Fries/Halushki/Mac & Cheese $12.00; Fish Sandwich $10.00; Crab Cake Sandwich $6.00; Halushki $5.00; Mac & Cheese $4.00 (1/2 Qt.) or $7.00 (1 Qt.); Pierogies (7) with Butter & Onions $6.00; Fries $2.00; Hushpuppies (5) $1.50; Kid\u2019s Fish Stick Dinner with Fries or Mac & Cheese $4.00; Soda or Bottled Water $1.00\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.900993, 40.137828], "type": "Point"}}, {"id": "7f6503b3-a2ff-4775-a4c6-50311658be44", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-449-9946", "venue_name": "St. Richard, Richland Township", "venue_address": "3841 Dickey Road, Gibsonia, Pennsylvania 15044, United States", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T14:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T14:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T14:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T14:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T14:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T14:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Lunch menu features fish sandwich with 12-ounce fish on a bun, french fries and cole slaw for $8. Advance orders taken for lunch, call 724-449-9946, or fax 724-444-6001. Dinner entrees feature baked or fried fish, or shrimp for $10, and includes fish, cole slaw, choice of one side (macaroni and cheese, haluski, french fries), roll and dessert. Also: kids\u2019 meal, $5; fish sandwich, $8; jumbo shrimp, $5. Slice of pizza also available, plus additional sides can be purchased for $2. \r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.966245, 40.634223], "type": "Point"}}, {"id": "e7fa30a5-aa67-40ff-aaa1-bda67507dd0a", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "724-592-5765", "venue_name": "Rices Landing Volunteer Fire Department", "venue_address": "66 Bayard Ave. Rices Landing, Pa. 15357", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T20:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": "social hall", "etc": "When: Ash Wednesday 4-8; Fridays Until Easter 11-7", "menu": {"url": null, "text": "Dinners (All Come With Choice of 2 Sides and Drink)\r\nFish Diner $10.00\r\nShrimp Dinner $10.00\r\nClam Strip Dinner $10.00\r\nHand Breaded Ocean Perch Dinner $10.00\r\nChicken Strip Dinner $10.00\r\nSides\r\nBeer Battered Fries $3.00\r\nCole Slaw $2.00\r\nMac and Cheese $3.00\r\nCabbage and Noodles $3.00\r\nPierogi $3.00\r\nSoup of the Day $3.00\r\nOther Items\r\nHot Pepper Cheese Balls $3.00\r\nBlack Angus Burger $4.00\r\nCheese Sticks $3.00\r\nDesserts Available for Eat in and Takeout\r\nCondiments-Lettuce, Tomato, Onion, Pickle, Cheese, BBQ, Red Hot, Ketchup, Marinara, Ranch\r\nDrinks-Pepsi Diet Pepsi Mtn Dew, Dr Pepper, Coke, Diet Coke, Sprite, Water, Coffee\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.992234, 39.945374], "type": "Point"}}, {"id": "0d163805-eec0-4278-8fcb-9002a161cae7", "properties": {"lunch": true, "homemade_pierogies": true, "cartodb_id": 164.0, "validated": false, "website": "http://www.ourplacehomemade.comcastbiz.net/", "handicap": null, "phone": "412-646-2786", "venue_name": "Our Place Homemade", "venue_address": "105 Middle Ave., Wilmerding, PA", "venue_type": "Restaurant", "alcohol": false, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-23T20:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-02-14T20:00:00-05:00", "dt_start": "2018-02-14T11:00:00-05:00"}, {"dt_end": "2018-03-09T20:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-02-16T20:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-02T20:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}], "venue_notes": null, "etc": "Homemade Fish Sticks!", "menu": {"url": null, "text": "Fish Sandwich , 1 lb Giant Fish Hoagie , Tuna Salad , Homemade Fish Sticks , Shrimp Basket Stuffed Shrimp , Stuffed Flounder , Crab Cakes , Fish Dinner Special Sides: Mac & Cheese , Fresh Cut Fries , Pierogies , Haluksi , New England Clam Chow"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.803132, 40.395375], "type": "Point"}}, {"id": "37e5660e-9ec0-4c5c-8312-57f24783acc4", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "https://www.holysepulcher.org/uploads/media/2017_Fish_Dinner_Flyer_for_Bulletin.pdf", "handicap": null, "phone": "724-586-7610", "venue_name": "Holy Sepulcher, Glade Mills", "venue_address": "1304 E. Cruikshank Road Glade Mills, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": "hsc.office@zoominternet.net", "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:30:00"}], "venue_notes": "held in the school cafeteria", "etc": "Every Friday in Lent (Feb. 16-March 30) from 4:30-7pm", "menu": {"url": "https://www.holysepulcher.org/uploads/media/Fish_fry_menu.pdf", "text": "Dinner: $10; 8.50 for seniors; $7.50 for kids\r\nBaked or Fried Fish, Breaded Shrimp includes 2 sides, drink and dessert.\r\nBaked or Fried Fish sandwich with chips: $7.50\r\nPizza: $8.00 (Plain, extra cheese, mushroom)\r\nSides (price to add extra beyond 2)\r\nFries (1.50)\r\nHaluski (1.50)\r\ngreen Beans (1.50)\r\nScalloped Potatoes (1.50)\r\nMac & Cheese (1.50)\r\nDessert (2.50)\r\nExtra Fish or Shrimp (5.00)"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.923069, 40.72973], "type": "Point"}}, {"id": "751c974c-0625-4e54-8667-e78199c109f7", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 45.0, "validated": false, "website": "http://www.strosaliaparish.org", "handicap": true, "phone": "412-521-9987", "venue_name": "St. Rosalia Academy, Greenfield", "venue_address": "411 Greenfield Ave. Pittsburgh, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00-05:00", "dt_start": "2018-02-14T11:00:00-05:00"}], "venue_notes": "Wuerl Hall", "etc": "***ASH WEDNESDAY ONLY*** Saint Rosalia Academy along with Saint Rosalia Parish will be having a Fish Fry on Ash Wednesday, March 1, 2017, from 11:00am-7:00pm . ", "menu": {"url": null, "text": "Menus are available at the entrances to the Church."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.943023, 40.42573], "type": "Point"}}, {"id": "397b2d7c-1ecd-4bd5-b550-bb06c27e093d", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": " www.corpuschristimckeesport.com", "handicap": true, "phone": "412-672-6004", "venue_name": "Corpus Christi", "venue_address": "803 Market St, McKeesport", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T10:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T10:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T10:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T10:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T10:00:00"}], "venue_notes": null, "etc": "Takeout available; call 412-672-6004 or fax 412-872-5097. Last phone/fax order taken at 5 p.m., last delivery at 6 p.m. Ten percent of the net profits go to the Greater Pittsburgh Community Food Bank. ", "menu": {"url": null, "text": "hand-breaded fried fish sandwich, large $7, small $5; fried butterfly shrimp (six pieces), $6; baked fish, $6; tuna salad croissant, $4; toasted cheese sandwich, $3; tuna melt sandwich, $5. Sides include: homemade potato pierogies with butter and onions, tomato soup, potato pancakes, cabbage with homemade noodles, baked macaroni and cheese, french fries, hush puppies, stewed tomatoes, cole slaw, applesauce, pickle. Soup of the week menu: Feb. 16 and March 9, broccoli cheese; Feb. 23, vegetable; March 2 and 23, New England clam chowder; March 16, lobster bisque. Sale also features thin crepes filled with sweet cream filling, two for $3. Beverages are $1. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.865687, 40.347688], "type": "Point"}}, {"id": "42cd1db8-af63-4041-906b-f3e08023dcd9", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 124.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Monongahela Elks Lodge", "venue_address": "444 Jackson St, Monongahela, PA 15063", "venue_type": "Community Organization", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.927167, 40.199815], "type": "Point"}}, {"id": "7de7327d-f86f-44f7-81b1-65452ce1b77a", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.stmargschool.com/", "handicap": null, "phone": "412-922-7279", "venue_name": "St. Margaret of Scotland School", "venue_address": "310 Mansfield Avenue, Pittsburgh, Pennsylvania 15220, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "school cafeteria", "etc": "Fridays of Lent, except Good Friday, 4-7 p.m.", "menu": {"url": null, "text": "Sandwiches (no sides): fried or baked fish, crab cake $7. Fish on a dish (no sides): fried or baked fish $6. Dinners (pick Two sides): Two Crab Cake $7; Fried or Baked fish $8; Shrimp in a Basket $7; Fried Fish Sandwich $8; Baked Fish Sandwich $8. (Dinners include your choice of two: Fries, Baked Potato, Cole Slaw or Vegetable. Family special includes four fish sandwiches, french fries and Cole Slaw for $30. A la carte menu: Two Crab Cakes $4; Shrimp in a basket $5; hand-cut french fries $4; baked potato $3; macaroni and cheese $4; pizza $4; haluski $4; 3 pierogies $4; Cole Slaw $1; vegetable $2; Two Dinner Rolls $1. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.04744, 40.422391], "type": "Point"}}, {"id": "a3f94937-8957-4c58-bf92-9af57339bcb1", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 125.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "South Brownsville VFC", "venue_address": "530 water street, Brownsville, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.894309, 40.020716], "type": "Point"}}, {"id": "b38ad58f-e5b1-42a9-a255-2503e1fc6cf7", "properties": {"lunch": false, "homemade_pierogies": true, "validated": true, "website": "www.stanneparish.com", "handicap": true, "phone": "412-561-0100", "venue_name": "Church of St Anne Fish Fry", "venue_address": "4040 Willow Ave, Castle Shannon", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "Location is a school, fish fry in the gym", "etc": "For takeout, call 412-561-0100 from 3:30-6:30 p.m., for orders picked up from 4-6 p.m. For information, call 412-531-5964, or visit www.stanneparish.com. Sponsored by parish\u2019s fair committee to benefit school.\r\n", "menu": {"url": null, "text": "Menu includes: baked or fried fish dinners; fried seafood platter; shrimp dinners; baked fish Florentine; crab cake dinners; jumbo fish sandwiches; cole slaw; french fries; onion rings; baked potatoes; homemade pierogies; macaroni and cheese; haluski; pizza."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.029514, 40.361295], "type": "Point"}}, {"id": "643c8ec6-bbd5-4d28-8f7b-c2fb9d98ab76", "properties": {"lunch": true, "homemade_pierogies": false, "validated": true, "website": "www.stmpgh.org/morefish", "handicap": true, "phone": "412-833-0031", "venue_name": "St. Thomas More, Bethel Park", "venue_address": "126 Fort Couch Road, Bethel Park, PA", "venue_type": "Church", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-02-16T13:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T13:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T13:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T13:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T13:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T13:00:00", "dt_start": "2018-03-23T11:00:00"}], "venue_notes": null, "etc": "Fridays of Lent, except Good Friday, 4:30-7:30 p.m., Family Life Center, 126 Fort Couch Road. Online orders offered. Credit cards accepted (no American Express). ATM available on-site. Gluten-free options available. \r\n\r\nFeaturing homemade pasta sauces by Lucia Facco\r\nFebruary 16 \u2013 Shrimp Sauce\r\nFebruary 23 \u2013 Three Pepper Sauce\r\nMarch 3 \u2013 Smoked Salmon Sauce\r\nMarch 9 \u2013 Shrimp Sauce\r\nMarch 16 \u2013 Three Pepper Sauce\r\nMarch 23 \u2013 Smoked Salmon Sauce", "menu": {"url": null, "text": "Lunch Meal is Hand-breaded 8oz cod filet fried to a golden brown served with Breadworks hoagie roll, coleslaw, and bag of chips.$8.00\r\nDinner options include: \r\n1. Hand-breaded Fried Fish Dinner with French fries or pasta marinara\r\n2. Hand-breaded Fried Fish Sandwich with French fries or pasta marinara\r\n3. Baked Fish Dinner with French fries or pasta marinara\r\n4. Pasta with Marinara\r\n5. Pasta with Featured Sauce\r\n\r\n$10.00 for adults, $5.00 for children\r\n\r\nPizza (regular or white) \u2013 $2 per slice, $10 whole pizza\r\nFrench fries \u2013 $3\r\nMacaroni and cheese \u2013 $4\r\nSoup du jour \u2013 $4\r\nFish Sandwich \u2013 $8"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.052163, 40.342445], "type": "Point"}}, {"id": "58f84cdd-1d6f-4a61-aa0a-2a3a156d10ac", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "http://holytrinitywashingtonpa.org/", "handicap": null, "phone": null, "venue_name": "Holy Trinity National Catholic Church", "venue_address": "605 Hewitt Ave. Washington, PA 15301", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}], "venue_notes": "Parish social hall", "etc": "every Friday throughout Lent; no fish fry on Good Friday\r\nTimes: 11 a.m. to 7 p.m. \r\n(724) 225-3401 for delivery only", "menu": {"url": null, "text": "FISH SANDWICH $6.50\r\nPIEROGI (each) $1.00\r\nCABBAGE & NOODLES $2.50\r\nCLAM CHOWDER $3.00\r\nCOLE SLAW $1.50\r\nFRENCH FRIES $2.50\r\nMACARONI & CHEESE $2.50\r\nPOTATO PANCAKES (3) $2.50\r\nDRINKS $1.00\r\nDESSERT Cake, Pie $2.00\r\nCOFFEE/ HOT TEA $1.00\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.248628, 40.174551], "type": "Point"}}, {"id": "5b1567ad-a762-4153-b651-3f1e3ffe88ab", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/Colemans-Fish-Market-369493546495465/", "handicap": null, "phone": "(304) 232-8510", "venue_name": "Coleman's Fish Market", "venue_address": "2226 Market St, Wheeling, WV 26003", "venue_type": "Market", "alcohol": null, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": "Hours 9-5:30", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.724067, 40.059102], "type": "Point"}}, {"id": "2de3428c-a57d-43ab-bbae-6a7f46dcc111", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": null, "handicap": true, "phone": "(412) 794-8233", "venue_name": "Nox's Tavern and Grill", "venue_address": "720 Blaw Ave Pittsburgh, Pennsylvania", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T23:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T23:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T23:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T23:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T23:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T23:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T23:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T23:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": "11 a.m. - 11 p.m. daily. Lenten menu starts Feb. 14", "menu": {"url": "https://www.facebook.com/593528547391999/photos/a.605167292894791.1073741827.593528547391999/1569471459797698/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.862612, 40.492498], "type": "Point"}}, {"id": "c1e40c76-ba65-45f3-9ef7-1e57befe2384", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.saintmonica.us/", "handicap": null, "phone": null, "venue_name": "St. Monica", "venue_address": "116 Thorndale Drive, Beaver Falls, Pennsylvania 15010, United States", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "4-7pm", "menu": {"url": "http://www.saintmonica.us/events/fish-fry-7/", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.356114, 40.765526], "type": "Point"}}, {"id": "edf627f9-3b87-406c-a354-97a39263e9e1", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.hcvfd.org/", "handicap": null, "phone": null, "venue_name": "Harrison City VFD", "venue_address": "1010 Mill St, Harrison City, PA 15636", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "http://www.hcvfd.org/apps/public/news/newsView.cfm?News_ID=145", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.650425, 40.353405], "type": "Point"}}, {"id": "edcc2dea-2e0f-4407-9137-e8e9496b8017", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 138.0, "validated": false, "website": null, "handicap": null, "phone": "724-267-3112", "venue_name": "Marianna VFC", "venue_address": "85 Broad Street, Marianna, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}], "venue_notes": null, "etc": "No fish fry March 10th", "menu": {"url": "https://www.facebook.com/pages/Mananna-Volunteer-Fire-Department/155045657864372", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.085837, 40.022791], "type": "Point"}}, {"id": "58561525-7c93-4ee0-be6c-727fb446b356", "properties": {"lunch": true, "homemade_pierogies": false, "validated": true, "website": null, "handicap": true, "phone": "412-828-9846", "venue_name": "St. Iranaeus", "venue_address": "387 Maryland Avenue, Oakmont, Pennsylvania 15139, United States", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T13:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T13:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T13:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T13:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T13:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T13:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "Blough Hall", "etc": null, "menu": {"url": null, "text": "Dinner menu: gluten-free baked fish; beer-battered fish; fried shrimp; tuna salad on croissant. \u201cFamous\u201d salad bar is included with all dinners, plus a choice of one side. Sides: macaroni and cheese; homemade haluski; baked potato; pierogies. Beverages are free for all dine-in dinners. Also featuring selection of homemade desserts. Dinners are $9.50. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.841161, 40.519276], "type": "Point"}}, {"id": "a129eea8-5085-4256-8f1a-e6007abfb816", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "412-829-7422", "venue_name": "Fire Department of North Versailles at the South Wilmerding Social Club", "venue_address": "830 Sylvan Ave., North Versailles, PA", "venue_type": "Fire Department", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T20:00:00", "dt_start": "2018-02-14T10:30:00"}, {"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T10:30:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T10:30:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T10:30:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T10:30:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T10:30:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T10:30:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T10:30:00"}], "venue_notes": "SWSC building. Enter through double doors on Sylvan Avenue.", "etc": null, "menu": {"url": "http://fdnv.org/custom.html?id=19433", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.795318, 40.389236], "type": "Point"}}, {"id": "cf6c58cf-a216-4930-b6c7-80c3863f533a", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 266.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Our Lady of the Lake", "venue_address": "128 Sunset Drive, Edinboro PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T17:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T17:00:00-04:00"}], "venue_notes": null, "etc": "March 3, 17, 24, 31, and April 7", "menu": {"url": null, "text": "baked or fried fish. adult $10, child donation $5. includes baked potato or mac and cheese, coleslaw, green beans, bread, refreshments, and dessert. Tickets and takeout at the door."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.136584, 41.874356], "type": "Point"}}, {"id": "bfe17408-ffd6-4eb4-b88a-96fc0d497bc5", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/keithskatering/", "handicap": null, "phone": "412-373-6788", "venue_name": "Keith Heinritz Katering", "venue_address": "209 Brinton Ave, Trafford, PA", "venue_type": "Restaurant", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T21:00:00", "dt_start": "2018-02-16T10:30:00"}, {"dt_end": "2018-02-23T21:00:00", "dt_start": "2018-02-23T10:30:00"}, {"dt_end": "2018-03-02T21:00:00", "dt_start": "2018-03-02T10:30:00"}, {"dt_end": "2018-03-09T21:00:00", "dt_start": "2018-03-09T10:30:00"}, {"dt_end": "2018-03-16T21:00:00", "dt_start": "2018-03-16T10:30:00"}, {"dt_end": "2018-03-23T21:00:00", "dt_start": "2018-03-23T10:30:00"}, {"dt_end": "2018-03-30T21:00:00", "dt_start": "2018-03-30T10:30:00"}], "venue_notes": null, "etc": "10:30am-9pm", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.762428, 40.382784], "type": "Point"}}, {"id": "bee8d6fa-cf84-4104-a80f-1deb316aa914", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 80.0, "validated": false, "website": "http://www.spitfirez.com/", "handicap": null, "phone": "412-824-3922", "venue_name": "Spitfirez", "venue_address": "316 Airbrake Avenue, Wilmerding, PA", "venue_type": "Restaurant", "alcohol": false, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "Starts March 1st as part of the regular menu", "menu": {"url": null, "text": "1/2 pound Haddock sandwich and platter with fryz and slaw."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.806066, 40.39542], "type": "Point"}}, {"id": "e686efee-a033-4e88-a2cf-8e2c0a6c9cb5", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "412-461-9503", "venue_name": "Holy Angels (Hays)", "venue_address": "408 Baldwin Road Pittsburgh, Pa. 15207", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T18:30:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T18:30:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T18:30:00", "dt_start": "2018-03-30T11:00:00"}, {"dt_end": "2018-02-14T18:30:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T18:30:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T18:30:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T18:30:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T18:30:00", "dt_start": "2018-03-09T11:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Dinners: fried fish sandwich, $10, includes french fries and cole slaw; baked fish dinner, $10, includes baked potato, cole slaw and roll. Side-dish menu: macaroni and cheese; baked potato; french fries; bun (sandwich); cole slaw. Also featuring cheese pizza, $8 for whole, $1 per slice. Soup menu featuring New England clam chowder and Maryland crab for $3 each. Also, a la carte menu, beverages and dessert."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.93301, 40.387258], "type": "Point"}}, {"id": "7e6bc244-82e4-4e42-b432-de664ec171ec", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 1.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Bioni-Yeckel VFW Post 8308", "venue_address": "446 Georgetown Rd. Lawrence, Pa. 15055", "venue_type": "Veterans", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.126931, 40.305571], "type": "Point"}}, {"id": "ea4ba552-ba73-4ec7-ac02-d7fab2ca8360", "properties": {"lunch": true, "homemade_pierogies": false, "cartodb_id": 295.0, "validated": false, "website": "http://www.otbbicyclecafe.com/", "handicap": false, "phone": "xxx-xxx-xxxx", "venue_name": "OTB Bicycle Cafe", "venue_address": "2518 East Carson St, Pittsburgh, PA 15203", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "We will be featuring a Colossal Fish sandwich with lettuce and tomato, Guinness Fish tacos with lime slaw, avocado, and pico de gallo, and last but not least, our OTB Shrimp Po Boy!!"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.969068, 40.427401], "type": "Point"}}, {"id": "629f673c-07be-4e90-9959-5e346beae92b", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 87.0, "validated": false, "website": null, "handicap": null, "phone": "724-335-8130", "venue_name": "Arnold Volunteer Fire Company", "venue_address": "601 Drey St., Arnold, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": "In the Public Safety Building", "etc": "Call for details", "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.767803, 40.580214], "type": "Point"}}, {"id": "c663d3a8-3e65-48fc-abd1-91d81af11a72", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "http://harrisgrill.com/", "handicap": null, "phone": "(412) 362-5273 ", "venue_name": "Harris Grill", "venue_address": "5747 Ellsworth, Pittsburgh, PA", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": "Begins Ash Wednesday February 14. Offered every day through Good Friday.\r\n11:30 AM - 10 PM \r\nMonongahela Mullet Fish Sandwich Served with Fries or Coleslaw $10.88; we also serve pierogies (which aren't made in house, but are the same that are available at S & D Polish Deli).", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.931308, 40.455965], "type": "Point"}}, {"id": "8c89db5f-5295-43ab-8a44-736fb3c993e5", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 263.0, "validated": false, "website": "https://www.facebook.com/events/223183358152585/", "handicap": null, "phone": "Sonya Miller 724-518-0596 or Darra Owens 724-740-9055", "venue_name": "Daisytown Community Center", "venue_address": "3 Main St, Daisytown, Pennsylvania 15427", "venue_type": "Community Organization", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-23T18:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-30T18:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-02T18:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}, {"dt_end": "2018-03-16T18:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-09T18:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}], "venue_notes": null, "etc": "Every Friday from 11am to 6pm starting March 17th to April 14th. ", "menu": {"url": null, "text": "10 Fish Dinner- Includes 3 pieces of whiting fish, fries, coleslaw and dessert. 5 Sandwich with 2 pieces of fish, no sides. Drinks available for purchase. Dine in or take out"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.937363, 40.055582], "type": "Point"}}, {"id": "9e0ebbad-4762-4cf3-a807-09c006c7b29b", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "www.Facebook.com/NAVFD77", "handicap": true, "phone": "(724) 668-9911", "venue_name": "New Alexandria Volunteer Fire Department", "venue_address": "8370 State Route 22, New Alexandria, Pennsylvania 15670, United States", "venue_type": "Fire Department", "alcohol": true, "take_out": true, "email": "fundraising@navfd77.com", "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "New Alexandria Fireman's Club", "etc": "When: Every Friday throughout Lent including Good Friday\r\nTimes: 4pm \u2013 7pm", "menu": {"url": null, "text": "Dinners $9.00\r\nChoose: Fried Fish, Baked Fish, Popcorn Shrimp or Chicken Tenders\r\nIncludes: 1 hot side, applesauce or coleslaw, drink, dessert\r\nFish Sandwich (Fried or Bake) $6.00\r\nPopcorn Shrimp $6.00\r\nChicken Tenders $6.00\r\nHot Sides $3.00\r\nFries, Mac&Cheese, Pierogi Casserole or Haluski\r\nApplesauce $1.00\r\nColeslaw $1.00\r\nDessert $1.00\r\nCoffee/ Lemonade $1.00\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.415829, 40.401498], "type": "Point"}}, {"id": "dbc3822b-47c8-4f53-88ac-f6b5988490ba", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 230.0, "validated": false, "website": "http://www.palazzo1837.com/", "handicap": null, "phone": "724-223-1837", "venue_name": "Palazzo 1837 Ristorante", "venue_address": "1445 Washington Road, Washington, PA 15301", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.626231, 40.499601], "type": "Point"}}, {"id": "9db06884-5469-429d-8e02-850c24cb9d78", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "412-233-7302", "venue_name": "Clairton VFD (takeout only)", "venue_address": "307 Division Avenue, Clairton, Pennsylvania 15025, United States", "venue_type": "Unsure / N/A", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T20:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": "Non-club members welcome for takeout only. Free local delivery (2 miles), $15 minimum.", "menu": {"url": "https://www.facebook.com/248107768675101/photos/rpp.248107768675101/1066234680195735/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.888269, 40.30501], "type": "Point"}}, {"id": "a10c274d-b1b8-4fce-a296-0c6d9d83dd11", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://www.skdparish.com/", "handicap": true, "phone": "724-209-1370, ext. 424", "venue_name": "St. Katharine Drexel, Bentleyville", "venue_address": "Drexel Hall (Former K of C hall), 208 Abromaitis Street, Bentleyville, Pennsylvania 15314, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T13:30:00", "dt_start": "2018-02-14T10:00:00"}, {"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T13:30:00", "dt_start": "2018-02-16T10:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T13:30:00", "dt_start": "2018-02-23T10:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T13:30:00", "dt_start": "2018-03-02T10:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T13:30:00", "dt_start": "2018-03-09T10:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T13:30:00", "dt_start": "2018-03-16T10:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T13:30:00", "dt_start": "2018-03-23T10:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T13:30:00", "dt_start": "2018-03-30T10:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "Drexel Hall (former K of C hall), 208 Abromaitis St.", "etc": null, "menu": {"url": null, "text": "beer-battered sandwich only, $8; beer-battered cod dinner with two sides, $10; large shrimp dinner with two sides, $10; baked cod fillet dinner with two sides, $10; crab cake dinner with two sides, $8; potato/cheese pierogies (three) dinner with two sides, $8; homemade macaroni and cheese dinner with two sides, $6. A la carte menu: french fries, $2.75; french fries with cheese, $3; homemade macaroni and cheese, $2.50; homemade cole slaw, $2; green beans, $1.50; applesauce, $1.50. Takeout available; call 724-209-1370, ext. 424."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.01342, 40.112986], "type": "Point"}}, {"id": "28c8589a-a6cd-440f-b847-6114fe605824", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 89.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Level Green VFD", "venue_address": "536 State Route 130 Level Green, Pennsylvania", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T17:00:00-04:00"}, {"dt_end": "2018-03-09T20:00:00-05:00", "dt_start": "2018-03-09T17:00:00-05:00"}, {"dt_end": "2018-03-02T20:00:00-05:00", "dt_start": "2018-03-02T17:00:00-05:00"}, {"dt_end": "2018-02-23T20:00:00-05:00", "dt_start": "2018-02-23T17:00:00-05:00"}, {"dt_end": "2018-02-16T20:00:00-05:00", "dt_start": "2018-02-16T17:00:00-05:00"}, {"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T17:00:00-04:00"}, {"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T17:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": "http://levelgreenvfd.org/custom.html?id=19721", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.729517, 40.391566], "type": "Point"}}, {"id": "cd3b20ef-a0e0-441d-8e4b-972d208c87ea", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 161.0, "validated": false, "website": "http://avellafire35.org/custom.html?id=22853", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Avella VFD", "venue_address": "1560 Avella Rd., Avella, PA 15312", "venue_type": "Fire Department", "alcohol": false, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}], "venue_notes": null, "etc": "Avella Vol. Fire Dept. and Avella Area Community Association Please Join Us Ash Wednesday - March 1st And Every Friday until Easter 11:00 AM to 7:00 PM Eat In or Take out at the AVFD Social Hall. For Deliveries Please Call: 724-587-5870. ", "menu": {"url": null, "text": "Fish Dinner $10.00, Shrimp Dinner $10.00, Fish Sandwich $7.00, Shrimp (6 pieces) $7.00, French Fries $2.00, Coleslaw $2.00, Pierogies 4/$2.00, Macaroni and Cheese $2.00, Cabbage and Noodles $2.00, Hush Puppies $2.00, Desserts $1.00, Pop/Water $1.00"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.459193, 40.274316], "type": "Point"}}, {"id": "2dea9ae0-28a4-4b9a-9b25-103bb2eae102", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "American Legion Post 760, Bethel Park", "venue_address": "2409 Bethel Church Rd., Bethel Park, PA 15102", "venue_type": "Community Organization", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-14T20:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": "Guests should enter through the Front Porch entrance.", "etc": "\r\nWe are open to the public from 4-8 Ash Wednesday and every Friday including Good Friday which will start at 3pm. Cash Only. Guests should enter through the Front Porch entrance. Proceeds are to benefit the local veterans.", "menu": {"url": null, "text": "Platters (include cole slaw and choice of homemade chips or fries):\r\nBaked or Fried Fish Sandwiches $9.00\r\nShrimp Basket $7.00\r\n\r\nEntrees:\r\nFish Sandwich (Fried or baked) $7.50\r\nShrimp Basket $6.00\r\nPierogies $6.00\r\n\r\nSides:\r\nHomemade Chips $2.00\r\nFresh Cut Fries $2.00\r\nMacaroni & Cheese $2.50\r\nHomemade Haluski $2.50\r\nHomemade Cole Slaw $1.00"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.03048, 40.344581], "type": "Point"}}, {"id": "d77cc2ca-5dd8-44e0-88b6-25d4600dcce3", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 36.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "St. Joseph, Roscoe", "venue_address": "105 Good St. Roscoe, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.869383, 40.078953], "type": "Point"}}, {"id": "d0b593bb-30fd-4f84-9952-60c3b10c2bd2", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://www.kretzlerstavern.com/", "handicap": null, "phone": "(412) 821-1606", "venue_name": "Kretzler's Tavern", "venue_address": "2240 Babcock Blvd., Pittsburgh, Pennsylvania", "venue_type": "Restaurant", "alcohol": true, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "famous fish sandwich"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.997174, 40.512522], "type": "Point"}}, {"id": "3ca2e4f5-b78e-45db-bca6-521d770ddcc3", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "(412) 896-5328", "venue_name": "Club 22", "venue_address": "526 Monongahela Avenue, Glassport, Pennsylvania 15045, United States", "venue_type": "Restaurant", "alcohol": true, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "11am-3:30am", "menu": {"url": "https://www.facebook.com/Club22Glassport/photos/a.364478573724088.1073741828.362030913968854/877436109094996/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.892484, 40.326562], "type": "Point"}}, {"id": "60e6b216-7d70-4c1a-8e68-93270737b9fb", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "www.saintcolumbkilleparish.org/", "handicap": null, "phone": "724-695-9084", "venue_name": "St. Columbkille", "venue_address": "103 Church Rd, Imperial, PA 15126", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "Takeout filled in the hall", "etc": null, "menu": {"url": null, "text": "Menu fish dinner, $7 for adults, $5 for child, $5.50 for senior. Shrimp dinner for $7.50, combo fish and shrimp dinner, and baked fish dinner with green beans almondine instead of french fries. Also featuring fish sandwich for $6, and the famous Columbkille sandwich for $6.50."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.243387, 40.447793], "type": "Point"}}, {"id": "3aa897f8-33a8-4e7c-8047-fbc910cf25a7", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 293.0, "validated": false, "website": null, "handicap": null, "phone": "724-744-2400", "venue_name": "Claridge VFW", "venue_address": "3100 Blocks Rd., Claridge, PA 15623", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-23T20:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-02-16T20:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-02T20:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}, {"dt_end": "2018-03-09T20:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/111109495633531/photos/a.314237345320744.69221.111109495633531/1251260814951721/?type=3&theater", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.616433, 40.366033], "type": "Point"}}, {"id": "38867660-2058-48ac-aacd-afd173d2f7f4", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "412-466-2405", "venue_name": "Dravosburg Volunteer Fire Department #1", "venue_address": "598 Ravine Street, Dravosburg, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T14:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T14:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T14:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T14:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T14:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T14:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T14:00:00"}], "venue_notes": null, "etc": "Ash Wednesday and every Friday of Lent, 2pm-7pm", "menu": {"url": "https://www.facebook.com/photo.php?fbid=945833431309&set=p.945833431309&type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.892203, 40.352022], "type": "Point"}}, {"id": "1f101959-68c8-49b8-888a-c85c8cbe6ab0", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.whiteoakpost701.org/", "handicap": null, "phone": "(412) 672-7994 Website: http://www.whiteoakpost701.org/", "venue_name": "American Legion Post 701 - White Oak", "venue_address": "2813 Capitol Street, White Oak, Pennsylvania 15131, United States", "venue_type": "Community Organization", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T21:00:00", "dt_start": "2018-02-16T15:00:00"}, {"dt_end": "2018-02-23T21:00:00", "dt_start": "2018-02-23T15:00:00"}, {"dt_end": "2018-03-02T21:00:00", "dt_start": "2018-03-02T15:00:00"}, {"dt_end": "2018-03-09T21:00:00", "dt_start": "2018-03-09T15:00:00"}, {"dt_end": "2018-03-16T21:00:00", "dt_start": "2018-03-16T15:00:00"}, {"dt_end": "2018-03-23T21:00:00", "dt_start": "2018-03-23T15:00:00"}, {"dt_end": "2018-03-30T21:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": null, "etc": "Where: Located at the White Oak American Legion with plenty of parking and seating. Patrons can eat in the bar area (smoking permitted) or in the smoke-free ballroom.\r\nWhen: Wednesday, February 14, 2018 (Ash Wednesday) & Every Friday in Lent, including Good Friday (March 30, 2018)\r\nTimes: 3:00PM - 9:00PM\r\n", "menu": {"url": null, "text": "DINNERS:\r\n*** All Dinners served with choice of 2 sides ***\r\n1lb. Fish Dinner (Fried or Baked) \u2014 $8.50\r\nLobster Ravioli (6) \u2014 $8.50\r\n4-Cheese Ravioli (6) \u2014 $6.50\r\nPierogis & Onions (6) \u2014 $6.00\r\n2 Deviled Crabs \u2014 $6.50\r\nButterfly Shrimp (8) \u2014 $8.00\r\nPopcorn Shrimp \u2014 $6.50\r\nSIDES:\r\nFresh-Cut French Fries\r\nOnion Rings\r\nMacaroni & Cheese\r\nHaluski\r\nColeslaw\r\nApplesauce\r\nEXTRAS:\r\n1 Deviled Crab \u2014 $2.00\r\nPierogis & Onions (3) \u2014 $3.00\r\nLarge Side \u2014 $2.50\r\nCake (when available) \u2014 $1.00/slice\r\nCoffee \u2014 $1.00/cup\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.823549, 40.354582], "type": "Point"}}, {"id": "e13127c8-1e58-4410-bf12-6e7a4e860a8f", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://crabtreevfd.com/", "handicap": null, "phone": "(724) 837-2231", "venue_name": "Crabtree Volunteer Fire Department", "venue_address": "1610 Latrobe Crabtree Rd, Greensburg, Pennsylvania 15624, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:30:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:30:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:30:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:30:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:30:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:30:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-03-30T19:30:00", "dt_start": "2018-03-30T16:30:00"}], "venue_notes": "Social Hall", "etc": "When: Every Friday during Lent including Good Friday Times: 4:30PM - 7:30PM", "menu": {"url": null, "text": "Baked Fish & Pierogi Dinners\r\nItalian Baked Fish & Pierogi Dinners\r\nPierogi Dinners\r\nFried Fish Sandwiches & Fries\r\nChicken Tenders & Fries\r\nCole Slaw\r\nHomemade Haluski\r\nHomemade Mac-n-Cheese\r\nHomemade Deserts\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.465457, 40.361934], "type": "Point"}}, {"id": "748a626e-32de-488b-af2a-9295635f6e21", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 322.0, "validated": false, "website": "https://www.facebook.com/events/1422747114442799/", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Callery Fire Hall **Good Friday Only**", "venue_address": "179 Main St, Callery, Pennsylvania 16024", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.037622, 40.739058], "type": "Point"}}, {"id": "f1c9ffd2-0fbe-4a40-8e4f-b1b20e25a79d", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 231.0, "validated": false, "website": "https://www.facebook.com/shenanigansamitypa/", "handicap": null, "phone": "724-225-4646", "venue_name": "Shenanigans Bar and Grill", "venue_address": "921 Amity Ridge Road Amity, PA 15311", "venue_type": "Restaurant", "alcohol": true, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.2106, 40.056951], "type": "Point"}}, {"id": "d578a119-db34-4486-b31f-fff2a689888f", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": null, "venue_name": "Mary, Mother of the Church, Charleroi (ASH WEDNESDAY ONLY)", "venue_address": "Marian Hall (lower level of church), 624 Washington Ave, Charleroi, Pennsylvania 15022, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:00:00", "dt_start": "2018-02-14T11:00:00"}], "venue_notes": "Marian Hall (lower level of church)", "etc": null, "menu": {"url": null, "text": "Menu is choice of fish sandwich or baked fish, choice of potato, vegetable, Amish cole slaw, dessert and coffee and tea service. Tickets are $10 for adults, $5 for children, and available at the door. Also, raffles and basket auction. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.90064, 40.139346], "type": "Point"}}, {"id": "8c9865dd-d166-4a12-9116-f2a93dfa4525", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/newlifechurchofgodpittsburgh/", "handicap": null, "phone": "(412) 421-7101", "venue_name": "New Life Church of God in Christ (Every other week)", "venue_address": "1120 Greenfield Avenue, Pittsburgh, Pennsylvania 15217, United States", "venue_type": "Unsure / N/A", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:30:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": " Fish Fry Menu\r\n\r\nFish Sandwich on a Bun - $8.00\r\nFish Platter (includes 2 sides) - $10.00\r\nCrab Cake Sandwich on a Bun - $10.00\r\nCrab Cake Platter (includes 2 sides) - $12.00\r\nSides\r\nPierogies (potato-cheese blend)\r\n3 Pierogies with or without onions $2.00\r\n6 Pierogies with or without onions $4.00\r\n12 Pierogies with or without onions $7.00\r\nFrench Fries - $2.00; Onion Rings - $2.00\r\nCole Slaw - $2.00\r\nPotato Salad - $2.00\r\nMac N Cheese - $2.00\r\nHaluski - $2.00\r\nBeverages:\r\nBottled Water - $1.00\r\nBottled Drinks - $1.50\r\nDessert - $1.50"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.929841, 40.420988], "type": "Point"}}, {"id": "ab1f6def-ee11-4fd6-9e4a-1b77d14a79d0", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "www.stsjohnandpaul.org", "handicap": true, "phone": "412-440-3044", "venue_name": "SS John and Paul", "venue_address": "2586 Wexford Bayne Rd, Franklin Park", "venue_type": "Church", "alcohol": null, "take_out": true, "email": "fishfry@stsjohnandpaul.org", "events": [{"dt_end": "2018-02-14T19:30:00", "dt_start": "2018-02-14T11:30:00"}, {"dt_end": "2018-02-16T19:30:00", "dt_start": "2018-02-16T11:30:00"}, {"dt_end": "2018-02-23T19:30:00", "dt_start": "2018-02-23T11:30:00"}, {"dt_end": "2018-03-02T19:30:00", "dt_start": "2018-03-02T11:30:00"}, {"dt_end": "2018-03-09T19:30:00", "dt_start": "2018-03-09T11:30:00"}, {"dt_end": "2018-03-16T19:30:00", "dt_start": "2018-03-16T11:30:00"}, {"dt_end": "2018-03-23T19:30:00", "dt_start": "2018-03-23T11:30:00"}], "venue_notes": "Cardinal DiNardo Center", "etc": "Ash Wednesday and Fridays of Lent, except Good Friday, 11:30 a.m.-7:30 p.m.", "menu": {"url": null, "text": "Platter menu, $11, includes two sides: jumbo beer-battered fried cod (too big for the bun) or baked cod, with or without bun; fried breaded shrimp basket; potato and cheese pierogies. Sides: french fries; cole slaw; macaroni and cheese; applesauce; pierogies (two). Kids\u2019 meal is $5 and includes kid-size fish or four pierogies, with one side and applesauce. Soup is $4 for 16 ounces. All dine-in dinners include choice of lemonade, iced tea, water or coffee. Pop is $2 for 20 ounces. Fish sandwich is $8. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.105147, 40.608199], "type": "Point"}}, {"id": "207e7785-2fd0-4c73-96b5-2606c4274426", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "http://www.olof.us/", "handicap": null, "phone": "412-375-7672", "venue_name": "Our Lady of Fatima, Hopewell Township", "venue_address": "2270 Brodhead Road Hopewell Township, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T15:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T16:00:00"}], "venue_notes": "Fish Fry is in Kohler Hall.", "etc": "Our Lady of Fatima Lenten Fish Fry is every Friday through Good \r\nFriday. Weekly hours are 4-7pm; Good Friday hours are 3-7pm.", "menu": {"url": null, "text": "Take out and eat in sandwiches and dinners in Kohler Hall. We have both fried and baked fish, fried shrimp, halushki, pierogies, French fries, freshly cooked vegetables, and homemade desserts. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.257412, 40.585077], "type": "Point"}}, {"id": "77e7739b-26a2-434b-8e3a-1fe48d843854", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 109.0, "validated": false, "website": null, "handicap": null, "phone": "412-380-9300", "venue_name": "Labriola's Italian Market", "venue_address": "4039 Monroeville Blvd Monroeville, Pa 15146", "venue_type": "Restaurant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": "https://www.labriolaitalianmarkets.com/products.asp?cat=23", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.768917, 40.435608], "type": "Point"}}, {"id": "727a6d26-0fd5-41db-86e8-a99f245d7200", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://stfrancischurch.net/", "handicap": true, "phone": "724-348-7145", "venue_name": "St Francis of Assisi, Finleyville (ASH WEDNESDAY ONLY, FINLEY HALL)", "venue_address": "3609 Washington Ave, Finleyville, Pennsylvania 15332, United States", "venue_type": "Church", "alcohol": null, "take_out": null, "email": "stfran1893@comcast.net", "events": [{"dt_end": "2018-02-14T18:30:00", "dt_start": "2018-02-14T12:00:00"}], "venue_notes": "Finley Hall", "etc": null, "menu": {"url": null, "text": "Ash Wednesday, noon-6:30 p.m., Finley Hall, 3609 Washington Ave. Dinners feature baked and fried fish, plus a la carte items. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.99888, 40.25452], "type": "Point"}}, {"id": "76f4014d-2b4b-4659-8f37-494b3592feac", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "(412) 466-6662", "venue_name": "Payne Chapel AME Church", "venue_address": "601 Priscilla Avenue, Duquesne, Pennsylvania 15110, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T15:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T15:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T15:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T15:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T15:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T15:00:00"}], "venue_notes": null, "etc": "When: Every Friday February 16th through March 23rd\r\nTimes: 3:00 pm until 7:00 pm", "menu": {"url": null, "text": "Catfish, Whiting, Wing Ding Dinners $10.00 Shrimp Dinners $12.00\r\ninclude potato salad or mac & cheese, green beans and a corn muffin.\r\nFish Sandwich $7.00\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.849365, 40.367979], "type": "Point"}}, {"id": "d9e575e6-b25f-43b2-94d7-33776d916348", "properties": {"lunch": true, "homemade_pierogies": true, "cartodb_id": 319.0, "validated": false, "website": null, "handicap": true, "phone": "304-232-1777", "venue_name": "Our Lady of Perpetual Help", "venue_address": "4136 Jacob St, Wheeling, WV 26003", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-23T18:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-09T18:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-16T18:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Coleman's fish, french fries, mac and cheese, meatless soup, cabbage and noodles, pierogi, stewed tomatoes, meatless spanish rice, coleslaw and desserts. For more information or to place orders call 304-232-1777."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.725564, 40.039062], "type": "Point"}}, {"id": "72389782-153f-4c72-81b0-b0538b154a34", "properties": {"lunch": true, "homemade_pierogies": null, "validated": false, "website": "http://www.aliquippacroatiancenter.com", "handicap": null, "phone": "724-375-3021", "venue_name": "Aliquippa Croatian Center", "venue_address": "2365 Concord Street, Aliquippa PA 15001", "venue_type": "Community Organization", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "See website for menu."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.284983, 40.60681], "type": "Point"}}, {"id": "9e5c1a1b-f565-4735-8377-d26c9e795b5c", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 227.0, "validated": false, "website": "https://www.facebook.com/tripletstavern/", "handicap": null, "phone": "724-229-2929", "venue_name": "Triple Ts Tavern", "venue_address": "30 Oregon Street, Washington PA 15301", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [], "venue_notes": "Inside the tavern. Must be 18 to enter. ", "etc": "Fish available on a first come, first served basis. ", "menu": {"url": null, "text": "a la carte; Menu includes 8oz breaded Icelandic cod sandwich or breaded deep fried shrimp. "}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.251892, 40.16767], "type": "Point"}}, {"id": "dead16b2-e327-4aff-84f9-d7640823baba", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "https://tinyurl.com/riverviewfish", "handicap": true, "phone": "412.321.7300", "venue_name": "Riverview Church, on Pittsburgh's North Side", "venue_address": "3505 Perrysville Avenue, Pittsburgh, Pennsylvania 15214, United States", "venue_type": "Church", "alcohol": false, "take_out": true, "email": "rachelharvey.silentd@gmail.com", "events": [{"dt_end": "2018-02-16T20:30:00", "dt_start": "2018-02-16T17:30:00"}, {"dt_end": "2018-02-23T20:30:00", "dt_start": "2018-02-23T17:30:00"}, {"dt_end": "2018-03-02T20:30:00", "dt_start": "2018-03-02T17:30:00"}, {"dt_end": "2018-03-09T20:30:00", "dt_start": "2018-03-09T17:30:00"}, {"dt_end": "2018-03-16T20:30:00", "dt_start": "2018-03-16T17:30:00"}, {"dt_end": "2018-03-23T20:30:00", "dt_start": "2018-03-23T17:30:00"}, {"dt_end": "2018-03-30T20:30:00", "dt_start": "2018-03-30T17:30:00"}], "venue_notes": "Church Lower Level. Accessible.", "etc": "Major credit cards accepted.", "menu": {"url": "https://riverviewfish.wordpress.com/", "text": "Restaurant quality! Hand-Battered Fish, Fresh Cut French Fries, Shrimp, Mac & Cheese, Pierogis, Hush Puppies, Cheese Sticks, Cole Slaw, Cheesecake, Baked Goods, Beverages\r\n\r\nSmall fish dinner with two sides: $8.95\r\nLarge fish dinner with two sides: $10:95\r\nSmall fish sandwich with two sides: $9.95\r\nLarge fish sandwich with two sides: $11.95\r\n\r\nChoose two: French fries, cole slaw, hushpuppies, mac n cheese\r\n\r\nSmall fish sandwich only: $4.95\r\nLarge fish sandwich only: $6.95\r\nShrimp and fries dinner: $5.99\r\nMacaroni and cheese side only: $2.95\r\nSmall pierogies (3): $2.95\r\nLarge pierogies (6): $4.95\r\nCheese sticks (4): $3.95\r\nCheesecake: $1.75\r\nBeverages: $1.00\r\n\r\nEat in or take out! All major credit cards accepted. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.014374, 40.484124], "type": "Point"}}, {"id": "4dd9fd7e-c1f8-4697-91b0-245685e2f29e", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 129.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Option Independent Fire Company", "venue_address": "825 Streets Run Road, Pittsburgh, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T15:00:00-04:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T15:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T15:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/photo.php?fbid=10212631954581625&set=p.10212631954581625&type=3&theater", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.971825, 40.348215], "type": "Point"}}, {"id": "a2dcf917-7559-4246-9c0e-5d3e4d5c3477", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-752-9350", "venue_name": "Holy Redeemer, Ellwood City - Takeout-only pizza and pierogie sale", "venue_address": "603 Bridge Street, Ellwood City, Pennsylvania 16117, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T17:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-03-02T17:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-16T17:00:00", "dt_start": "2018-03-16T11:00:00"}], "venue_notes": "Catholic Center", "etc": "To place an order, call 724-752-9350 by 2 p.m. on day of sale.", "menu": {"url": null, "text": "Choice of red or white pizza for takeout only. Cost is $8. Frozen pierogies sold by the dozen."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.283785, 40.870378], "type": "Point"}}, {"id": "fb7ec904-705a-4ce7-b6e1-6b2c51aa11ce", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "www.stbernardfishfry.net", "handicap": true, "phone": "412-440-2697", "venue_name": "St. Bernard", "venue_address": "311 Washington Road", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T19:30:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:30:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:30:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:30:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:30:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:30:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Gourmet fish fry, with sandwiches, fish and pasta specials. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.043452, 40.386773], "type": "Point"}}, {"id": "50e90dc1-a8d2-4069-ae05-ce79d083cc81", "properties": {"lunch": false, "homemade_pierogies": true, "validated": true, "website": "ssjpittsburgh.org", "handicap": true, "phone": "412-563-1353", "venue_name": "SS. Simon and Jude, Scott Township", "venue_address": "1607 Greentree Road Scott Township, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "Large parking lot that fills up quickly. Expect a line. ", "etc": "The SSJ Fish Fry is back again this year. The event is known locally for serving homemade fresh quality food with generous portions and at great prices! Open on Ash Wednesday and Fridays of Lent from 4PM to 7PM excluding Good Friday. Held in the spacious Parish Life Center gymnasium, 1607 Greentree Road.", "menu": {"url": "http://docs.wixstatic.com/ugd/a206bb_abf7ee8cf4b646bda73f158a4e9a2434.pdf", "text": "Extensive menu includes: fried fish dinner, $9.00; baked fish dinner, $9.00; crab cake dinner, $9.00; shrimp dinner, $9.00 fried fish sandwich, $7.00; baked fish sandwich $7.00; crab cakes, $7.00; shrimp, $7.00; Homemade items are cabbage and noodles; macaroni and cheese, perogies, and baked goods. Other menu items: Pizza, French fries, with and without cheese; fried provolone sticks; fried onion rings; cole slaw; zucchini planks; soup; lobster bisque and more. Also featuring special kids meal featuring for $4.50."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.063222, 40.39991], "type": "Point"}}, {"id": "ffe9ce4b-9eb2-49f0-b611-711a9e5b25c9", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "724-842-3141 or 724-845-1684", "venue_name": "Leechburg VFC", "venue_address": "268 Canal Street Leechburg, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T20:00:00", "dt_start": "2018-02-14T15:00:00"}, {"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T15:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T15:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T15:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T15:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T15:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T15:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": null, "etc": "Ash Wednesday and every Friday during Lent including Good Friday 3pm-8pm", "menu": {"url": "https://www.facebook.com/photo.php?fbid=10208695921075883&set=p.10208695921075883&type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.604859, 40.625222], "type": "Point"}}, {"id": "6654fd3f-2b1c-48bf-afd5-6893a6774d5e", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 260.0, "validated": false, "website": "http://www.beechiesplace.com", "handicap": null, "phone": "724-222-7079", "venue_name": "Beechies Place", "venue_address": "400 West Pike St Meadow Lands, PA 15347", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-30T23:45:00-04:00", "dt_start": "2018-02-16T00:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "They will have a special Lenten menu Friday during Lent."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.221588, 40.218096], "type": "Point"}}, {"id": "46e09b74-5c59-4257-bf5f-662feb46c35c", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 166.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Becker's Cafe", "venue_address": "315 Olivia Street McKees Rocks PA", "venue_type": "Resturant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.057127, 40.474652], "type": "Point"}}, {"id": "610d1ab5-e1d4-44db-acf1-199a1ca4d702", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "www.icwashpa.net", "handicap": true, "phone": "724-663-7675", "venue_name": "Sacred Heart Church of Immaculate Conception Parish, Claysville", "venue_address": "Rt 40 and 231 South, Claysville, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}], "venue_notes": "social hall", "etc": "Cost: adult dinner, $5.25; shrimp, $6; sandwich, $4. Takeout available; call 724-663-7675. Delivery available on orders of $20 or more. Contact information: phone, 724-663-7675; website, www.icwashpa.net or www.facebook.com/icwashpa; Twitter, @icwashpa; app store, Immaculate Conception Church.\r\n", "menu": {"url": null, "text": "Menu features Coleman fried and baked fish dinners and sandwiches, along with fish dinners. Sides include french fries, cabbage and noodles, macaroni and cheese, cole slaw, desserts and beverages. Cost: adult dinner, $5.25; shrimp, $6; sandwich, $4. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.415484, 40.116334], "type": "Point"}}, {"id": "5ef7ce2d-c31e-4c59-bc63-afc7c1fc889a", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 85.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Doublewide Grill (North Huntingdon)", "venue_address": "8695 U.S. Hwy 30, Irwin, PA", "venue_type": "Restuarant", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.686583, 40.318748], "type": "Point"}}, {"id": "c42d3a77-4e61-4ecb-b57d-2b532b25b565", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 265.0, "validated": false, "website": null, "handicap": null, "phone": "814-825-7313", "venue_name": "Our Lady of Mount Carmel, Scheffner Hall", "venue_address": "1553 East Grandview Blvd. Erie, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Fried fish and/or cheese pierogi. Adult $10, Child $5. Includes choice of French Fries, potato salad, or mac and cheese, coleslaw or green beans and ice cream dessert. Takeout 50 cents extra."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.010836, 42.114623], "type": "Point"}}, {"id": "fbea2373-ce98-4904-aacb-a52da7ace061", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "https://www.facebook.com/SHOPANDGO/", "handicap": null, "phone": "412-384-9111", "venue_name": "Shop N Go", "venue_address": "2226 PA-837, West Elizabeth, PA 15088", "venue_type": "Restaurant", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T10:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T10:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T10:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T10:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T10:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T10:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T10:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/SHOPANDGO/photos/a.165259453529016.63198.119862611402034/1260603760661241/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.902427, 40.268082], "type": "Point"}}, {"id": "6cee1896-7530-4a93-86af-f0d46c937329", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "http://avilaparish.org/lenten-fish-fry/", "handicap": true, "phone": "412-367-9001", "venue_name": "St. Teresa of Avila, Perrysville", "venue_address": "1000 Avila Court Pittsburgh, PA 15237", "venue_type": "Church", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:30:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:30:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:30:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:30:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T19:30:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:30:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-03-30T19:30:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "Online orders available at http://avilaparish.org/lenten-fish-fry/. Online orders will ONLY be filled when complete between 3-6 pm on Fridays. Orders placed outside of this time WILL NOT be filled.", "menu": {"url": "http://avilaparish.org/lenten-fish-fry/", "text": "Adults \u2013 $10\r\nMeal includes choice of main, two sides, soup, bread, and drink\r\n\r\nKids 6-10 years \u2013 $5 ; Kids 5 and under \u2013 FREE\r\nMeal includes fish nuggets, two sides, and a drink\r\n\r\nMENU\r\n\r\nMain\r\nFried or Baked cod\r\nFried shrimp\r\n\r\nSoup\r\nTomato Florentine\r\nClam Chowder\r\n\r\nSides\r\nFresh Cut French Fries, Macaroni & Cheese, or Baked Potato\r\nCole Slaw or Applesauce\r\n\r\nALA CARTE ITEMS\r\nFish (fried or baked) Sandwich \u2013 $6.00\r\nShrimp basket \u2013 $6.00\r\nMacaroni & Cheese \u2013 $2.00\r\nFrench Fries \u2013 $2.00\r\nBaked Potato \u2013 $2.00\r\nHaluski \u2013 $2.00\r\nCup of Soup \u2013 $2.00\r\nCole Slaw \u2013 $1.00\r\nApplesauce \u2013 $1.00\r\nCoffee/Tea \u2013 $0.75\r\nMilk/Soda \u2013 $0.75"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.039719, 40.539051], "type": "Point"}}, {"id": "46b21829-ef91-488a-950a-9a6732244d95", "properties": {"lunch": true, "homemade_pierogies": false, "validated": true, "website": "https://www.facebook.com/Harringtons-114128741969634/", "handicap": true, "phone": "(724) 796-5117", "venue_name": "Harrington's", "venue_address": "717 Robinson Highway, Mc Donald, Pennsylvania 15057, United States", "venue_type": "Restaurant", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T21:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T21:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T21:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T21:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T21:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T21:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T21:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/114128741969634/photos/a.665318160184020.1073741826.114128741969634/1515658565149971/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.261538, 40.381131], "type": "Point"}}, {"id": "039cf733-a956-477a-b1a4-ac66837bde86", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/leetsdalefire/", "handicap": null, "phone": "(724) 266-3409", "venue_name": "Leetsdale Fire Department at the Leetsdale VFW", "venue_address": "515 Beaver Street, Leetsdale, Pennsylvania 15056, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "Leetsdale VFW at the corner of Ferry and Beaver Streets in Leetsdale.", "etc": "The Leetsdale Fire Department is holding their Annual Lenten Fish Fry on Fridays during Lent including Good Friday from 4PM to 7PM. As in years past, this event will be held at the Leetsdale VFW on the corner of Ferry and Beaver Streets (515 Beaver Street) in Leetsdale. We will be offering hand battered fish, fresh cut fries, shrimp, cole slaw, and other goodies. Eat In, Take Out, and limited Delivery is available. Orders may be place by calling 724-266-3409.", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.206223, 40.56339], "type": "Point"}}, {"id": "ba53ed22-09c0-46a9-bb6c-88ff8a788c96", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 210.0, "validated": false, "website": "http://rvfc27.com", "handicap": null, "phone": "724-632-6390", "venue_name": "Richeyville VFC", "venue_address": "14 Firehall Road, Richeyville, PA 15358", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-30T18:00:00-04:00", "dt_start": "2018-03-30T10:30:00-04:00"}, {"dt_end": "2018-02-16T18:00:00-05:00", "dt_start": "2018-02-16T10:30:00-05:00"}, {"dt_end": "2018-02-14T18:00:00-05:00", "dt_start": "2018-02-14T10:30:00-05:00"}, {"dt_end": "2018-02-23T18:00:00-05:00", "dt_start": "2018-02-23T10:30:00-05:00"}, {"dt_end": "2018-03-09T18:00:00-05:00", "dt_start": "2018-03-09T10:30:00-05:00"}, {"dt_end": "2018-03-16T18:00:00-04:00", "dt_start": "2018-03-16T10:30:00-04:00"}, {"dt_end": "2018-03-02T18:00:00-05:00", "dt_start": "2018-03-02T10:30:00-05:00"}, {"dt_end": "2018-03-23T18:00:00-04:00", "dt_start": "2018-03-23T10:30:00-04:00"}], "venue_notes": null, "etc": "Wednesday, March 1st (Ash Wednesday) and every Friday during Lent.", "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.002, 40.05341], "type": "Point"}}, {"id": "6cd742a4-f4da-47e1-b805-55549bb74e9a", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "(412) 264-0846", "venue_name": "Coraopolis Elks Lodge #1090", "venue_address": "1150 Stoops Ferry Road, Coraopolis PA 15108", "venue_type": "Community Organization", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T16:30:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T16:30:00"}], "venue_notes": null, "etc": "Fish Frys on Fridays during Lent. Call for more information.", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.213421, 40.541482], "type": "Point"}}, {"id": "03fe1408-1777-41c2-9d42-4017ce3b4c18", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "www.stmichaelelizabeth.org", "handicap": true, "phone": "412-751-0663", "venue_name": "St. Michael, Elizabeth", "venue_address": "101 Mclay Drive, Elizabeth, Pennsylvania 15037, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": "Archangel Hall", "etc": "Fridays of Lent, except Good Friday, 4-7 p.m.", "menu": {"url": null, "text": "Menu features fish and shrimp dinners, fish sandwiches, pierogies, macaroni and cheese, haluski, homemade soups, meatless pasta, cheese pizza, cole slaw, french fries and an array of desserts. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.837579, 40.269328], "type": "Point"}}, {"id": "42cfe57b-0d2b-4084-bf4e-874586a5e21a", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 159.0, "validated": false, "website": "https://www.facebook.com/American-legion-Post-902-148513762170830/", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "American Legion Post 902", "venue_address": "124 West Pike St., Houston, PA", "venue_type": "Community Organization", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Fish and shrimp available for Lent"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.211168, 40.248652], "type": "Point"}}, {"id": "59342f24-18f4-48a1-8d34-89ddbe4fcedd", "properties": {"lunch": false, "homemade_pierogies": false, "cartodb_id": 54.0, "validated": false, "website": "http://www.ihmcmercer.com", "handicap": null, "phone": "724-662-2999", "venue_name": "Immaculate Heart of Mary", "venue_address": "100 Penn Avenue, Mercer, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": "ihm@zoominternet.net", "events": [{"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T17:00:00-05:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T17:00:00-05:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T17:00:00-04:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T17:00:00-05:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T17:00:00-05:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T17:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T17:00:00-04:00"}], "venue_notes": "Event is in Gallagher Hall", "etc": null, "menu": {"url": null, "text": "Adults: 10 dollars; Children: 5 dollars (under 3 free) -- fried fish, fries, coleslaw, bread and butter, coffee, tea, lemonade"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.240215, 41.232051], "type": "Point"}}, {"id": "20190d02-de8d-4e01-a458-d820228f186f", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "724-758-9254", "venue_name": "Ellwood City Loyal Order of the Moose, Lodge #93", "venue_address": "1400 Factory Ave, Ellwood City, PA 16117", "venue_type": "Community Organization", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T21:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T21:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T21:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T21:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T21:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T21:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T21:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "Kitchen 4pm-9pm, Last Order at 8:45pm\r\nOpen Monday-Saturday, Closed Sunday", "menu": {"url": null, "text": "Fish Fry Friday\r\nWings also available\r\n\r\nFish Dinner $9.50\r\nBattered or Baked ~Fries or Mac N\u2019 Cheese ~Coleslaw or Small Side Salad\r\n\r\nFish on a Dish $7.50\r\nChicken Planks (4) $7.50\r\nFish Nuggets $7.50\r\nFish Sandwich $7.95\r\nAdd Cheese $1.00\r\nMac N\u2019 Cheese or Fries $1.25\r\nColeslaw $1.00\r\nSmall Side Salad $2.00\r\nSeason Waffle Fries $4.50\r\nSteak Fries $4.50\r\n\r\nFish Nugget Salad $9.50\r\nSalad, Mixed Veggie, Olives, Onions, Banana Pepper, Egg, Fries, Cheese\r\n\r\nBreaded Shrimp (6) with Fries $7.50\r\n\r\nBig Al Steak Sandwich w/ Fries $9.00\r\nItalian Bread, 12 ounce steak, Provolone Cheese, Grilled Peppers and Onions\r\n\r\nPasta with. Red tuna sauce. Comes with garlic toast. $9 a plate "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.300528, 40.859377], "type": "Point"}}, {"id": "0df33350-e14e-439e-9353-0461b7eaf16d", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": null, "venue_name": "St. Joseph, O'Hara Township - ASH WEDNESDAY ONLY", "venue_address": "342 Dorseyville Road, Pittsburgh, Pennsylvania 15215, United States", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:00:00"}], "venue_notes": null, "etc": "Ash Wednesday only 11-7", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.924022, 40.519047], "type": "Point"}}, {"id": "731a26cf-37f1-4785-a41d-279bcd6b746d", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 113.0, "validated": false, "website": null, "handicap": null, "phone": "724-423-8558", "venue_name": "Norvelt VFD", "venue_address": "2325 Mount Pleasant Rd Mount Pleasant, Pennsylvania", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T15:00:00-05:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T15:00:00-04:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T15:00:00-05:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T15:00:00-05:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T15:00:00-04:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T15:00:00-05:00"}, {"dt_end": "2018-03-30T23:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/187103461330962/photos/a.247929761914998.54354.187103461330962/1384367308271232/?type=3&theater", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.497146, 40.208478], "type": "Point"}}, {"id": "256c066e-ef3c-424a-a242-e8a7f053db84", "properties": {"lunch": null, "homemade_pierogies": null, "validated": false, "website": "https://ststephensmckeesport.com/fish-fry/ ", "handicap": null, "phone": "412-664-9379", "venue_name": "St. Stephen's McKeesport -GOOD FRIDAY ONLY-", "venue_address": "220 8th St., Mckeesport, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Dinners include entree, coleslaw or applesauce, french fries or browned whole potatoes, pie or cake, and a beverage. In addition to fried pollock, the church offers baked cod, shrimp, crab cakes, or a sampler platter, and chicken planks also are available."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.865123, 40.347693], "type": "Point"}}, {"id": "f4609791-3ab4-4a43-82cb-65fec8ccecbb", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.mlumc.org/", "handicap": null, "phone": null, "venue_name": "Mt. Lebanon United Methodist Church", "venue_address": "3319 W. Liberty Ave. Pittsburgh, PA 15216", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Menu of baked fish, fried fish, fish sandwich, french fries, mac & cheese, green beans, desserts. FREE."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.042321, 40.388112], "type": "Point"}}, {"id": "dcae4c0b-ecc2-4026-a87c-602a0cdcf7ac", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 115.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Lone Pine VFD Station 50", "venue_address": "330 weaver run Rd Washington pa 15301", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.183748, 40.079342], "type": "Point"}}, {"id": "127d7747-5b2b-4405-8138-72ec05fe5bb6", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-378-2734", "venue_name": "St. Titus, Aliquippa", "venue_address": "952 Franklin Ave. Aliquippa, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:30:00", "dt_start": "2018-02-14T12:00:00"}, {"dt_end": "2018-02-16T18:30:00", "dt_start": "2018-02-16T12:00:00"}, {"dt_end": "2018-02-23T18:30:00", "dt_start": "2018-02-23T12:00:00"}, {"dt_end": "2018-03-02T18:30:00", "dt_start": "2018-03-02T12:00:00"}, {"dt_end": "2018-03-09T18:30:00", "dt_start": "2018-03-09T12:00:00"}, {"dt_end": "2018-03-16T18:30:00", "dt_start": "2018-03-16T12:00:00"}, {"dt_end": "2018-03-23T18:30:00", "dt_start": "2018-03-23T12:00:00"}, {"dt_end": "2018-03-30T18:30:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": null, "etc": "Ash Wednesday and Fridays of Lent, including Good Friday, noon-6:30 p.m. (3-6:30 p.m. Good Friday)", "menu": {"url": null, "text": "Dinner, $10, with choice of baked or fried fish or shrimp, and includes bun, choice of side (french fries, macaroni and cheese, haluski) and choice of cole slaw or applesauce and coffee. Also, fried or baked fish sandwich, $8; shrimp in a basket, $8; potato and cheese pierogies, $9 per dozen. Side items available a la carte. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.256001, 40.612954], "type": "Point"}}, {"id": "91dca4cb-67b3-4c09-98f6-3ab25501478d", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 110.0, "validated": false, "website": null, "handicap": null, "phone": "412-784-0111", "venue_name": "Labriola's Italian Market", "venue_address": "605 Freeport Road Aspinwall, Pa 15215", "venue_type": "Market", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": "https://www.labriolaitalianmarkets.com/products.asp?cat=23", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.898697, 40.488439], "type": "Point"}}, {"id": "c39bfecd-e300-43a6-b082-19fa41540bd0", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/motherofsorrowsmurrysville/", "handicap": null, "phone": "(724) 982-2636", "venue_name": "Mother of Sorrows", "venue_address": "4202 Old William Penn Hwy Murrysville, PA 15668", "venue_type": "Church", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:30:00"}, {"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:30:00"}], "venue_notes": "parish social hall", "etc": "Fried or Baked Fish Meal, Shrimp or Crab Cake Meal $10\r\nFull Order of Mac & Cheese or Italian Baked Penne $6\r\nSide Orders $3:\r\nMac & Cheese\r\nHaluski\r\nPierogies\r\nFrench Fries\r\nGreen Beans\r\nItalian Baked Penne\r\nBeverages:\r\nCoffee, Hot Tea, Soda & Turners $1\r\nBeer & Wine with ID\r\n", "menu": {"url": "https://www.facebook.com/motherofsorrowsmurrysville/photos/a.175243462814267.1073741828.174889776182969/432174380454506/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.686043, 40.429485], "type": "Point"}}, {"id": "76060346-8ae6-48f5-bc23-e7e4e2e7ccd5", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 39.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "St. Mark/Liberty Borough", "venue_address": "3210 Liberty Way Liberty Borough, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.856232, 40.325794], "type": "Point"}}, {"id": "231aa708-f9c6-455d-a2a4-6aa304bd507b", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 117.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Ford Cliff VFD", "venue_address": "609 Neale Ave. Ford Cliff, Pa.", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.533249, 40.761772], "type": "Point"}}, {"id": "ee78a3dd-0f2d-452b-805e-047ce63b67d7", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.stceciliaroch.org", "handicap": true, "phone": "724-775-3775", "venue_name": "St. Cecilia, Rochester", "venue_address": "628 Virginia Avenue, Rochester, Pennsylvania 15074, United States", "venue_type": "Unsure / N/A", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": "Takeout available, call 724-775-3775 or 724-775-3776", "menu": {"url": "https://www.stceciliaroch.org/documents/fish-fry-menu", "text": "Fish dinner, $10; fish salads, $10; fish sandwiches, $9; shrimp dinners, $10. Also, variety of side dishes, including sweet potato, and desserts."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.284822, 40.71408], "type": "Point"}}, {"id": "14cc99c8-87fd-4fb2-92f4-58eb9ee6488e", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 175.0, "validated": false, "website": "https://www.facebook.com/StJohnOrthodoxEastPitt", "handicap": null, "phone": "412-824-0246", "venue_name": "St. John the Baptist Orthodox, East Pittsburgh", "venue_address": "211 Cable Avenue, East Pittsburgh, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "Could not find good info on this site or anywhere else on the site.", "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.836427, 40.399919], "type": "Point"}}, {"id": "f012e7a0-8666-46ab-8b41-09689a965ea3", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 174.0, "validated": false, "website": "https://www.facebook.com/events/459415711115955/", "handicap": true, "phone": "4129921360", "venue_name": "Northside Catholic School (at Risen Lord)", "venue_address": "3250 California Avenue, Pittsburgh, PA", "venue_type": "Church", "alcohol": false, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "March 3-Good Friday we will be hostng Northisde Catholic Schools Fish Fry Fridays at Risen Lord Church on Californis Avenue. Dine in from 3-6:30 or order a family meal for takeout, deliveries wil be made from 3-5pm, within a 5 mile radius from the church, for deliveries please call 4129921360 between 11-2 (on the day of the Fish Fry) to place your orders. We are handicap accesible!! Our hopes are to contiue to serve the community and with that we hope to see you at our Fish Fry Fridays!", "menu": {"url": null, "text": "Baked fish, fried fish, grilled cheese sandwhiches, mini cheese pizzas and much more we are sure will have something for everyone!! "}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.038741, 40.474645], "type": "Point"}}, {"id": "640b4c37-5b98-47b5-a9d7-0371f40c27d6", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 311.0, "validated": false, "website": "https://www.facebook.com/pg/Boondas-Hometown-Pizza-635643803135613", "handicap": null, "phone": "412-466-0464", "venue_name": "Boonda's ", "venue_address": "5622 Homeville Road, West Mifflin, PA 15122", "venue_type": "Restaurant", "alcohol": null, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "many Lenten specials"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.872523, 40.368225], "type": "Point"}}, {"id": "3104cae9-8615-4a3a-af9b-37cd73947dd1", "properties": {"lunch": true, "homemade_pierogies": false, "cartodb_id": 108.0, "validated": false, "website": "https://www.facebook.com/Wwvfdfishfry/", "handicap": null, "phone": "412-646-2594", "venue_name": "West Wilmerding VFD Station 211", "venue_address": "330 Kline ave, North Versailles, PA", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-23T20:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-02-16T20:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-03-02T20:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}, {"dt_end": "2018-02-14T20:00:00-05:00", "dt_start": "2018-02-14T11:00:00-05:00"}, {"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-09T20:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}], "venue_notes": "Greensburg Pike at Kline Ave", "etc": "Homemade Huluski and Local Deliveries.", "menu": {"url": "https://www.facebook.com/Wwvfdfishfry/", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.820394, 40.397375], "type": "Point"}}, {"id": "c35ac86d-1550-4814-bec4-43f8b722589d", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "412-931-4624", "venue_name": "St. Athanasius: Church--GOOD FRIDAY ONLY", "venue_address": "7 Chalfonte Ave., West View, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-30T18:30:00", "dt_start": "2018-03-30T15:30:00"}], "venue_notes": "parish hall", "etc": null, "menu": {"url": null, "text": "whale of a cod fish dinner or fish sandwich; choice of cole slaw or applesauce; choice of macaroni and cheese, french fries or pierogies; beverages and dessert. Cost is $9 for adults, $5 for child. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.029753, 40.5213], "type": "Point"}}, {"id": "af19a4c2-1d45-43c1-b9ba-517f124fd6e9", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 302.0, "validated": false, "website": null, "handicap": null, "phone": "724-728-8900", "venue_name": "Pappy J's Monaca", "venue_address": "2000 Marshall rd, monaca, pa 15061", "venue_type": "Restaurant", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-30T22:00:00-04:00", "dt_start": "2018-03-30T12:00:00-04:00"}, {"dt_end": "2018-02-23T22:00:00-05:00", "dt_start": "2018-02-23T12:00:00-05:00"}, {"dt_end": "2018-03-23T22:00:00-04:00", "dt_start": "2018-03-23T12:00:00-04:00"}, {"dt_end": "2018-03-02T22:00:00-05:00", "dt_start": "2018-03-02T12:00:00-05:00"}, {"dt_end": "2018-02-16T22:00:00-05:00", "dt_start": "2018-02-16T12:00:00-05:00"}, {"dt_end": "2018-03-16T22:00:00-04:00", "dt_start": "2018-03-16T12:00:00-04:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.272546, 40.678865], "type": "Point"}}, {"id": "23821d8c-5685-4ae3-9cb9-f59f0216949f", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 155.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Coulter Fire Department", "venue_address": "500 Railroad St, Coulter, PA 15028", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.804957, 40.298202], "type": "Point"}}, {"id": "acba3e37-0f74-4f37-a527-b5035a77238f", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "(412) 824-7667", "venue_name": "American Legion Post 820", "venue_address": "4339 Old William Penn Highway, Monroeville, Pennsylvania 15146, United States", "venue_type": "Community Organization", "alcohol": null, "take_out": true, "email": null, "events": [], "venue_notes": null, "etc": "Where: Monroeville American Legion\r\nDates & Times: Ash Wednesday 3:00pm - 8:00pm (Dine-In 3:00 - 6:30); Fridays 3:00pm - 8:00pm (Dine-In 3:00 - 8:00)", "menu": {"url": null, "text": "Menu & Cost:\r\n1/2 Haddock ~ $10\r\n3 Fish Tacos ~ $10\r\n3 Shrimp Tacos ~ $10\r\nPlatters ~ $14\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.774505, 40.442818], "type": "Point"}}, {"id": "a746932f-2180-4e5d-bdec-d27804c8f2d8", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "724-824-3210", "venue_name": "Zelienople Memorial Skate Park", "venue_address": "308 W. New Castle St., Zelienople, PA", "venue_type": "Community Organization", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://myzeliepark.org/wp-content/uploads/2018/01/2018-Fish-Fry.png", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.139738, 40.795071], "type": "Point"}}, {"id": "dba09e05-b770-491b-b690-1bc5fe1129fb", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "724-336-4696", "venue_name": "Enon Valley Community Volunteer Fire Department", "venue_address": "95 Cass Street, Enon Valley, Pennsylvania 16120, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "4-7 pm every Friday during Lent including Good Friday", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.457647, 40.855657], "type": "Point"}}, {"id": "eb3bbbdb-23e0-438a-a836-4e5e459c46a7", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 58.0, "validated": false, "website": "http://www.parishesonline.com/find/st-joseph-church-15841", "handicap": null, "phone": "814-787-4151", "venue_name": "St. Joseph", "venue_address": "17735 Bennetts Valley Highway, Force, PA", "venue_type": "Church", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "call to verify times and menu", "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-78.501687, 41.257947], "type": "Point"}}, {"id": "d6f8a3c8-dd83-4ade-8ecb-bef7432bba51", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "412-923-1772, ext. 152", "venue_name": "Parkway West Career and Technology Center (Pick up only)", "venue_address": "7101 Steubenville Pike, Oakdale, Pennsylvania 15071, United States", "venue_type": "Other", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T14:00:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T14:00:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T14:00:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T14:00:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T14:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T14:00:00"}], "venue_notes": null, "etc": "Prepared by culinary arts students.", "menu": {"url": "http://www.parkwaywest.org/District/2109-Untitled.html", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.177584, 40.442861], "type": "Point"}}, {"id": "833ae1b1-3e3a-4d4b-ad78-92f2482cec35", "properties": {"lunch": null, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/SARDIS78/", "handicap": null, "phone": "724-327-3987", "venue_name": "Sardis VFD", "venue_address": "5205 Rocky Hill Ln, Murrysville, Pennsylvania 15668, United States", "venue_type": "Unsure / N/A", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": "Contact Sardis VFD for information on dates/times.", "menu": {"url": "https://www.facebook.com/SARDIS78/photos/pcb.1829635353722262/1829635330388931/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.671492, 40.484779], "type": "Point"}}, {"id": "4576170b-5603-4329-874b-9ea096c832aa", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.sacredheartparishshadyside.org", "handicap": false, "phone": "412-361-3131", "venue_name": "Sacred Heart Parish", "venue_address": "325 Emerson Street, Pittsburgh, Pennsylvania 15206, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:30:00", "dt_start": "2018-02-16T17:00:00"}, {"dt_end": "2018-02-23T19:30:00", "dt_start": "2018-02-23T17:00:00"}, {"dt_end": "2018-03-02T19:30:00", "dt_start": "2018-03-02T17:00:00"}, {"dt_end": "2018-03-09T19:30:00", "dt_start": "2018-03-09T17:00:00"}, {"dt_end": "2018-03-16T19:30:00", "dt_start": "2018-03-16T17:00:00"}, {"dt_end": "2018-03-23T19:30:00", "dt_start": "2018-03-23T17:00:00"}], "venue_notes": "school cafeteria", "etc": "Fridays of Lent (except Good Friday) 5-7:30; takeout orders begin at 4 p.m.", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.923663, 40.455688], "type": "Point"}}, {"id": "9050d030-5a7f-4b57-a2ea-9ada956b3748", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "https://www.facebook.com/StMaxParish/", "handicap": true, "phone": "412-462-1743", "venue_name": "St. Maximilian Kolbe, West Homestead", "venue_address": "363 West 11th Avenue, Homestead, Pennsylvania 15120, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T10:30:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T10:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T10:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T10:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T10:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T10:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T10:30:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T10:30:00"}], "venue_notes": "Parish Hall", "etc": "Ash Wednesday and Fridays of Lent, including Good Friday, 10:30 a.m.-7 p.m. Delivery service to Downtown Pittsburgh from 11 a.m.-1 p.m., with minimum order of $30.", "menu": {"url": null, "text": "Fish:\r\nFried fish sandwich $7.75\r\nFried fish dinner $9.75\r\nBaked fish sandwich $8.00\r\nBaked fish dinner $10.25\r\nExtra Bun $1.00\r\n\r\nShrimp:\r\nJumbo shrimp (6) $6.75\r\nJumbo shrimp dinner $9.75\r\nPopcorn shrimp $5.50\r\nPopcorn shrimp dinner $8.00\r\n\r\nCrab:\r\nCrab cakes (2) $9.00\r\nCrab cake dinner $10.75\r\n\r\nStuffed flounder dinner $10.00\r\n\r\nStuffed Tomato - Tuna $6.00\r\n\r\nTuna Salad on Croissant $6.00\r\n\r\nEgg Salad on Croissant $6.00\r\n\r\nLinguini (comes with salad and roll):\r\nShrimp $9.25 red or white\r\nScallops $9.25 red or white\r\n\r\nPizza with cheese $6.00\r\n\r\n3 Pierogies $3.50\r\n6 Pierogies $6.50\r\n12 Pierogies $10.00\r\nwith onion or without onion\r\n\r\nPotato pancakes (3) $5.00\r\nApplesauce or sour cream\r\n\r\nGrilled Cheese & Tomato Soup $5.50\r\n\r\nFrench Fries $2.75\r\n\r\nStewed Tomato $2.50\r\n\r\nTuna Noodle Casserole $7.00\r\n\r\nTuna Melt on English Muffin $7.00\r\n\r\nTuna on Croissant $4.75\r\n\r\nEgg Salad on Croissant $4.75\r\n\r\nHaluski:\r\n12 ounce $3.00\r\n32 ounce $6.50\r\n\r\nPotato Haluski:\r\n12 ounce $5.00\r\n32 ounce $9.00\r\n\r\nMac N Cheese:\r\n8 ounces $3.50\r\n12 ounces $6.00\r\nQuart $9.00\r\n\r\nSoup:\r\n12 ounces $3.50\r\nQuart $7.00\r\n\r\nCole Slaw:\r\nServing $1.25\r\n12 ounces $3.00\r\nQuart $5.00\r\n\r\nSalad:\r\nSide $3.00\r\nLarge $5.00\r\n\r\nFresh Fruit Cup $3.50\r\n\r\nApplesauce $1.00\r\n________________________________________________\r\n\r\nFish dinners come with steak fries and cole slaw.\r\nNo substitutions, please.\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.9138, 40.401541], "type": "Point"}}, {"id": "0a16985c-571d-454c-bf23-2b66fe877fc7", "properties": {"lunch": false, "homemade_pierogies": true, "validated": true, "website": null, "handicap": true, "phone": "724-869-9758", "venue_name": "St. John the Baptist, Baden - Take-out Pierogie sale only", "venue_address": "377 Linmore Ave, Baden, Pennsylvania 15005, United States", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [], "venue_notes": "Pick-up in parish hall", "etc": "Pierogie sale, begins Friday, Feb. 16, and and continues every Friday through Good Friday. Open for orders at 6 a.m., and continues until sold out. To order, call 724-869-9758.", "menu": {"url": null, "text": "Pierogie sale. Menu includes potato, sauerkraut, cottage cheese and prune. Cost is $7.50 per dozen."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.229651, 40.634774], "type": "Point"}}, {"id": "78de8c24-344c-4468-bdd9-7181528de6aa", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 314.0, "validated": false, "website": null, "handicap": null, "phone": "724-292-8561", "venue_name": "True Vine Anglican Church", "venue_address": "700 E. Main St. Monongahela, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-30T18:30:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-23T18:30:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-16T18:30:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-09T18:30:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Every Friday in Lent 11-6:30. Fried Fish, Shrimp, Crab Cakes, Baked Fish, Fries, Cole Slaw, Mac and Cheese, Zucchini Fries, Haluski, Soup"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.907213, 40.193396], "type": "Point"}}, {"id": "a6d4b30a-9ae2-4482-8987-231ede53d969", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://prestovfd.org/custom.html?id=12301", "handicap": null, "phone": "(412) 221-5677", "venue_name": "Presto VFD", "venue_address": "5228 Thom's Run Road, Presto, Pennsylvania 15142, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [], "venue_notes": "fire station hall", "etc": "When: February 23, March 9, and March 23\r\nTimes: 3:30 pm to 7 pm", "menu": {"url": null, "text": "Hand Breaded Atlantic Cod\r\nButterfly Shrimp\r\nSame Day Fresh Buns\r\nHomemade Mac & Cheese\r\nCabbage and Noodles\r\nHandmade Cole Slaw\r\nKids Options\r\nDesserts\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.119492, 40.372716], "type": "Point"}}, {"id": "1c1441dc-f0ef-407e-923d-b5e9d3308240", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/belltwpvfd", "handicap": null, "phone": "724-697-4873", "venue_name": "Bell Township VFD", "venue_address": "201 Main Street, Salina, PA 15680 ", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:30:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T18:30:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T18:30:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T18:30:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T18:30:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T18:30:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T18:30:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T18:30:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "4-6:30 PM, Ash Wednesday and Fridays of Lent", "menu": {"url": "https://www.facebook.com/belltwpvfd/photos/pcb.977266475754488/977266449087824/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.499104, 40.521916], "type": "Point"}}, {"id": "de296782-b17e-4c49-aab1-ad84196b3fc6", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 127.0, "validated": false, "website": null, "handicap": null, "phone": "724-238-5270", "venue_name": "Ligonier Township VFD #1", "venue_address": "44 Fire Hall Road, Ligonier, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T16:00:00-05:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T16:00:00-04:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T16:00:00-05:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T16:00:00-05:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T16:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": null, "text": "Fish Fry Menu!!!!!! Baked Fish Dinner Fried Fish Dinner Fried Fish Sandwich Dinner Shrimp Dinner Fish Sandwich Side Option 1 includes: coleslaw, parsley potatoes, dessert, drinks your choice of Green Beans or Macaroni and Cheese. Side Option 2 Includes: coleslaw, French Fries, Dessert, Drinks and your choice of Green Beans or Macaroni and Cheese. Adult Dinner $9.00 Children $5.75 Take out .50 Extra"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.173197, 40.25274], "type": "Point"}}, {"id": "1de40fc9-14a8-4c2c-ad8a-ddccc0273d84", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/RainbowVFC300/", "handicap": null, "phone": "412-664-9523", "venue_name": "Rainbow VFC", "venue_address": "2916 Jacks Run Road, White Oak, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/RainbowVFC300/photos/pcb.1906435469397888/1906435426064559/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.801553, 40.341033], "type": "Point"}}, {"id": "9cf1e4b0-14f1-4d35-a5d3-5063c2e4126f", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": null, "handicap": null, "phone": "412-303-8786", "venue_name": "St. Alphonsus, McDonald ", "venue_address": " 219 W Lincoln Ave, McDonald, PA 15057", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}], "venue_notes": "Church Social Hall", "etc": " **Ash Wednesday and First Friday of Lent only**", "menu": {"url": null, "text": "Fish Fried or Baked, dinner roll or sandwich bun $7\r\nCole Slaw $1\r\n3 Pierogi's $3.50\r\nHalushki $3.50\r\nMac n Cheese $3.50\r\nDessert $1\r\nCan Soda $1\r\nCoffee, Lemon Blend, Iced Tea included with purchase"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.236369, 40.368263], "type": "Point"}}, {"id": "12ef7e40-88b7-49e1-ac5f-c03c1fb7ba8b", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.greenockvfc.com/", "handicap": null, "phone": "(412) 751-6564", "venue_name": "Greenock VFC", "venue_address": "1000 Greenock Buena Vista Road, McKeesport, Pennsylvania 15135, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}], "venue_notes": null, "etc": "When: Starting Friday Feb. 16,2018 and each Friday in Lent\r\nTimes: 4:00 To 7:00 PM\r\n", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.800155, 40.311011], "type": "Point"}}, {"id": "06625eac-1c9b-461e-8894-73f6de3caa8c", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 55.0, "validated": false, "website": null, "handicap": null, "phone": "724-342-7391", "venue_name": "St. Anthony (church hall)", "venue_address": "804 Idaho St. , Sharon , PA 16146", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T16:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}], "venue_notes": null, "etc": "March 3, 10, 17, 24, 31, April 7, 14", "menu": {"url": null, "text": "Fried or baked fish. includes choice of baked potato or french fries, applesauce or coleslaw, cookie and beverage. palacinkas, too!"}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.494319, 41.216598], "type": "Point"}}, {"id": "facd3993-bd74-4653-90e7-113f7462f8d1", "properties": {"lunch": null, "homemade_pierogies": true, "validated": true, "website": "www.immaculateheartpolishhill.com", "handicap": true, "phone": "412-621-5441", "venue_name": "Immaculate Heart of Mary Church", "venue_address": "3058 Brereton St, Pittsburgh, PA 15219", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:30:00", "dt_start": "2018-02-14T15:00:00"}, {"dt_end": "2018-02-16T18:30:00", "dt_start": "2018-02-16T15:00:00"}, {"dt_end": "2018-02-23T18:30:00", "dt_start": "2018-02-23T15:00:00"}, {"dt_end": "2018-03-02T18:30:00", "dt_start": "2018-03-02T15:00:00"}, {"dt_end": "2018-03-09T18:30:00", "dt_start": "2018-03-09T15:00:00"}, {"dt_end": "2018-03-16T18:30:00", "dt_start": "2018-03-16T15:00:00"}, {"dt_end": "2018-03-23T18:30:00", "dt_start": "2018-03-23T15:00:00"}], "venue_notes": "Rosary Hall", "etc": "Drop off baked goods for sale before 2pm.", "menu": {"url": null, "text": "$9.00 Fish Dinner includes a 9oz Fried Cod Loin Fish Sandwich, Fries, and Cole Slaw.\r\n$7.00 Fish Sandwich\r\n$2.50 - Soup\r\n$2.50 Haluszki, $2.50 for 3 Pierogi, $2.50 Mac & Cheese, $1.00 Drinks, Various Baked Goods for Sale. Free Coffee\r\nTo go orders can be called into Rosary Hall at 412-621-5441"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.974169, 40.454426], "type": "Point"}}, {"id": "50bd9a9e-d15e-4343-b094-ebdc2d93402f", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 147.0, "validated": false, "website": "https://www.facebook.com/Pitcairn-Fire-Department-Station-230-147323132018875/", "handicap": null, "phone": "412-856-5630", "venue_name": "Pitcairn Station 230", "venue_address": "557 Broadway Blvd., Pitcairn, Pa 15140", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T16:00:00-04:00"}, {"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}], "venue_notes": "Pitcairn Park Building", "etc": "Free Delivery", "menu": {"url": "https://www.facebook.com/photo.php?fbid=1466235763388184&set=p.1466235763388184&type=3&theater", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.776326, 40.402047], "type": "Point"}}, {"id": "7fa11032-17e6-4792-8b0b-0e70d48acd6b", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 208.0, "validated": false, "website": null, "handicap": null, "phone": "724-964-8047", "venue_name": "St. James the Apostle, Pulaski", "venue_address": "4019 US-422, Pulaski, PA 16143", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T16:00:00-04:00"}], "venue_notes": null, "etc": "Fridays of Lent, except Good Friday, 4-7 p.m. ", "menu": {"url": null, "text": "Serving baked or fried fish, french fries, pierogies, macaroni and cheese, green beans, cole slaw, roll, drinks and desserts. Cost is $9 for adult dinner, $4 for kids. Takeout fish sandwich and french fries is $5 from 11 a.m.-1 p.m. only. Phone for takeout sandwich orders only."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.29478, 40.73507], "type": "Point"}}, {"id": "bf507bff-c57b-4c00-b937-5dfa8dca4af6", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.stvals.org/", "handicap": true, "phone": "412-835-4415", "venue_name": "St. Valentine, Bethel Park", "venue_address": "2710 Ohio St. Bethel Park, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:30:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:30:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:30:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:30:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:30:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:30:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:30:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "Call 412-851-9176 for takeout orders", "menu": {"url": null, "text": "Menu features fried beer-battered cod sandwich, child\u2019s fish sandwich, Nantucket baked fish, shrimp dinner and pierogie dinner. Variety of sides and desserts available. Cost: adult dinners begin at $5.50, with $1 senior discount; child dinner is $5 for sandwich; sandwiches begin at $8."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.031322, 40.330198], "type": "Point"}}, {"id": "37c2f8b1-a587-49c1-a5dc-2762ede888f3", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://www.stvictors.org/", "handicap": true, "phone": "724-265-4017", "venue_name": "St. Victor, Bairdford and Transfiguration, Russellton", "venue_address": "27 Bairdford Road, Gibsonia, Pennsylvania 15044, United States", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T12:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T12:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T12:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T12:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T12:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T12:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T12:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T12:00:00"}], "venue_notes": "Activity hall", "etc": null, "menu": {"url": null, "text": "Freshly breaded or baked cod, deluxe fish sandwich or dinner; shrimp basket; clam strips; crab cakes; breaded oysters; pierogies; haluski; New England clam chowder, bake sale and more. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.89658, 40.653332], "type": "Point"}}, {"id": "72be09b2-e045-4911-8ef1-4e6c3f91c158", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "www.stbpitt.com", "handicap": true, "phone": "412-843-0668", "venue_name": "St. Bernadette (Monroeville)", "venue_address": "245 Azalea Drive, Monroeville, PA 15146", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:30:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:30:00"}], "venue_notes": "Dinners Served in the Lourdes Center Dining Hall ", "etc": "Fridays of Lent except Good Friday 4:30-7", "menu": {"url": null, "text": "Menu features haluski, \u201cThe Gargotta\u201d fish sandwich, french fries, pierogies, desserts and beverage."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.771866, 40.441257], "type": "Point"}}, {"id": "db3d25bf-5dfe-4a4d-bd3d-f954074a8169", "properties": {"lunch": false, "homemade_pierogies": false, "validated": false, "website": "https://www.firedepartment.net/directory/pennsylvania/beaver-county/baden/economy-fire-department", "handicap": true, "phone": "724-266-3714 or 724-266-1116", "venue_name": "Economy Volunteer Fire Department 1 Station 69", "venue_address": "3308 Conway Wallrose Road, Sewickley, Pennsylvania 15143, United States", "venue_type": "Fire Department", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "Handicap accessible: Please let parking lot attendants know and they will park you in the handicap location.", "etc": "Every Friday during Lent, 4-7pm. For takeout, please call ahead: 724-266-3714 or 724-266-1116.", "menu": {"url": null, "text": "Fish, Crab Cakes, Fried Shrimp, Chicken, Coleslaw, Mac n Cheese, French Fries. See website for menu."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.161044, 40.632286], "type": "Point"}}, {"id": "d4ac1e99-b032-4838-8142-740b052e3583", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 304.0, "validated": false, "website": "https://www.ssebastianparish.org/", "handicap": null, "phone": "412-364-7171 ext. 8326", "venue_name": "St. Sebastian", "venue_address": "311 Siebert Rd., Pittsburgh, PA", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T16:30:00-05:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T16:30:00-05:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T16:30:00-05:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T16:30:00-04:00"}], "venue_notes": null, "etc": "online orders accepted", "menu": {"url": "https://media.wix.com/ugd/ae8b04_f0a44a09191641a1baf93cd357551b1b.pdf", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.011604, 40.529744], "type": "Point"}}, {"id": "9709e254-05cf-4bfb-b16f-61c8d03ea35a", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "http://www.moose46.org/", "handicap": null, "phone": "412-487-9055", "venue_name": "Pittsburgh Moose Lodge 46 North Hills", "venue_address": "1044 Saxonburg Blvd., Glenshaw, PA", "venue_type": "Community Organization", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:30:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:30:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:30:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:30:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:30:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:30:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:30:00", "dt_start": "2018-03-30T16:00:00"}, {"dt_end": "2018-02-14T19:30:00", "dt_start": "2018-02-14T16:00:00"}], "venue_notes": "Social hall", "etc": "When: Ash Wednesday and every Friday during Lent\r\nTimes: 4:00 \u2013 7:30 PM", "menu": {"url": null, "text": "Fish Sandwich and one side $10.00\r\nFish Sandwich (or on a dish) only $9.00\r\n6 Large shrimp $7.00\r\nSides include:\r\nMac and Cheese:\r\nFrench Fries\r\nHaluski\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.939018, 40.519496], "type": "Point"}}, {"id": "3bfdf145-9d06-4589-b233-07bf81392938", "properties": {"lunch": true, "homemade_pierogies": true, "validated": true, "website": "www.namschool.org", "handicap": true, "phone": "412-372-9771", "venue_name": "North American Martyrs Catholic School, Monroeville", "venue_address": "2526 Haymaker Road Monroeville, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:30:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:30:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:30:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:30:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:30:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:30:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:30:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": "school cafeteria", "etc": "Ash Wednesday and Fridays of Lent, including Good Friday, 11:30 a.m.-7 p.m. (4-7 p.m. Good Friday)", "menu": {"url": null, "text": "Dinner menu: \u201cThe NAM Slammer\u201d (fried fish dinner), $10.75, with hand-breaded Atlantic cod served on fresh bread, with french fries, cole slaw or applesauce; baked fish dinner, $9.50, with premium Atlantic cod loin baked to perfection, with french fries, dinner roll, cole slaw or applesauce; shrimp, $10.25, breaded and deep-fried shrimp, with french fries, roll and cole slaw or applesauce; pierogie dinner, $7.50, featuring homemade potato and cheese pierogies by Cop Out Pierogies (five), with onions, and choice of cole slaw or applesauce. Extensive a la carte menu that includes soup, haluski, pierogie side order, macaroni and cheese, pizza and more. Fresh crab cakes made daily, with limited quantity available. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.748941, 40.425664], "type": "Point"}}, {"id": "b6151d69-c533-4ac2-a22f-eec618150010", "properties": {"lunch": false, "homemade_pierogies": null, "cartodb_id": 137.0, "validated": false, "website": "https://www.facebook.com/BrightonTwpFire/?ref=ts", "handicap": null, "phone": "724-495-3803", "venue_name": "Brighton Township VFD Station 63", "venue_address": "84 Grange Road Beaver, PA 15009", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.396937, 40.704918], "type": "Point"}}, {"id": "d7b7d9a6-dfb2-4515-823c-0d6681147faf", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 112.0, "validated": false, "website": "https://www.facebook.com/Chippewa-Township-Volunteer-Fire-Department-Beaver-Falls-PA-348825468612/", "handicap": null, "phone": "724-847-0391", "venue_name": "Chippewa VFD", "venue_address": "2568 Darlington Rd, Beaver Falls, PA 15010", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-02-16T19:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}], "venue_notes": null, "etc": "All you can eat fish dinner (for eat in only). ", "menu": {"url": null, "text": " Dinner includes a large piece of haddock, coleslaw, your choice of pierogies, fries or mac &Cheese and a drink for $11.00. Also available are chicken tenders and children's portions."}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.376624, 40.773576], "type": "Point"}}, {"id": "9d9c7241-9eb2-4293-afa9-3583c64244d4", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 126.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Paintertown VFC", "venue_address": "1010 tray rd north huntington, pa", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.703751, 40.357222], "type": "Point"}}, {"id": "c2fb9718-a6a2-42b7-95ae-925ed8a3cc59", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": "www.olmbss.org", "handicap": true, "phone": "724-226-4905", "venue_name": "Our Lady of Most Blessed Sacrament, Natrona Heights", "venue_address": "800 Montana Avenue, Natrona Heights, Pennsylvania 15065, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}], "venue_notes": "takeout and drive through available", "etc": "Fridays of Lent, including Good Friday, 4-7 p.m.", "menu": {"url": null, "text": "Dinner is choice of deep-fired cod sandwich, with choice of macaroni and cheese or chips and cole slaw. A la carte menu includes fried or baked cod sandwich, potato and cheese pierogies, macaroni and cheese, cole slaw and chips. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.727126, 40.620603], "type": "Point"}}, {"id": "1cf32784-c866-456a-8306-fafbdad32440", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/pages/Re-Club/197894456915505", "handicap": null, "phone": "412-781-0229", "venue_name": "RE club / Regina Elena Italian Heritage Club", "venue_address": "615 Main Street, Pittsburgh, Pennsylvania 15215, United States", "venue_type": "Community Organization", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:00:00", "dt_start": "2018-02-14T12:00:00"}, {"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T12:00:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T12:00:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T12:00:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T12:00:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T12:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T12:00:00"}, {"dt_end": "2018-03-30T18:00:00", "dt_start": "2018-03-30T12:00:00"}], "venue_notes": null, "etc": "Starting on Ash Wednesday February 14 and every Friday during Lent including Good Friday from 12 noon to 6 pm", "menu": {"url": null, "text": "Fish sandwich, shrimp, mac n cheese, cole slaw, french fries, pierogies with sauteed onions, haluski"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.935348, 40.495048], "type": "Point"}}, {"id": "f0451b6a-afd4-4017-a6cc-e8327fe9e72f", "properties": {"lunch": true, "homemade_pierogies": false, "validated": true, "website": "http://www.stmarycecil.org/", "handicap": true, "phone": "412-221-1560", "venue_name": "St. Mary Parish", "venue_address": "10 Saint Marys Ln, Cecil, Pennsylvania 15321, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": "SaintMaryFishFry@gmail.com", "events": [{"dt_end": "2018-02-14T13:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T16:00:00"}, {"dt_end": "2018-02-16T13:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T13:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T13:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T13:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T13:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T13:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T13:00:00", "dt_start": "2018-03-30T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "Takeout available; call 412-221-9771, or e-mail orders to SaintMaryFishFry@gmail.com. For information, call 412-221-1560 or visit www.stmarycecil.org.", "menu": {"url": "http://www.stmarycecil.org/", "text": " Menu features homemade crab cakes (dinner only), baked fish, fried fish with panko crumbs, baked salmon and pierogies from Keener\u2019s Just Nuts and Pierogies in Bethel Park. Dinners $11+, Sandwiches $8+"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.184821, 40.328668], "type": "Point"}}, {"id": "428db2a8-d913-49d5-a42d-77618182f4c0", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 17.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Kiski Township Fire Department #1", "venue_address": "1263 Old State Road Apollo, Pa. 15613", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.526314, 40.587396], "type": "Point"}}, {"id": "6a190251-b0f0-4965-ad29-078649c6641e", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "http://www.trinitysheraden.com/UpcomingEvents.htm", "handicap": false, "phone": "412-331-0600", "venue_name": "Trinity Lutheran", "venue_address": "3102 Sherwood Ave., Sheraden, PA", "venue_type": "Church", "alcohol": false, "take_out": false, "email": null, "events": [], "venue_notes": null, "etc": "Sorry, we will not be having a Fish Fry this year", "menu": {"url": null, "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.058133, 40.455098], "type": "Point"}}, {"id": "e9d11ebf-0459-4f6e-923f-f4e250e6a244", "properties": {"lunch": true, "homemade_pierogies": false, "validated": true, "website": "http://station207.com/nbfd-lenten-fish-fry/", "handicap": null, "phone": "412-824-7791 Pickup or Delivery", "venue_name": "North Braddock VFD", "venue_address": "1318 Wolfe, North Braddock, PA", "venue_type": "Fire Department", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T18:00:00", "dt_start": "2018-02-14T10:00:00"}, {"dt_end": "2018-02-16T18:00:00", "dt_start": "2018-02-16T10:00:00"}, {"dt_end": "2018-02-23T18:00:00", "dt_start": "2018-02-23T10:00:00"}, {"dt_end": "2018-03-02T18:00:00", "dt_start": "2018-03-02T10:00:00"}, {"dt_end": "2018-03-09T18:00:00", "dt_start": "2018-03-09T10:00:00"}, {"dt_end": "2018-03-16T18:00:00", "dt_start": "2018-03-16T10:00:00"}, {"dt_end": "2018-03-23T18:00:00", "dt_start": "2018-03-23T10:00:00"}, {"dt_end": "2018-03-30T18:00:00", "dt_start": "2018-03-30T10:00:00"}], "venue_notes": null, "etc": "Ash Wednesday and Every Friday in Lent including Good Friday 10AM to 6PM", "menu": {"url": "https://www.facebook.com/NBVFD/photos/a.591023700960179.1073741826.102867803109107/1771746209554583/?type=3", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.845253, 40.405117], "type": "Point"}}, {"id": "3dbb1478-fbd4-4d55-9b20-f661bd1acf6d", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 130.0, "validated": false, "website": null, "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Lloydsville VFD", "venue_address": "208 Dickens Street, Latrobe, PA 15650", "venue_type": "Fire Department", "alcohol": null, "take_out": null, "email": null, "events": [], "venue_notes": null, "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.401643, 40.314658], "type": "Point"}}, {"id": "855f6b89-7e44-4d20-bb4e-cf63f4596542", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "http://www.easternareaems.com/", "handicap": null, "phone": "(412) 829-8155", "venue_name": "Eastern Area Prehospital Services", "venue_address": "192 11th Street Turtle Creek, PA 15145", "venue_type": "Community Organization", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:00:00"}, {"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": "Eastern Area Prehospital Ambulance Hall\r\n", "etc": "When: Ash Wednesday & every Friday throughout Lent including Good Friday\r\nTimes: 11 AM to 7 PM", "menu": {"url": null, "text": "Fried and Baked Fish, Fried Shrimp, Crab Cakes, Clam Strips, Dinners or Sandwiches and/or Sides (including pierogies, haluski, macaroni & cheese, coleslaw, French fries, cheese sticks, and soup) ranging from $3.00 to $9.00\r\n"}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.822413, 40.403679], "type": "Point"}}, {"id": "2dda4d86-15e8-4f20-bf51-3e0f869bd98d", "properties": {"lunch": false, "homemade_pierogies": null, "validated": true, "website": null, "handicap": true, "phone": "724-452-8010", "venue_name": "St. Gregory, Zelienople", "venue_address": "115 Pine Street, Zelienople, Pennsylvania 16063, United States", "venue_type": "Church", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}], "venue_notes": null, "etc": "Fridays of Lent, except Good Friday, 4-7 p.m. Proceeds benefit school. ", "menu": {"url": null, "text": "Dinner entrees: breaded and fried 8-ounce cod or hand-breaded 8-ounce baked cod; fried fish sandwich on Amoroso roll; fried shrimp (six large shrimp). All entrees come with choice of two sides (macaroni and cheese, french fries, vegetables and other \u201cspecial side\u201d), plus homemade cole slaw, dinner roll, dessert and beverage (if dining in). Dinner cost: $10 adults; $8 seniors 65 and older; $5 children ages 4-10; ages 3 and under free. Also: combo with fish dinner and three shrimp, additional $3; fish sandwich only, $6, with fries, $7. Look for weekly non-fish special. Children\u2019s menu choice include pizza, child\u2019s fish dinner (half fried fish or half shrimp order) or weekly featured non-fish special."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.142407, 40.789751], "type": "Point"}}, {"id": "5c5fdaa6-c2f4-4e07-9a9d-8558192386f9", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/turkeytownvfd/", "handicap": null, "phone": "724-872-8868", "venue_name": "Turkeytown VFD", "venue_address": "90 Supervisor Dr, West Newton, Pennsylvania 15089, United States", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}], "venue_notes": null, "etc": null, "menu": {"url": "https://www.facebook.com/turkeytownvfd/photos/gm.124482868268810/949677978521396/?type=3&theater", "text": null}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.732103, 40.194154], "type": "Point"}}, {"id": "0921c929-15a0-4381-a935-8fa844626352", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 68.0, "validated": false, "website": null, "handicap": null, "phone": "724-745-9955", "venue_name": "Polish National Union", "venue_address": "510 Franklin Ave, Canonsburg, PA", "venue_type": "Community Organization", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-02-16T20:00:00-05:00", "dt_start": "2018-02-16T11:00:00-05:00"}, {"dt_end": "2018-03-09T20:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-23T20:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-16T20:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-02-23T20:00:00-05:00", "dt_start": "2018-02-23T11:00:00-05:00"}, {"dt_end": "2018-03-30T20:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-02-14T20:00:00-05:00", "dt_start": "2018-02-14T17:00:00-05:00"}, {"dt_end": "2018-03-02T20:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}], "venue_notes": "Enter through back entrance through the bar. The upstairs social hall offers a non-smoking dining experience.", "etc": null, "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-80.177115, 40.267664], "type": "Point"}}, {"id": "4fdfde15-f534-49d8-a108-d924332fea24", "properties": {"lunch": true, "homemade_pierogies": null, "validated": true, "website": "https://www.facebook.com/MtOliverFire/", "handicap": null, "phone": "412-431-5210", "venue_name": "Mount Oliver Fire Department", "venue_address": "120 Brownsville Rd., Mount Oliver, PA", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T11:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T11:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T11:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T11:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T11:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T11:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T11:00:00"}, {"dt_end": "2018-02-14T19:00:00", "dt_start": "2018-02-14T11:00:00"}], "venue_notes": null, "etc": "DATES/HOURS: Ash Wednesday, Feb. 14 and Every Friday from Feb. 16 thru March 30 from 11 a.m. to 7 p.m.", "menu": {"url": null, "text": "COST & MENU INFORMATION: Fish, Butterfly Shrimp, Maryland-style Crab Cakes, Coleslaw, Mac N Cheese, French Fries, Onion Rings, Mozzarella Sticks, Stewed Tomatoes, and Beverages. Kids meals also available. Dinner w/ side for $8."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-79.987008, 40.417083], "type": "Point"}}, {"id": "e4b9d542-722a-4a9c-858b-45c1a038b077", "properties": {"lunch": true, "homemade_pierogies": null, "cartodb_id": 310.0, "validated": false, "website": "https://www.facebook.com/groups/1812124365669339/", "handicap": null, "phone": "724-523-5308", "venue_name": "Grapeville VFC", "venue_address": "2528 Newark Street, Grapeville, PA 15634", "venue_type": "Fire Department", "alcohol": true, "take_out": true, "email": null, "events": [{"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T12:00:00-05:00"}, {"dt_end": "2018-02-23T19:00:00-05:00", "dt_start": "2018-02-23T12:00:00-05:00"}, {"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T12:00:00-04:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T12:00:00-05:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T12:00:00-04:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T12:00:00-04:00"}], "venue_notes": null, "etc": "https://www.facebook.com/photo.php?fbid=10154123687162827&set=gm.1863326233882485&type=3&theater", "menu": {"url": null, "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.605297, 40.32459], "type": "Point"}}, {"id": "a485f284-7116-431a-acde-58d6dd1d5191", "properties": {"lunch": null, "homemade_pierogies": null, "cartodb_id": 140.0, "validated": false, "website": "http://sports.bluesombrero.com/Default.aspx?tabid=359491", "handicap": null, "phone": "xxx-xxx-xxxx", "venue_name": "Highland Hornets Youth Football and Cheerleading Fish Fry", "venue_address": "Karns Road at Chevrolet Road, Natrona Heights, PA", "venue_type": "Community Organization", "alcohol": null, "take_out": null, "email": null, "events": [{"dt_end": "2018-03-23T19:00:00-04:00", "dt_start": "2018-03-23T11:00:00-04:00"}, {"dt_end": "2018-03-16T19:00:00-04:00", "dt_start": "2018-03-16T11:00:00-04:00"}, {"dt_end": "2018-03-30T19:00:00-04:00", "dt_start": "2018-03-30T11:00:00-04:00"}, {"dt_end": "2018-03-09T19:00:00-05:00", "dt_start": "2018-03-09T11:00:00-05:00"}, {"dt_end": "2018-03-02T19:00:00-05:00", "dt_start": "2018-03-02T11:00:00-05:00"}], "venue_notes": null, "etc": null, "menu": {"url": "http://sports.bluesombrero.com/Default.aspx?tabid=359491&mid=384902&newskeyid=HN1&newsid=40113129&ctl=newsdetail", "text": null}, "publish": false}, "type": "Feature", "geometry": {"coordinates": [-79.703577, 40.630473], "type": "Point"}}, {"id": "b73d2b48-16f0-4e62-b083-32487a4a0244", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "https://www.facebook.com/raccoontwpvfd/", "handicap": null, "phone": "724-495-6630", "venue_name": "Raccoon Township VFD", "venue_address": "4061 Patterson Road Aliquippa, PA 15061", "venue_type": "Fire Department", "alcohol": null, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T20:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T20:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T20:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T20:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T20:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T20:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T20:00:00", "dt_start": "2018-03-30T16:00:00"}], "venue_notes": null, "etc": "One way to off set the high cost of equiping and maintaining a Fire Department is fish fries. Travel to any part of Pennsylvania on a Friday and you're sure to run across one. We here at Raccoon VFD are no different and pride ourselves in serving you a great meal at a great price. \r\n\r\nTake-out Orders Accepted (724) 495-6630.", "menu": {"url": "www.raccoonvfd.com/raccoonvfd_fish_fries.php", "text": "See menu link for a complete list of a la carte items. \r\n\r\nDinners available include: Fish Dinner $12.00, Baked Fish Dinner $12.00, Senior Dinner, $10.50, Child's Dinner (one piece) $7.50, Shrimp Dinner (6) $8.50. \r\n\r\nAll eat-in dinners include French Fries, Salad Bar, and coffee or Fruit Drink.\r\n\r\nTake-out dinners include French Fries, Bread, Cole Slaw, and Potatoe Salad."}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.369453, 40.618562], "type": "Point"}}, {"id": "57318e4d-36b5-4df8-8ce1-05a661d57d4e", "properties": {"lunch": false, "homemade_pierogies": false, "validated": true, "website": "http://www.stwinifred.org/", "handicap": true, "phone": "412-344-5010", "venue_name": "St. Winifred, Mount Lebanon", "venue_address": "550 Sleepy Hollow Road Pittsburgh, PA", "venue_type": "Church", "alcohol": false, "take_out": true, "email": null, "events": [{"dt_end": "2018-02-16T19:00:00", "dt_start": "2018-02-16T16:00:00"}, {"dt_end": "2018-02-23T19:00:00", "dt_start": "2018-02-23T16:00:00"}, {"dt_end": "2018-03-02T19:00:00", "dt_start": "2018-03-02T16:00:00"}, {"dt_end": "2018-03-09T19:00:00", "dt_start": "2018-03-09T16:00:00"}, {"dt_end": "2018-03-16T19:00:00", "dt_start": "2018-03-16T16:00:00"}, {"dt_end": "2018-03-23T19:00:00", "dt_start": "2018-03-23T16:00:00"}, {"dt_end": "2018-03-30T19:00:00", "dt_start": "2018-03-30T15:00:00"}], "venue_notes": "Benedict Hall", "etc": "Meals brought to tables. Craft corner for children. Takeout available, call 412-563-1415 during fish fry hours", "menu": {"url": "http://www.stwinifred.org/fish-fry", "text": "Fried and baked fish, crab cakes and shrimp dinners, $9, and includes cole slaw, french fries or macaroni and cheese, roll, dessert and beverage. A la carte menu includes pizza, clam chowder, macaroni and cheese, french fries, onion rings, haluski, cole slaw, salad, applesauce, buttered noodles, crab cakes, breaded shrimp and stewed tomatoes. "}, "publish": true}, "type": "Feature", "geometry": {"coordinates": [-80.023619, 40.375395], "type": "Point"}}], "type": "FeatureCollection"} diff --git a/assets/fonts/FontAwesome.otf b/assets/fonts/FontAwesome.otf deleted file mode 100644 index 401ec0f..0000000 Binary files a/assets/fonts/FontAwesome.otf and /dev/null differ diff --git a/assets/fonts/fontawesome-webfont.eot b/assets/fonts/fontawesome-webfont.eot deleted file mode 100644 index e9f60ca..0000000 Binary files a/assets/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/assets/fonts/fontawesome-webfont.svg b/assets/fonts/fontawesome-webfont.svg deleted file mode 100644 index 855c845..0000000 --- a/assets/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,2671 +0,0 @@ - - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/fonts/fontawesome-webfont.ttf b/assets/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 35acda2..0000000 Binary files a/assets/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/assets/fonts/fontawesome-webfont.woff b/assets/fonts/fontawesome-webfont.woff deleted file mode 100644 index 400014a..0000000 Binary files a/assets/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/assets/fonts/fontawesome-webfont.woff2 b/assets/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc6..0000000 Binary files a/assets/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/assets/js/bundle.core.js b/assets/js/bundle.core.js deleted file mode 100644 index 12352b9..0000000 --- a/assets/js/bundle.core.js +++ /dev/null @@ -1 +0,0 @@ -!function r(s,a,l){function u(e,t){if(!a[e]){if(!s[e]){var n="function"==typeof require&&require;if(!t&&n)return n(e,!0);if(h)return h(e,!0);var i=new Error("Cannot find module '"+e+"'");throw i.code="MODULE_NOT_FOUND",i}var o=a[e]={exports:{}};s[e][0].call(o.exports,function(t){return u(s[e][1][t]||t)},o,o.exports,r,s,a,l)}return a[e].exports}for(var h="function"==typeof require&&require,t=0;tthis.$items.length-1||t<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):n==t?this.pause().cycle():this.slide(ndocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},r.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},r.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth

'}),((r.prototype=o.extend({},o.fn.tooltip.Constructor.prototype)).constructor=r).prototype.getDefaults=function(){return r.DEFAULTS},r.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),n=this.getContent();if(this.options.html){var i=s(n);this.options.sanitize&&(e=this.sanitizeHtml(e),"string"===i&&(n=this.sanitizeHtml(n))),t.find(".popover-title").html(e),t.find(".popover-content").children().detach().end()["string"===i?"html":"append"](n)}else t.find(".popover-title").text(e),t.find(".popover-content").children().detach().end().text(n);t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},r.prototype.hasContent=function(){return this.getTitle()||this.getContent()},r.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},r.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var t=o.fn.popover;o.fn.popover=function(i){return this.each(function(){var t=o(this),e=t.data("bs.popover"),n="object"==s(i)&&i;!e&&/destroy|hide/.test(i)||(e||t.data("bs.popover",e=new r(this,n)),"string"==typeof i&&e[i]())})},o.fn.popover.Constructor=r,o.fn.popover.noConflict=function(){return o.fn.popover=t,this}}(jQuery)},{}],10:[function(t,e,n){"use strict";function s(t){return(s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}!function(r){function o(t,e){this.$body=r(document.body),this.$scrollElement=r(t).is(document.body)?r(window):r(t),this.options=r.extend({},o.DEFAULTS,e),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",r.proxy(this.process,this)),this.refresh(),this.process()}function e(i){return this.each(function(){var t=r(this),e=t.data("bs.scrollspy"),n="object"==s(i)&&i;e||t.data("bs.scrollspy",e=new o(this,n)),"string"==typeof i&&e[i]()})}o.VERSION="3.4.1",o.DEFAULTS={offset:10},o.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},o.prototype.refresh=function(){var t=this,i="offset",o=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),r.isWindow(this.$scrollElement[0])||(i="position",o=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var t=r(this),e=t.data("target")||t.attr("href"),n=/^#./.test(e)&&r(e);return n&&n.length&&n.is(":visible")?[[n[i]().top+o,e]]:null}).sort(function(t,e){return t[0]-e[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},o.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,n=this.getScrollHeight(),i=this.options.offset+n-this.$scrollElement.height(),o=this.offsets,r=this.targets,s=this.activeTarget;if(this.scrollHeight!=n&&this.refresh(),i<=e)return s!=(t=r[r.length-1])&&this.activate(t);if(s&&e=o[t]&&(void 0===o[t+1]||e .active"),o=n&&a.support.transition&&(i.length&&i.hasClass("fade")||!!e.find("> .fade").length);function r(){i.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),t.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),o?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu").length&&t.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),n&&n()}i.length&&o?i.one("bsTransitionEnd",r).emulateTransitionEnd(s.TRANSITION_DURATION):r(),i.removeClass("in")};var t=a.fn.tab;a.fn.tab=e,a.fn.tab.Constructor=s,a.fn.tab.noConflict=function(){return a.fn.tab=t,this};function n(t){t.preventDefault(),e.call(a(this),"show")}a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',n).on("click.bs.tab.data-api",'[data-toggle="pill"]',n)}(jQuery)},{}],12:[function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}!function(m){var i=["sanitize","whiteList","sanitizeFn"],s=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],t={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},a=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,l=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function f(t,e){var n=t.nodeName.toLowerCase();if(-1!==m.inArray(n,e))return-1===m.inArray(n,s)||Boolean(t.nodeValue.match(a)||t.nodeValue.match(l));for(var i=m(e).filter(function(t,e){return e instanceof RegExp}),o=0,r=i.length;o
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0},sanitize:!0,sanitizeFn:null,whiteList:t},g.prototype.init=function(t,e,n){if(this.enabled=!0,this.type=t,this.$element=m(e),this.options=this.getOptions(n),this.$viewport=this.options.viewport&&m(document).find(m.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var i=this.options.trigger.split(" "),o=i.length;o--;){var r=i[o];if("click"==r)this.$element.on("click."+this.type,this.options.selector,m.proxy(this.toggle,this));else if("manual"!=r){var s="hover"==r?"mouseenter":"focusin",a="hover"==r?"mouseleave":"focusout";this.$element.on(s+"."+this.type,this.options.selector,m.proxy(this.enter,this)),this.$element.on(a+"."+this.type,this.options.selector,m.proxy(this.leave,this))}}this.options.selector?this._options=m.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},g.prototype.getDefaults=function(){return g.DEFAULTS},g.prototype.getOptions=function(t){var e=this.$element.data();for(var n in e)e.hasOwnProperty(n)&&-1!==m.inArray(n,i)&&delete e[n];return(t=m.extend({},this.getDefaults(),e,t)).delay&&"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),t.sanitize&&(t.template=o(t.template,t.whiteList,t.sanitizeFn)),t},g.prototype.getDelegateOptions=function(){var n={},i=this.getDefaults();return this._options&&m.each(this._options,function(t,e){i[t]!=e&&(n[t]=e)}),n},g.prototype.enter=function(t){var e=t instanceof this.constructor?t:m(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),m(t.currentTarget).data("bs."+this.type,e)),t instanceof m.Event&&(e.inState["focusin"==t.type?"focus":"hover"]=!0),e.tip().hasClass("in")||"in"==e.hoverState)e.hoverState="in";else{if(clearTimeout(e.timeout),e.hoverState="in",!e.options.delay||!e.options.delay.show)return e.show();e.timeout=setTimeout(function(){"in"==e.hoverState&&e.show()},e.options.delay.show)}},g.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},g.prototype.leave=function(t){var e=t instanceof this.constructor?t:m(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),m(t.currentTarget).data("bs."+this.type,e)),t instanceof m.Event&&(e.inState["focusout"==t.type?"focus":"hover"]=!1),!e.isInStateTrue()){if(clearTimeout(e.timeout),e.hoverState="out",!e.options.delay||!e.options.delay.hide)return e.hide();e.timeout=setTimeout(function(){"out"==e.hoverState&&e.hide()},e.options.delay.hide)}},g.prototype.show=function(){var t=m.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(t);var e=m.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(t.isDefaultPrevented()||!e)return;var n=this,i=this.tip(),o=this.getUID(this.type);this.setContent(),i.attr("id",o),this.$element.attr("aria-describedby",o),this.options.animation&&i.addClass("fade");var r="function"==typeof this.options.placement?this.options.placement.call(this,i[0],this.$element[0]):this.options.placement,s=/\s?auto?\s?/i,a=s.test(r);a&&(r=r.replace(s,"")||"top"),i.detach().css({top:0,left:0,display:"block"}).addClass(r).data("bs."+this.type,this),this.options.container?i.appendTo(m(document).find(this.options.container)):i.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var l=this.getPosition(),u=i[0].offsetWidth,h=i[0].offsetHeight;if(a){var c=r,d=this.getPosition(this.$viewport);r="bottom"==r&&l.bottom+h>d.bottom?"top":"top"==r&&l.top-hd.width?"left":"left"==r&&l.left-us.top+s.height&&(o.top=s.top+s.height-l)}else{var u=e.left-r,h=e.left+r+n;us.right&&(o.left=s.left+s.width-h)}return o},g.prototype.getTitle=function(){var t=this.$element,e=this.options;return t.attr("data-original-title")||("function"==typeof e.title?e.title.call(t[0]):e.title)},g.prototype.getUID=function(t){for(;t+=~~(1e6*Math.random()),document.getElementById(t););return t},g.prototype.tip=function(){if(!this.$tip&&(this.$tip=m(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},g.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},g.prototype.enable=function(){this.enabled=!0},g.prototype.disable=function(){this.enabled=!1},g.prototype.toggleEnabled=function(){this.enabled=!this.enabled},g.prototype.toggle=function(t){var e=this;t&&((e=m(t.currentTarget).data("bs."+this.type))||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),m(t.currentTarget).data("bs."+this.type,e))),t?(e.inState.click=!e.inState.click,e.isInStateTrue()?e.enter(e):e.leave(e)):e.tip().hasClass("in")?e.leave(e):e.enter(e)},g.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null})},g.prototype.sanitizeHtml=function(t){return o(t,this.options.whiteList,this.options.sanitizeFn)};var e=m.fn.tooltip;m.fn.tooltip=function(i){return this.each(function(){var t=m(this),e=t.data("bs.tooltip"),n="object"==r(i)&&i;!e&&/destroy|hide/.test(i)||(e||t.data("bs.tooltip",e=new g(this,n)),"string"==typeof i&&e[i]())})},m.fn.tooltip.Constructor=g,m.fn.tooltip.noConflict=function(){return m.fn.tooltip=e,this}}(jQuery)},{}],13:[function(t,e,n){"use strict";var i;(i=jQuery).fn.emulateTransitionEnd=function(t){var e=!1,n=this;i(this).one("bsTransitionEnd",function(){e=!0});return setTimeout(function(){e||i(n).trigger(i.support.transition.end)},t),this},i(function(){i.support.transition=function(){var t=document.createElement("bootstrap"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var n in e)if(void 0!==t.style[n])return{end:e[n]};return!1}(),i.support.transition&&(i.event.special.bsTransitionEnd={bindType:i.support.transition.end,delegateType:i.support.transition.end,handle:function(t){if(i(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}})})},{}],14:[function(t,e,n){},{}],15:[function(t,e,n){"use strict";L.Control.ZoomHome=L.Control.Zoom.extend({options:{position:"topleft",zoomInText:"+",zoomInTitle:"Zoom in",zoomOutText:"-",zoomOutTitle:"Zoom out",zoomHomeIcon:"home",zoomHomeTitle:"Home",homeCoordinates:null,homeZoom:null},onAdd:function(t){var e="leaflet-control-zoomhome",n=L.DomUtil.create("div",e+" leaflet-bar"),i=this.options;null===i.homeCoordinates&&(i.homeCoordinates=t.getCenter()),null===i.homeZoom&&(i.homeZoom=t.getZoom()),this._zoomInButton=this._createButton(i.zoomInText,i.zoomInTitle,e+"-in",n,this._zoomIn.bind(this));var o='';return this._zoomHomeButton=this._createButton(o,i.zoomHomeTitle,e+"-home",n,this._zoomHome.bind(this)),this._zoomOutButton=this._createButton(i.zoomOutText,i.zoomOutTitle,e+"-out",n,this._zoomOut.bind(this)),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),n},_zoomHome:function(){this._map.setView(this.options.homeCoordinates,this.options.homeZoom)}}),L.Control.zoomHome=function(t){return new L.Control.ZoomHome(t)}},{}],16:[function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}n.__esModule=!0;var o=i(t("./handlebars.runtime")),r=i(t("./handlebars/compiler/ast")),s=t("./handlebars/compiler/base"),a=t("./handlebars/compiler/compiler"),l=i(t("./handlebars/compiler/javascript-compiler")),u=i(t("./handlebars/compiler/visitor")),h=i(t("./handlebars/no-conflict")),c=o.default.create;function d(){var n=c();return n.compile=function(t,e){return a.compile(t,e,n)},n.precompile=function(t,e){return a.precompile(t,e,n)},n.AST=r.default,n.Compiler=a.Compiler,n.JavaScriptCompiler=l.default,n.Parser=s.parser,n.parse=s.parse,n.parseWithoutProcessing=s.parseWithoutProcessing,n}var p=d();p.create=d,h.default(p),p.Visitor=u.default,p.default=p,n.default=p,e.exports=n.default},{"./handlebars.runtime":17,"./handlebars/compiler/ast":19,"./handlebars/compiler/base":20,"./handlebars/compiler/compiler":22,"./handlebars/compiler/javascript-compiler":24,"./handlebars/compiler/visitor":27,"./handlebars/no-conflict":44}],17:[function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}function o(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e}n.__esModule=!0;var r=o(t("./handlebars/base")),s=i(t("./handlebars/safe-string")),a=i(t("./handlebars/exception")),l=o(t("./handlebars/utils")),u=o(t("./handlebars/runtime")),h=i(t("./handlebars/no-conflict"));function c(){var e=new r.HandlebarsEnvironment;return l.extend(e,r),e.SafeString=s.default,e.Exception=a.default,e.Utils=l,e.escapeExpression=l.escapeExpression,e.VM=u,e.template=function(t){return u.template(t,e)},e}var d=c();d.create=c,h.default(d),d.default=d,n.default=d,e.exports=n.default},{"./handlebars/base":18,"./handlebars/exception":31,"./handlebars/no-conflict":44,"./handlebars/runtime":45,"./handlebars/safe-string":46,"./handlebars/utils":47}],18:[function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}n.__esModule=!0,n.HandlebarsEnvironment=c;var o=t("./utils"),r=i(t("./exception")),s=t("./helpers"),a=t("./decorators"),l=i(t("./logger")),u=t("./internal/proto-access");n.VERSION="4.7.3";n.COMPILER_REVISION=8;n.LAST_COMPATIBLE_COMPILER_REVISION=7;n.REVISION_CHANGES={1:"<= 1.0.rc.2",2:"== 1.0.0-rc.3",3:"== 1.0.0-rc.4",4:"== 1.x.x",5:"== 2.0.0-alpha.x",6:">= 2.0.0-beta.1",7:">= 4.0.0 <4.3.0",8:">= 4.3.0"};var h="[object Object]";function c(t,e,n){this.helpers=t||{},this.partials=e||{},this.decorators=n||{},s.registerDefaultHelpers(this),a.registerDefaultDecorators(this)}c.prototype={constructor:c,logger:l.default,log:l.default.log,registerHelper:function(t,e){if(o.toString.call(t)===h){if(e)throw new r.default("Arg not supported with multiple helpers");o.extend(this.helpers,t)}else this.helpers[t]=e},unregisterHelper:function(t){delete this.helpers[t]},registerPartial:function(t,e){if(o.toString.call(t)===h)o.extend(this.partials,t);else{if(void 0===e)throw new r.default('Attempting to register a partial called "'+t+'" as undefined');this.partials[t]=e}},unregisterPartial:function(t){delete this.partials[t]},registerDecorator:function(t,e){if(o.toString.call(t)===h){if(e)throw new r.default("Arg not supported with multiple decorators");o.extend(this.decorators,t)}else this.decorators[t]=e},unregisterDecorator:function(t){delete this.decorators[t]},resetLoggedPropertyAccesses:function(){u.resetLoggedProperties()}};var d=l.default.log;n.log=d,n.createFrame=o.createFrame,n.logger=l.default},{"./decorators":29,"./exception":31,"./helpers":32,"./internal/proto-access":41,"./logger":43,"./utils":47}],19:[function(t,e,n){"use strict";n.__esModule=!0;var i={helpers:{helperExpression:function(t){return"SubExpression"===t.type||("MustacheStatement"===t.type||"BlockStatement"===t.type)&&!!(t.params&&t.params.length||t.hash)},scopedId:function(t){return/^\.|this\b/.test(t.original)},simpleId:function(t){return 1===t.parts.length&&!i.helpers.scopedId(t)&&!t.depth}}};n.default=i,e.exports=n.default},{}],20:[function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}n.__esModule=!0,n.parseWithoutProcessing=u,n.parse=function(t,e){var n=u(t,e);return new r.default(e).accept(n)};var o=i(t("./parser")),r=i(t("./whitespace-control")),s=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e}(t("./helpers")),a=t("../utils");n.parser=o.default;var l={};function u(t,e){return"Program"===t.type?t:((o.default.yy=l).locInfo=function(t){return new l.SourceLocation(e&&e.srcName,t)},o.default.parse(t))}a.extend(l,s)},{"../utils":47,"./helpers":23,"./parser":25,"./whitespace-control":28}],21:[function(t,e,n){"use strict";n.__esModule=!0;var s=t("../utils"),i=void 0;try{if("function"!=typeof define||!define.amd){var o=t("source-map");i=o.SourceNode}}catch(t){}function r(t,e,n){if(s.isArray(t)){for(var i=[],o=0,r=t.length;othis.stackVars.length&&this.stackVars.push("stack"+this.stackSlot),this.topStackName()},topStackName:function(){return"stack"+this.stackSlot},flushInline:function(){var t=this.inlineStack;this.inlineStack=[];for(var e=0,n=t.length;ee[0].length)||(e=n,i=s,this.options.flex));s++);return e?((o=e[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=o.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:o?o[o.length-1].length-o[o.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+e[0].length},this.yytext+=e[0],this.match+=e[0],this.matches=e,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._input=this._input.slice(e[0].length),this.matched+=e[0],t=this.performAction.call(this,this.yy,this,r[i],this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),t||void 0):""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return void 0!==t?t:this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.pop()},_currentRules:function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},topState:function(){return this.conditionStack[this.conditionStack.length-2]},pushState:function(t){this.begin(t)},options:{},performAction:function(t,n,e){function i(t,e){return n.yytext=n.yytext.substring(t,n.yyleng-e+t)}switch(e){case 0:if("\\\\"===n.yytext.slice(-2)?(i(0,1),this.begin("mu")):"\\"===n.yytext.slice(-1)?(i(0,1),this.begin("emu")):this.begin("mu"),n.yytext)return 15;break;case 1:return 15;case 2:return this.popState(),15;case 3:return this.begin("raw"),15;case 4:return this.popState(),"raw"===this.conditionStack[this.conditionStack.length-1]?15:(i(5,9),"END_RAW_BLOCK");case 5:return 15;case 6:return this.popState(),14;case 7:return 65;case 8:return 68;case 9:return 19;case 10:return this.popState(),this.begin("raw"),23;case 11:return 55;case 12:return 60;case 13:return 29;case 14:return 47;case 15:case 16:return this.popState(),44;case 17:return 34;case 18:return 39;case 19:return 51;case 20:return 48;case 21:this.unput(n.yytext),this.popState(),this.begin("com");break;case 22:return this.popState(),14;case 23:return 48;case 24:return 73;case 25:case 26:return 72;case 27:return 87;case 28:break;case 29:return this.popState(),54;case 30:return this.popState(),33;case 31:return n.yytext=i(1,2).replace(/\\"/g,'"'),80;case 32:return n.yytext=i(1,2).replace(/\\'/g,"'"),80;case 33:return 85;case 34:case 35:return 82;case 36:return 83;case 37:return 84;case 38:return 81;case 39:return 75;case 40:return 77;case 41:return 72;case 42:return n.yytext=n.yytext.replace(/\\([\\\]])/g,"$1"),72;case 43:return"INVALID";case 44:return 5}},rules:[/^(?:[^\x00]*?(?=(\{\{)))/,/^(?:[^\x00]+)/,/^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/,/^(?:\{\{\{\{(?=[^\/]))/,/^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/,/^(?:[^\x00]+?(?=(\{\{\{\{)))/,/^(?:[\s\S]*?--(~)?\}\})/,/^(?:\()/,/^(?:\))/,/^(?:\{\{\{\{)/,/^(?:\}\}\}\})/,/^(?:\{\{(~)?>)/,/^(?:\{\{(~)?#>)/,/^(?:\{\{(~)?#\*?)/,/^(?:\{\{(~)?\/)/,/^(?:\{\{(~)?\^\s*(~)?\}\})/,/^(?:\{\{(~)?\s*else\s*(~)?\}\})/,/^(?:\{\{(~)?\^)/,/^(?:\{\{(~)?\s*else\b)/,/^(?:\{\{(~)?\{)/,/^(?:\{\{(~)?&)/,/^(?:\{\{(~)?!--)/,/^(?:\{\{(~)?![\s\S]*?\}\})/,/^(?:\{\{(~)?\*?)/,/^(?:=)/,/^(?:\.\.)/,/^(?:\.(?=([=~}\s\/.)|])))/,/^(?:[\/.])/,/^(?:\s+)/,/^(?:\}(~)?\}\})/,/^(?:(~)?\}\})/,/^(?:"(\\["]|[^"])*")/,/^(?:'(\\[']|[^'])*')/,/^(?:@)/,/^(?:true(?=([~}\s)])))/,/^(?:false(?=([~}\s)])))/,/^(?:undefined(?=([~}\s)])))/,/^(?:null(?=([~}\s)])))/,/^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/,/^(?:as\s+\|)/,/^(?:\|)/,/^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/,/^(?:\[(\\\]|[^\]])*\])/,/^(?:.)/,/^(?:$)/],conditions:{mu:{rules:[7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],inclusive:!(i={trace:function(){},yy:{},symbols_:{error:2,root:3,program:4,EOF:5,program_repetition0:6,statement:7,mustache:8,block:9,rawBlock:10,partial:11,partialBlock:12,content:13,COMMENT:14,CONTENT:15,openRawBlock:16,rawBlock_repetition0:17,END_RAW_BLOCK:18,OPEN_RAW_BLOCK:19,helperName:20,openRawBlock_repetition0:21,openRawBlock_option0:22,CLOSE_RAW_BLOCK:23,openBlock:24,block_option0:25,closeBlock:26,openInverse:27,block_option1:28,OPEN_BLOCK:29,openBlock_repetition0:30,openBlock_option0:31,openBlock_option1:32,CLOSE:33,OPEN_INVERSE:34,openInverse_repetition0:35,openInverse_option0:36,openInverse_option1:37,openInverseChain:38,OPEN_INVERSE_CHAIN:39,openInverseChain_repetition0:40,openInverseChain_option0:41,openInverseChain_option1:42,inverseAndProgram:43,INVERSE:44,inverseChain:45,inverseChain_option0:46,OPEN_ENDBLOCK:47,OPEN:48,mustache_repetition0:49,mustache_option0:50,OPEN_UNESCAPED:51,mustache_repetition1:52,mustache_option1:53,CLOSE_UNESCAPED:54,OPEN_PARTIAL:55,partialName:56,partial_repetition0:57,partial_option0:58,openPartialBlock:59,OPEN_PARTIAL_BLOCK:60,openPartialBlock_repetition0:61,openPartialBlock_option0:62,param:63,sexpr:64,OPEN_SEXPR:65,sexpr_repetition0:66,sexpr_option0:67,CLOSE_SEXPR:68,hash:69,hash_repetition_plus0:70,hashSegment:71,ID:72,EQUALS:73,blockParams:74,OPEN_BLOCK_PARAMS:75,blockParams_repetition_plus0:76,CLOSE_BLOCK_PARAMS:77,path:78,dataName:79,STRING:80,NUMBER:81,BOOLEAN:82,UNDEFINED:83,NULL:84,DATA:85,pathSegments:86,SEP:87,$accept:0,$end:1},terminals_:{2:"error",5:"EOF",14:"COMMENT",15:"CONTENT",18:"END_RAW_BLOCK",19:"OPEN_RAW_BLOCK",23:"CLOSE_RAW_BLOCK",29:"OPEN_BLOCK",33:"CLOSE",34:"OPEN_INVERSE",39:"OPEN_INVERSE_CHAIN",44:"INVERSE",47:"OPEN_ENDBLOCK",48:"OPEN",51:"OPEN_UNESCAPED",54:"CLOSE_UNESCAPED",55:"OPEN_PARTIAL",60:"OPEN_PARTIAL_BLOCK",65:"OPEN_SEXPR",68:"CLOSE_SEXPR",72:"ID",73:"EQUALS",75:"OPEN_BLOCK_PARAMS",77:"CLOSE_BLOCK_PARAMS",80:"STRING",81:"NUMBER",82:"BOOLEAN",83:"UNDEFINED",84:"NULL",85:"DATA",87:"SEP"},productions_:[0,[3,2],[4,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[13,1],[10,3],[16,5],[9,4],[9,4],[24,6],[27,6],[38,6],[43,2],[45,3],[45,1],[26,3],[8,5],[8,5],[11,5],[12,3],[59,5],[63,1],[63,1],[64,5],[69,1],[71,3],[74,3],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[56,1],[56,1],[79,2],[78,1],[86,3],[86,1],[6,0],[6,2],[17,0],[17,2],[21,0],[21,2],[22,0],[22,1],[25,0],[25,1],[28,0],[28,1],[30,0],[30,2],[31,0],[31,1],[32,0],[32,1],[35,0],[35,2],[36,0],[36,1],[37,0],[37,1],[40,0],[40,2],[41,0],[41,1],[42,0],[42,1],[46,0],[46,1],[49,0],[49,2],[50,0],[50,1],[52,0],[52,2],[53,0],[53,1],[57,0],[57,2],[58,0],[58,1],[61,0],[61,2],[62,0],[62,1],[66,0],[66,2],[67,0],[67,1],[70,1],[70,2],[76,1],[76,2]],performAction:function(t,e,n,i,o,r){var s=r.length-1;switch(o){case 1:return r[s-1];case 2:this.$=i.prepareProgram(r[s]);break;case 3:case 4:case 5:case 6:case 7:case 8:this.$=r[s];break;case 9:this.$={type:"CommentStatement",value:i.stripComment(r[s]),strip:i.stripFlags(r[s],r[s]),loc:i.locInfo(this._$)};break;case 10:this.$={type:"ContentStatement",original:r[s],value:r[s],loc:i.locInfo(this._$)};break;case 11:this.$=i.prepareRawBlock(r[s-2],r[s-1],r[s],this._$);break;case 12:this.$={path:r[s-3],params:r[s-2],hash:r[s-1]};break;case 13:this.$=i.prepareBlock(r[s-3],r[s-2],r[s-1],r[s],!1,this._$);break;case 14:this.$=i.prepareBlock(r[s-3],r[s-2],r[s-1],r[s],!0,this._$);break;case 15:this.$={open:r[s-5],path:r[s-4],params:r[s-3],hash:r[s-2],blockParams:r[s-1],strip:i.stripFlags(r[s-5],r[s])};break;case 16:case 17:this.$={path:r[s-4],params:r[s-3],hash:r[s-2],blockParams:r[s-1],strip:i.stripFlags(r[s-5],r[s])};break;case 18:this.$={strip:i.stripFlags(r[s-1],r[s-1]),program:r[s]};break;case 19:var a=i.prepareBlock(r[s-2],r[s-1],r[s],r[s],!1,this._$),l=i.prepareProgram([a],r[s-1].loc);l.chained=!0,this.$={strip:r[s-2].strip,program:l,chain:!0};break;case 20:this.$=r[s];break;case 21:this.$={path:r[s-1],strip:i.stripFlags(r[s-2],r[s])};break;case 22:case 23:this.$=i.prepareMustache(r[s-3],r[s-2],r[s-1],r[s-4],i.stripFlags(r[s-4],r[s]),this._$);break;case 24:this.$={type:"PartialStatement",name:r[s-3],params:r[s-2],hash:r[s-1],indent:"",strip:i.stripFlags(r[s-4],r[s]),loc:i.locInfo(this._$)};break;case 25:this.$=i.preparePartialBlock(r[s-2],r[s-1],r[s],this._$);break;case 26:this.$={path:r[s-3],params:r[s-2],hash:r[s-1],strip:i.stripFlags(r[s-4],r[s])};break;case 27:case 28:this.$=r[s];break;case 29:this.$={type:"SubExpression",path:r[s-3],params:r[s-2],hash:r[s-1],loc:i.locInfo(this._$)};break;case 30:this.$={type:"Hash",pairs:r[s],loc:i.locInfo(this._$)};break;case 31:this.$={type:"HashPair",key:i.id(r[s-2]),value:r[s],loc:i.locInfo(this._$)};break;case 32:this.$=i.id(r[s-1]);break;case 33:case 34:this.$=r[s];break;case 35:this.$={type:"StringLiteral",value:r[s],original:r[s],loc:i.locInfo(this._$)};break;case 36:this.$={type:"NumberLiteral",value:Number(r[s]),original:Number(r[s]),loc:i.locInfo(this._$)};break;case 37:this.$={type:"BooleanLiteral",value:"true"===r[s],original:"true"===r[s],loc:i.locInfo(this._$)};break;case 38:this.$={type:"UndefinedLiteral",original:void 0,value:void 0,loc:i.locInfo(this._$)};break;case 39:this.$={type:"NullLiteral",original:null,value:null,loc:i.locInfo(this._$)};break;case 40:case 41:this.$=r[s];break;case 42:this.$=i.preparePath(!0,r[s],this._$);break;case 43:this.$=i.preparePath(!1,r[s],this._$);break;case 44:r[s-2].push({part:i.id(r[s]),original:r[s],separator:r[s-1]}),this.$=r[s-2];break;case 45:this.$=[{part:i.id(r[s]),original:r[s]}];break;case 46:this.$=[];break;case 47:r[s-1].push(r[s]);break;case 48:this.$=[];break;case 49:r[s-1].push(r[s]);break;case 50:this.$=[];break;case 51:r[s-1].push(r[s]);break;case 58:this.$=[];break;case 59:r[s-1].push(r[s]);break;case 64:this.$=[];break;case 65:r[s-1].push(r[s]);break;case 70:this.$=[];break;case 71:r[s-1].push(r[s]);break;case 78:this.$=[];break;case 79:r[s-1].push(r[s]);break;case 82:this.$=[];break;case 83:r[s-1].push(r[s]);break;case 86:this.$=[];break;case 87:r[s-1].push(r[s]);break;case 90:this.$=[];break;case 91:r[s-1].push(r[s]);break;case 94:this.$=[];break;case 95:r[s-1].push(r[s]);break;case 98:this.$=[r[s]];break;case 99:r[s-1].push(r[s]);break;case 100:this.$=[r[s]];break;case 101:r[s-1].push(r[s])}},table:[{3:1,4:2,5:[2,46],6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{1:[3]},{5:[1,4]},{5:[2,2],7:5,8:6,9:7,10:8,11:9,12:10,13:11,14:[1,12],15:[1,20],16:17,19:[1,23],24:15,27:16,29:[1,21],34:[1,22],39:[2,2],44:[2,2],47:[2,2],48:[1,13],51:[1,14],55:[1,18],59:19,60:[1,24]},{1:[2,1]},{5:[2,47],14:[2,47],15:[2,47],19:[2,47],29:[2,47],34:[2,47],39:[2,47],44:[2,47],47:[2,47],48:[2,47],51:[2,47],55:[2,47],60:[2,47]},{5:[2,3],14:[2,3],15:[2,3],19:[2,3],29:[2,3],34:[2,3],39:[2,3],44:[2,3],47:[2,3],48:[2,3],51:[2,3],55:[2,3],60:[2,3]},{5:[2,4],14:[2,4],15:[2,4],19:[2,4],29:[2,4],34:[2,4],39:[2,4],44:[2,4],47:[2,4],48:[2,4],51:[2,4],55:[2,4],60:[2,4]},{5:[2,5],14:[2,5],15:[2,5],19:[2,5],29:[2,5],34:[2,5],39:[2,5],44:[2,5],47:[2,5],48:[2,5],51:[2,5],55:[2,5],60:[2,5]},{5:[2,6],14:[2,6],15:[2,6],19:[2,6],29:[2,6],34:[2,6],39:[2,6],44:[2,6],47:[2,6],48:[2,6],51:[2,6],55:[2,6],60:[2,6]},{5:[2,7],14:[2,7],15:[2,7],19:[2,7],29:[2,7],34:[2,7],39:[2,7],44:[2,7],47:[2,7],48:[2,7],51:[2,7],55:[2,7],60:[2,7]},{5:[2,8],14:[2,8],15:[2,8],19:[2,8],29:[2,8],34:[2,8],39:[2,8],44:[2,8],47:[2,8],48:[2,8],51:[2,8],55:[2,8],60:[2,8]},{5:[2,9],14:[2,9],15:[2,9],19:[2,9],29:[2,9],34:[2,9],39:[2,9],44:[2,9],47:[2,9],48:[2,9],51:[2,9],55:[2,9],60:[2,9]},{20:25,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:36,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:37,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],39:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{4:38,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{15:[2,48],17:39,18:[2,48]},{20:41,56:40,64:42,65:[1,43],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:44,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{5:[2,10],14:[2,10],15:[2,10],18:[2,10],19:[2,10],29:[2,10],34:[2,10],39:[2,10],44:[2,10],47:[2,10],48:[2,10],51:[2,10],55:[2,10],60:[2,10]},{20:45,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:46,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:47,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:41,56:48,64:42,65:[1,43],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[2,78],49:49,65:[2,78],72:[2,78],80:[2,78],81:[2,78],82:[2,78],83:[2,78],84:[2,78],85:[2,78]},{23:[2,33],33:[2,33],54:[2,33],65:[2,33],68:[2,33],72:[2,33],75:[2,33],80:[2,33],81:[2,33],82:[2,33],83:[2,33],84:[2,33],85:[2,33]},{23:[2,34],33:[2,34],54:[2,34],65:[2,34],68:[2,34],72:[2,34],75:[2,34],80:[2,34],81:[2,34],82:[2,34],83:[2,34],84:[2,34],85:[2,34]},{23:[2,35],33:[2,35],54:[2,35],65:[2,35],68:[2,35],72:[2,35],75:[2,35],80:[2,35],81:[2,35],82:[2,35],83:[2,35],84:[2,35],85:[2,35]},{23:[2,36],33:[2,36],54:[2,36],65:[2,36],68:[2,36],72:[2,36],75:[2,36],80:[2,36],81:[2,36],82:[2,36],83:[2,36],84:[2,36],85:[2,36]},{23:[2,37],33:[2,37],54:[2,37],65:[2,37],68:[2,37],72:[2,37],75:[2,37],80:[2,37],81:[2,37],82:[2,37],83:[2,37],84:[2,37],85:[2,37]},{23:[2,38],33:[2,38],54:[2,38],65:[2,38],68:[2,38],72:[2,38],75:[2,38],80:[2,38],81:[2,38],82:[2,38],83:[2,38],84:[2,38],85:[2,38]},{23:[2,39],33:[2,39],54:[2,39],65:[2,39],68:[2,39],72:[2,39],75:[2,39],80:[2,39],81:[2,39],82:[2,39],83:[2,39],84:[2,39],85:[2,39]},{23:[2,43],33:[2,43],54:[2,43],65:[2,43],68:[2,43],72:[2,43],75:[2,43],80:[2,43],81:[2,43],82:[2,43],83:[2,43],84:[2,43],85:[2,43],87:[1,50]},{72:[1,35],86:51},{23:[2,45],33:[2,45],54:[2,45],65:[2,45],68:[2,45],72:[2,45],75:[2,45],80:[2,45],81:[2,45],82:[2,45],83:[2,45],84:[2,45],85:[2,45],87:[2,45]},{52:52,54:[2,82],65:[2,82],72:[2,82],80:[2,82],81:[2,82],82:[2,82],83:[2,82],84:[2,82],85:[2,82]},{25:53,38:55,39:[1,57],43:56,44:[1,58],45:54,47:[2,54]},{28:59,43:60,44:[1,58],47:[2,56]},{13:62,15:[1,20],18:[1,61]},{33:[2,86],57:63,65:[2,86],72:[2,86],80:[2,86],81:[2,86],82:[2,86],83:[2,86],84:[2,86],85:[2,86]},{33:[2,40],65:[2,40],72:[2,40],80:[2,40],81:[2,40],82:[2,40],83:[2,40],84:[2,40],85:[2,40]},{33:[2,41],65:[2,41],72:[2,41],80:[2,41],81:[2,41],82:[2,41],83:[2,41],84:[2,41],85:[2,41]},{20:64,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{26:65,47:[1,66]},{30:67,33:[2,58],65:[2,58],72:[2,58],75:[2,58],80:[2,58],81:[2,58],82:[2,58],83:[2,58],84:[2,58],85:[2,58]},{33:[2,64],35:68,65:[2,64],72:[2,64],75:[2,64],80:[2,64],81:[2,64],82:[2,64],83:[2,64],84:[2,64],85:[2,64]},{21:69,23:[2,50],65:[2,50],72:[2,50],80:[2,50],81:[2,50],82:[2,50],83:[2,50],84:[2,50],85:[2,50]},{33:[2,90],61:70,65:[2,90],72:[2,90],80:[2,90],81:[2,90],82:[2,90],83:[2,90],84:[2,90],85:[2,90]},{20:74,33:[2,80],50:71,63:72,64:75,65:[1,43],69:73,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{72:[1,79]},{23:[2,42],33:[2,42],54:[2,42],65:[2,42],68:[2,42],72:[2,42],75:[2,42],80:[2,42],81:[2,42],82:[2,42],83:[2,42],84:[2,42],85:[2,42],87:[1,50]},{20:74,53:80,54:[2,84],63:81,64:75,65:[1,43],69:82,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{26:83,47:[1,66]},{47:[2,55]},{4:84,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],39:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{47:[2,20]},{20:85,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:86,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{26:87,47:[1,66]},{47:[2,57]},{5:[2,11],14:[2,11],15:[2,11],19:[2,11],29:[2,11],34:[2,11],39:[2,11],44:[2,11],47:[2,11],48:[2,11],51:[2,11],55:[2,11],60:[2,11]},{15:[2,49],18:[2,49]},{20:74,33:[2,88],58:88,63:89,64:75,65:[1,43],69:90,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{65:[2,94],66:91,68:[2,94],72:[2,94],80:[2,94],81:[2,94],82:[2,94],83:[2,94],84:[2,94],85:[2,94]},{5:[2,25],14:[2,25],15:[2,25],19:[2,25],29:[2,25],34:[2,25],39:[2,25],44:[2,25],47:[2,25],48:[2,25],51:[2,25],55:[2,25],60:[2,25]},{20:92,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:74,31:93,33:[2,60],63:94,64:75,65:[1,43],69:95,70:76,71:77,72:[1,78],75:[2,60],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:74,33:[2,66],36:96,63:97,64:75,65:[1,43],69:98,70:76,71:77,72:[1,78],75:[2,66],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:74,22:99,23:[2,52],63:100,64:75,65:[1,43],69:101,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:74,33:[2,92],62:102,63:103,64:75,65:[1,43],69:104,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[1,105]},{33:[2,79],65:[2,79],72:[2,79],80:[2,79],81:[2,79],82:[2,79],83:[2,79],84:[2,79],85:[2,79]},{33:[2,81]},{23:[2,27],33:[2,27],54:[2,27],65:[2,27],68:[2,27],72:[2,27],75:[2,27],80:[2,27],81:[2,27],82:[2,27],83:[2,27],84:[2,27],85:[2,27]},{23:[2,28],33:[2,28],54:[2,28],65:[2,28],68:[2,28],72:[2,28],75:[2,28],80:[2,28],81:[2,28],82:[2,28],83:[2,28],84:[2,28],85:[2,28]},{23:[2,30],33:[2,30],54:[2,30],68:[2,30],71:106,72:[1,107],75:[2,30]},{23:[2,98],33:[2,98],54:[2,98],68:[2,98],72:[2,98],75:[2,98]},{23:[2,45],33:[2,45],54:[2,45],65:[2,45],68:[2,45],72:[2,45],73:[1,108],75:[2,45],80:[2,45],81:[2,45],82:[2,45],83:[2,45],84:[2,45],85:[2,45],87:[2,45]},{23:[2,44],33:[2,44],54:[2,44],65:[2,44],68:[2,44],72:[2,44],75:[2,44],80:[2,44],81:[2,44],82:[2,44],83:[2,44],84:[2,44],85:[2,44],87:[2,44]},{54:[1,109]},{54:[2,83],65:[2,83],72:[2,83],80:[2,83],81:[2,83],82:[2,83],83:[2,83],84:[2,83],85:[2,83]},{54:[2,85]},{5:[2,13],14:[2,13],15:[2,13],19:[2,13],29:[2,13],34:[2,13],39:[2,13],44:[2,13],47:[2,13],48:[2,13],51:[2,13],55:[2,13],60:[2,13]},{38:55,39:[1,57],43:56,44:[1,58],45:111,46:110,47:[2,76]},{33:[2,70],40:112,65:[2,70],72:[2,70],75:[2,70],80:[2,70],81:[2,70],82:[2,70],83:[2,70],84:[2,70],85:[2,70]},{47:[2,18]},{5:[2,14],14:[2,14],15:[2,14],19:[2,14],29:[2,14],34:[2,14],39:[2,14],44:[2,14],47:[2,14],48:[2,14],51:[2,14],55:[2,14],60:[2,14]},{33:[1,113]},{33:[2,87],65:[2,87],72:[2,87],80:[2,87],81:[2,87],82:[2,87],83:[2,87],84:[2,87],85:[2,87]},{33:[2,89]},{20:74,63:115,64:75,65:[1,43],67:114,68:[2,96],69:116,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[1,117]},{32:118,33:[2,62],74:119,75:[1,120]},{33:[2,59],65:[2,59],72:[2,59],75:[2,59],80:[2,59],81:[2,59],82:[2,59],83:[2,59],84:[2,59],85:[2,59]},{33:[2,61],75:[2,61]},{33:[2,68],37:121,74:122,75:[1,120]},{33:[2,65],65:[2,65],72:[2,65],75:[2,65],80:[2,65],81:[2,65],82:[2,65],83:[2,65],84:[2,65],85:[2,65]},{33:[2,67],75:[2,67]},{23:[1,123]},{23:[2,51],65:[2,51],72:[2,51],80:[2,51],81:[2,51],82:[2,51],83:[2,51],84:[2,51],85:[2,51]},{23:[2,53]},{33:[1,124]},{33:[2,91],65:[2,91],72:[2,91],80:[2,91],81:[2,91],82:[2,91],83:[2,91],84:[2,91],85:[2,91]},{33:[2,93]},{5:[2,22],14:[2,22],15:[2,22],19:[2,22],29:[2,22],34:[2,22],39:[2,22],44:[2,22],47:[2,22],48:[2,22],51:[2,22],55:[2,22],60:[2,22]},{23:[2,99],33:[2,99],54:[2,99],68:[2,99],72:[2,99],75:[2,99]},{73:[1,108]},{20:74,63:125,64:75,65:[1,43],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{5:[2,23],14:[2,23],15:[2,23],19:[2,23],29:[2,23],34:[2,23],39:[2,23],44:[2,23],47:[2,23],48:[2,23],51:[2,23],55:[2,23],60:[2,23]},{47:[2,19]},{47:[2,77]},{20:74,33:[2,72],41:126,63:127,64:75,65:[1,43],69:128,70:76,71:77,72:[1,78],75:[2,72],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{5:[2,24],14:[2,24],15:[2,24],19:[2,24],29:[2,24],34:[2,24],39:[2,24],44:[2,24],47:[2,24],48:[2,24],51:[2,24],55:[2,24],60:[2,24]},{68:[1,129]},{65:[2,95],68:[2,95],72:[2,95],80:[2,95],81:[2,95],82:[2,95],83:[2,95],84:[2,95],85:[2,95]},{68:[2,97]},{5:[2,21],14:[2,21],15:[2,21],19:[2,21],29:[2,21],34:[2,21],39:[2,21],44:[2,21],47:[2,21],48:[2,21],51:[2,21],55:[2,21],60:[2,21]},{33:[1,130]},{33:[2,63]},{72:[1,132],76:131},{33:[1,133]},{33:[2,69]},{15:[2,12],18:[2,12]},{14:[2,26],15:[2,26],19:[2,26],29:[2,26],34:[2,26],47:[2,26],48:[2,26],51:[2,26],55:[2,26],60:[2,26]},{23:[2,31],33:[2,31],54:[2,31],68:[2,31],72:[2,31],75:[2,31]},{33:[2,74],42:134,74:135,75:[1,120]},{33:[2,71],65:[2,71],72:[2,71],75:[2,71],80:[2,71],81:[2,71],82:[2,71],83:[2,71],84:[2,71],85:[2,71]},{33:[2,73],75:[2,73]},{23:[2,29],33:[2,29],54:[2,29],65:[2,29],68:[2,29],72:[2,29],75:[2,29],80:[2,29],81:[2,29],82:[2,29],83:[2,29],84:[2,29],85:[2,29]},{14:[2,15],15:[2,15],19:[2,15],29:[2,15],34:[2,15],39:[2,15],44:[2,15],47:[2,15],48:[2,15],51:[2,15],55:[2,15],60:[2,15]},{72:[1,137],77:[1,136]},{72:[2,100],77:[2,100]},{14:[2,16],15:[2,16],19:[2,16],29:[2,16],34:[2,16],44:[2,16],47:[2,16],48:[2,16],51:[2,16],55:[2,16],60:[2,16]},{33:[1,138]},{33:[2,75]},{33:[2,32]},{72:[2,101],77:[2,101]},{14:[2,17],15:[2,17],19:[2,17],29:[2,17],34:[2,17],39:[2,17],44:[2,17],47:[2,17],48:[2,17],51:[2,17],55:[2,17],60:[2,17]}],defaultActions:{4:[2,1],54:[2,55],56:[2,20],60:[2,57],73:[2,81],82:[2,85],86:[2,18],90:[2,89],101:[2,53],104:[2,93],110:[2,19],111:[2,77],116:[2,97],119:[2,63],122:[2,69],135:[2,75],136:[2,32]},parseError:function(t){throw new Error(t)},parse:function(t){var e=this,n=[0],i=[null],o=[],r=this.table,s="",a=0,l=0,u=0;this.lexer.setInput(t),this.lexer.yy=this.yy,this.yy.lexer=this.lexer,void 0===(this.yy.parser=this).lexer.yylloc&&(this.lexer.yylloc={});var h=this.lexer.yylloc;o.push(h);var c=this.lexer.options&&this.lexer.options.ranges;"function"==typeof this.yy.parseError&&(this.parseError=this.yy.parseError);for(var d,p,f,m,g,_,v,y,b,w,x={};;){if(f=n[n.length-1],void 0===(m=this.defaultActions[f]?this.defaultActions[f]:(null==d&&(w=void 0,"number"!=typeof(w=e.lexer.lex()||1)&&(w=e.symbols_[w]||w),d=w),r[f]&&r[f][d]))||!m.length||!m[0]){var L="";if(!u){for(_ in b=[],r[f])this.terminals_[_]&&2<_&&b.push("'"+this.terminals_[_]+"'");L=this.lexer.showPosition?"Parse error on line "+(a+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+b.join(", ")+", got '"+(this.terminals_[d]||d)+"'":"Parse error on line "+(a+1)+": Unexpected "+(1==d?"end of input":"'"+(this.terminals_[d]||d)+"'"),this.parseError(L,{text:this.lexer.match,token:this.terminals_[d]||d,line:this.lexer.yylineno,loc:h,expected:b})}}if(m[0]instanceof Array&&1 "+e+" }}")},s.prototype.PartialBlockStatement=function(t){var e="PARTIAL BLOCK:"+t.name.original;return t.params[0]&&(e+=" "+this.accept(t.params[0])),t.hash&&(e+=" "+this.accept(t.hash)),e+=" "+this.pad("PROGRAM:"),this.padding++,e+=this.accept(t.program),this.padding--,this.pad("{{> "+e+" }}")},s.prototype.ContentStatement=function(t){return this.pad("CONTENT[ '"+t.value+"' ]")},s.prototype.CommentStatement=function(t){return this.pad("{{! '"+t.value+"' }}")},s.prototype.SubExpression=function(t){for(var e,n=t.params,i=[],o=0,r=n.length;o=d.LAST_COMPATIBLE_COMPILER_REVISION&&e<=d.COMPILER_REVISION)return;{if(e":">",'"':""","'":"'","`":"`","=":"="},r=/[&<>"'`=]/g,s=/[&<>"'`=]/;function a(t){return o[t]}function l(t){for(var e=1;e>10|55296,1023&i|56320)}function o(){x()}var t,p,b,r,s,f,d,m,w,l,u,x,L,a,S,g,h,_,v,C="sizzle"+ +new Date,y=n.document,k=0,i=0,T=lt(),P=lt(),M=lt(),E=lt(),A=function(t,e){return t===e&&(u=!0),0},O={}.hasOwnProperty,e=[],D=e.pop,I=e.push,N=e.push,z=e.slice,B=function(t,e){for(var n=0,i=t.length;n+~]|"+j+")"+j+"*"),V=new RegExp(j+"|>"),Y=new RegExp(Z),G=new RegExp("^"+H+"$"),K={ID:new RegExp("^#("+H+")"),CLASS:new RegExp("^\\.("+H+")"),TAG:new RegExp("^("+H+"|[*])"),ATTR:new RegExp("^"+$),PSEUDO:new RegExp("^"+Z),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+j+"*(even|odd|(([+-]|)(\\d*)n|)"+j+"*(?:([+-]|)"+j+"*(\\d+)|))"+j+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+j+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+j+"*((?:-\\d)?\\d*)"+j+"*\\)|)(?=[^-]|$)","i")},J=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,tt=/^[^{]+\{\s*\[native \w/,et=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,nt=/[+~]/,it=new RegExp("\\\\([\\da-f]{1,6}"+j+"?|("+j+")|.)","ig"),ot=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,rt=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},st=bt(function(t){return!0===t.disabled&&"fieldset"===t.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{N.apply(e=z.call(y.childNodes),y.childNodes),e[y.childNodes.length].nodeType}catch(t){N={apply:e.length?function(t,e){I.apply(t,z.call(e))}:function(t,e){for(var n=t.length,i=0;t[n++]=e[i++];);t.length=n-1}}}function at(e,t,n,i){var o,r,s,a,l,u,h,c=t&&t.ownerDocument,d=t?t.nodeType:9;if(n=n||[],"string"!=typeof e||!e||1!==d&&9!==d&&11!==d)return n;if(!i&&((t?t.ownerDocument||t:y)!==L&&x(t),t=t||L,S)){if(11!==d&&(l=et.exec(e)))if(o=l[1]){if(9===d){if(!(s=t.getElementById(o)))return n;if(s.id===o)return n.push(s),n}else if(c&&(s=c.getElementById(o))&&v(t,s)&&s.id===o)return n.push(s),n}else{if(l[2])return N.apply(n,t.getElementsByTagName(e)),n;if((o=l[3])&&p.getElementsByClassName&&t.getElementsByClassName)return N.apply(n,t.getElementsByClassName(o)),n}if(p.qsa&&!E[e+" "]&&(!g||!g.test(e))&&(1!==d||"object"!==t.nodeName.toLowerCase())){if(h=e,c=t,1===d&&V.test(e)){for((a=t.getAttribute("id"))?a=a.replace(ot,rt):t.setAttribute("id",a=C),r=(u=f(e)).length;r--;)u[r]="#"+a+" "+yt(u[r]);h=u.join(","),c=nt.test(e)&&_t(t.parentNode)||t}try{return N.apply(n,c.querySelectorAll(h)),n}catch(t){E(e,!0)}finally{a===C&&t.removeAttribute("id")}}}return m(e.replace(U,"$1"),t,n,i)}function lt(){var i=[];return function t(e,n){return i.push(e+" ")>b.cacheLength&&delete t[i.shift()],t[e+" "]=n}}function ut(t){return t[C]=!0,t}function ht(t){var e=L.createElement("fieldset");try{return!!t(e)}catch(t){return!1}finally{e.parentNode&&e.parentNode.removeChild(e),e=null}}function ct(t,e){for(var n=t.split("|"),i=n.length;i--;)b.attrHandle[n[i]]=e}function dt(t,e){var n=e&&t,i=n&&1===t.nodeType&&1===e.nodeType&&t.sourceIndex-e.sourceIndex;if(i)return i;if(n)for(;n=n.nextSibling;)if(n===e)return-1;return t?1:-1}function pt(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function ft(n){return function(t){var e=t.nodeName.toLowerCase();return("input"===e||"button"===e)&&t.type===n}}function mt(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&st(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function gt(s){return ut(function(r){return r=+r,ut(function(t,e){for(var n,i=s([],t.length,r),o=i.length;o--;)t[n=i[o]]&&(t[n]=!(e[n]=t[n]))})})}function _t(t){return t&&void 0!==t.getElementsByTagName&&t}for(t in p=at.support={},s=at.isXML=function(t){var e=t.namespaceURI,n=(t.ownerDocument||t).documentElement;return!J.test(e||n&&n.nodeName||"HTML")},x=at.setDocument=function(t){var e,n,i=t?t.ownerDocument||t:y;return i!==L&&9===i.nodeType&&i.documentElement&&(a=(L=i).documentElement,S=!s(L),y!==L&&(n=L.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",o,!1):n.attachEvent&&n.attachEvent("onunload",o)),p.attributes=ht(function(t){return t.className="i",!t.getAttribute("className")}),p.getElementsByTagName=ht(function(t){return t.appendChild(L.createComment("")),!t.getElementsByTagName("*").length}),p.getElementsByClassName=tt.test(L.getElementsByClassName),p.getById=ht(function(t){return a.appendChild(t).id=C,!L.getElementsByName||!L.getElementsByName(C).length}),p.getById?(b.filter.ID=function(t){var e=t.replace(it,c);return function(t){return t.getAttribute("id")===e}},b.find.ID=function(t,e){if(void 0!==e.getElementById&&S){var n=e.getElementById(t);return n?[n]:[]}}):(b.filter.ID=function(t){var n=t.replace(it,c);return function(t){var e=void 0!==t.getAttributeNode&&t.getAttributeNode("id");return e&&e.value===n}},b.find.ID=function(t,e){if(void 0!==e.getElementById&&S){var n,i,o,r=e.getElementById(t);if(r){if((n=r.getAttributeNode("id"))&&n.value===t)return[r];for(o=e.getElementsByName(t),i=0;r=o[i++];)if((n=r.getAttributeNode("id"))&&n.value===t)return[r]}return[]}}),b.find.TAG=p.getElementsByTagName?function(t,e){return void 0!==e.getElementsByTagName?e.getElementsByTagName(t):p.qsa?e.querySelectorAll(t):void 0}:function(t,e){var n,i=[],o=0,r=e.getElementsByTagName(t);if("*"!==t)return r;for(;n=r[o++];)1===n.nodeType&&i.push(n);return i},b.find.CLASS=p.getElementsByClassName&&function(t,e){if(void 0!==e.getElementsByClassName&&S)return e.getElementsByClassName(t)},h=[],g=[],(p.qsa=tt.test(L.querySelectorAll))&&(ht(function(t){a.appendChild(t).innerHTML="",t.querySelectorAll("[msallowcapture^='']").length&&g.push("[*^$]="+j+"*(?:''|\"\")"),t.querySelectorAll("[selected]").length||g.push("\\["+j+"*(?:value|"+R+")"),t.querySelectorAll("[id~="+C+"-]").length||g.push("~="),t.querySelectorAll(":checked").length||g.push(":checked"),t.querySelectorAll("a#"+C+"+*").length||g.push(".#.+[+~]")}),ht(function(t){t.innerHTML="";var e=L.createElement("input");e.setAttribute("type","hidden"),t.appendChild(e).setAttribute("name","D"),t.querySelectorAll("[name=d]").length&&g.push("name"+j+"*[*^$|!~]?="),2!==t.querySelectorAll(":enabled").length&&g.push(":enabled",":disabled"),a.appendChild(t).disabled=!0,2!==t.querySelectorAll(":disabled").length&&g.push(":enabled",":disabled"),t.querySelectorAll("*,:x"),g.push(",.*:")})),(p.matchesSelector=tt.test(_=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ht(function(t){p.disconnectedMatch=_.call(t,"*"),_.call(t,"[s!='']:x"),h.push("!=",Z)}),g=g.length&&new RegExp(g.join("|")),h=h.length&&new RegExp(h.join("|")),e=tt.test(a.compareDocumentPosition),v=e||tt.test(a.contains)?function(t,e){var n=9===t.nodeType?t.documentElement:t,i=e&&e.parentNode;return t===i||!(!i||1!==i.nodeType||!(n.contains?n.contains(i):t.compareDocumentPosition&&16&t.compareDocumentPosition(i)))}:function(t,e){if(e)for(;e=e.parentNode;)if(e===t)return!0;return!1},A=e?function(t,e){if(t===e)return u=!0,0;var n=!t.compareDocumentPosition-!e.compareDocumentPosition;return n||(1&(n=(t.ownerDocument||t)===(e.ownerDocument||e)?t.compareDocumentPosition(e):1)||!p.sortDetached&&e.compareDocumentPosition(t)===n?t===L||t.ownerDocument===y&&v(y,t)?-1:e===L||e.ownerDocument===y&&v(y,e)?1:l?B(l,t)-B(l,e):0:4&n?-1:1)}:function(t,e){if(t===e)return u=!0,0;var n,i=0,o=t.parentNode,r=e.parentNode,s=[t],a=[e];if(!o||!r)return t===L?-1:e===L?1:o?-1:r?1:l?B(l,t)-B(l,e):0;if(o===r)return dt(t,e);for(n=t;n=n.parentNode;)s.unshift(n);for(n=e;n=n.parentNode;)a.unshift(n);for(;s[i]===a[i];)i++;return i?dt(s[i],a[i]):s[i]===y?-1:a[i]===y?1:0}),L},at.matches=function(t,e){return at(t,null,null,e)},at.matchesSelector=function(t,e){if((t.ownerDocument||t)!==L&&x(t),p.matchesSelector&&S&&!E[e+" "]&&(!h||!h.test(e))&&(!g||!g.test(e)))try{var n=_.call(t,e);if(n||p.disconnectedMatch||t.document&&11!==t.document.nodeType)return n}catch(t){E(e,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(t){return t[1]=t[1].replace(it,c),t[3]=(t[3]||t[4]||t[5]||"").replace(it,c),"~="===t[2]&&(t[3]=" "+t[3]+" "),t.slice(0,4)},CHILD:function(t){return t[1]=t[1].toLowerCase(),"nth"===t[1].slice(0,3)?(t[3]||at.error(t[0]),t[4]=+(t[4]?t[5]+(t[6]||1):2*("even"===t[3]||"odd"===t[3])),t[5]=+(t[7]+t[8]||"odd"===t[3])):t[3]&&at.error(t[0]),t},PSEUDO:function(t){var e,n=!t[6]&&t[2];return K.CHILD.test(t[0])?null:(t[3]?t[2]=t[4]||t[5]||"":n&&Y.test(n)&&(e=f(n,!0))&&(e=n.indexOf(")",n.length-e)-n.length)&&(t[0]=t[0].slice(0,e),t[2]=n.slice(0,e)),t.slice(0,3))}},filter:{TAG:function(t){var e=t.replace(it,c).toLowerCase();return"*"===t?function(){return!0}:function(t){return t.nodeName&&t.nodeName.toLowerCase()===e}},CLASS:function(t){var e=T[t+" "];return e||(e=new RegExp("(^|"+j+")"+t+"("+j+"|$)"))&&T(t,function(t){return e.test("string"==typeof t.className&&t.className||void 0!==t.getAttribute&&t.getAttribute("class")||"")})},ATTR:function(n,i,o){return function(t){var e=at.attr(t,n);return null==e?"!="===i:!i||(e+="","="===i?e===o:"!="===i?e!==o:"^="===i?o&&0===e.indexOf(o):"*="===i?o&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function M(t,n,i){return y(n)?C.grep(t,function(t,e){return!!n.call(t,e,t)!==i}):n.nodeType?C.grep(t,function(t){return t===n!==i}):"string"!=typeof n?C.grep(t,function(t){return-1)[^>]*|#([\w-]+))$/;(C.fn.init=function(t,e,n){var i,o;if(!t)return this;if(n=n||E,"string"!=typeof t)return t.nodeType?(this[0]=t,this.length=1,this):y(t)?void 0!==n.ready?n.ready(t):t(C):C.makeArray(t,this);if(!(i="<"===t[0]&&">"===t[t.length-1]&&3<=t.length?[null,t,null]:A.exec(t))||!i[1]&&e)return!e||e.jquery?(e||n).find(t):this.constructor(e).find(t);if(i[1]){if(e=e instanceof C?e[0]:e,C.merge(this,C.parseHTML(i[1],e&&e.nodeType?e.ownerDocument||e:S,!0)),P.test(i[1])&&C.isPlainObject(e))for(i in e)y(this[i])?this[i](e[i]):this.attr(i,e[i]);return this}return(o=S.getElementById(i[2]))&&(this[0]=o,this.length=1),this}).prototype=C.fn,E=C(S);var O=/^(?:parents|prev(?:Until|All))/,D={children:!0,contents:!0,next:!0,prev:!0};function I(t,e){for(;(t=t[e])&&1!==t.nodeType;);return t}C.fn.extend({has:function(t){var e=C(t,this),n=e.length;return this.filter(function(){for(var t=0;t\x20\t\r\n\f]*)/i,pt=/^$|^module$|\/(?:java|ecma)script/i,ft={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function mt(t,e){var n;return n=void 0!==t.getElementsByTagName?t.getElementsByTagName(e||"*"):void 0!==t.querySelectorAll?t.querySelectorAll(e||"*"):[],void 0===e||e&&T(t,e)?C.merge([t],n):n}function gt(t,e){for(var n=0,i=t.length;nx",v.noCloneChecked=!!_t.cloneNode(!0).lastChild.defaultValue;var wt=/^key/,xt=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Lt=/^([^.]*)(?:\.(.+)|)/;function St(){return!0}function Ct(){return!1}function kt(t,e){return t===function(){try{return S.activeElement}catch(t){}}()==("focus"===e)}function Tt(t,e,n,i,o,r){var s,a;if("object"===ln(e)){for(a in"string"!=typeof n&&(i=i||n,n=void 0),e)Tt(t,a,n,i,e[a],r);return t}if(null==i&&null==o?(o=n,i=n=void 0):null==o&&("string"==typeof n?(o=i,i=void 0):(o=i,i=n,n=void 0)),!1===o)o=Ct;else if(!o)return t;return 1===r&&(s=o,(o=function(t){return C().off(t),s.apply(this,arguments)}).guid=s.guid||(s.guid=C.guid++)),t.each(function(){C.event.add(this,e,o,i,n)})}function Pt(t,o,r){r?(G.set(t,o,!1),C.event.add(t,o,{namespace:!1,handler:function(t){var e,n,i=G.get(this,o);if(1&t.isTrigger&&this[o]){if(i.length)(C.event.special[o]||{}).delegateType&&t.stopPropagation();else if(i=a.call(arguments),G.set(this,o,i),e=r(this,o),this[o](),i!==(n=G.get(this,o))||e?G.set(this,o,!1):n={},i!==n)return t.stopImmediatePropagation(),t.preventDefault(),n.value}else i.length&&(G.set(this,o,{value:C.event.trigger(C.extend(i[0],C.Event.prototype),i.slice(1),this)}),t.stopImmediatePropagation())}})):void 0===G.get(t,o)&&C.event.add(t,o,St)}C.event={global:{},add:function(e,t,n,i,o){var r,s,a,l,u,h,c,d,p,f,m,g=G.get(e);if(g)for(n.handler&&(n=(r=n).handler,o=r.selector),o&&C.find.matchesSelector(it,o),n.guid||(n.guid=C.guid++),(l=g.events)||(l=g.events={}),(s=g.handle)||(s=g.handle=function(t){return void 0!==C&&C.event.triggered!==t.type?C.event.dispatch.apply(e,arguments):void 0}),u=(t=(t||"").match(N)||[""]).length;u--;)p=m=(a=Lt.exec(t[u])||[])[1],f=(a[2]||"").split(".").sort(),p&&(c=C.event.special[p]||{},p=(o?c.delegateType:c.bindType)||p,c=C.event.special[p]||{},h=C.extend({type:p,origType:m,data:i,handler:n,guid:n.guid,selector:o,needsContext:o&&C.expr.match.needsContext.test(o),namespace:f.join(".")},r),(d=l[p])||((d=l[p]=[]).delegateCount=0,c.setup&&!1!==c.setup.call(e,i,f,s)||e.addEventListener&&e.addEventListener(p,s)),c.add&&(c.add.call(e,h),h.handler.guid||(h.handler.guid=n.guid)),o?d.splice(d.delegateCount++,0,h):d.push(h),C.event.global[p]=!0)},remove:function(t,e,n,i,o){var r,s,a,l,u,h,c,d,p,f,m,g=G.hasData(t)&&G.get(t);if(g&&(l=g.events)){for(u=(e=(e||"").match(N)||[""]).length;u--;)if(p=m=(a=Lt.exec(e[u])||[])[1],f=(a[2]||"").split(".").sort(),p){for(c=C.event.special[p]||{},d=l[p=(i?c.delegateType:c.bindType)||p]||[],a=a[2]&&new RegExp("(^|\\.)"+f.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=r=d.length;r--;)h=d[r],!o&&m!==h.origType||n&&n.guid!==h.guid||a&&!a.test(h.namespace)||i&&i!==h.selector&&("**"!==i||!h.selector)||(d.splice(r,1),h.selector&&d.delegateCount--,c.remove&&c.remove.call(t,h));s&&!d.length&&(c.teardown&&!1!==c.teardown.call(t,f,g.handle)||C.removeEvent(t,p,g.handle),delete l[p])}else for(p in l)C.event.remove(t,p+e[u],n,i,!0);C.isEmptyObject(l)&&G.remove(t,"handle events")}},dispatch:function(t){var e,n,i,o,r,s,a=C.event.fix(t),l=new Array(arguments.length),u=(G.get(this,"events")||{})[a.type]||[],h=C.event.special[a.type]||{};for(l[0]=a,e=1;e\x20\t\r\n\f]*)[^>]*)\/>/gi,Et=/\s*$/g;function Dt(t,e){return T(t,"table")&&T(11!==e.nodeType?e:e.firstChild,"tr")&&C(t).children("tbody")[0]||t}function It(t){return t.type=(null!==t.getAttribute("type"))+"/"+t.type,t}function Nt(t){return"true/"===(t.type||"").slice(0,5)?t.type=t.type.slice(5):t.removeAttribute("type"),t}function zt(t,e){var n,i,o,r,s,a,l,u;if(1===e.nodeType){if(G.hasData(t)&&(r=G.access(t),s=G.set(e,r),u=r.events))for(o in delete s.handle,s.events={},u)for(n=0,i=u[o].length;n")},clone:function(t,e,n){var i,o,r,s,a,l,u,h=t.cloneNode(!0),c=ot(t);if(!(v.noCloneChecked||1!==t.nodeType&&11!==t.nodeType||C.isXMLDoc(t)))for(s=mt(h),i=0,o=(r=mt(t)).length;i").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",o=function(t){i.remove(),o=null,t&&e("error"===t.type?404:200,t.type)}),S.head.appendChild(i[0])},abort:function(){o&&o()}}});var en,nn=[],on=/(=)\?(?=&|$)|\?\?/;C.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var t=nn.pop()||C.expando+"_"+De++;return this[t]=!0,t}}),C.ajaxPrefilter("json jsonp",function(t,e,n){var i,o,r,s=!1!==t.jsonp&&(on.test(t.url)?"url":"string"==typeof t.data&&0===(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&on.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return i=t.jsonpCallback=y(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(on,"$1"+i):!1!==t.jsonp&&(t.url+=(Ie.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return r||C.error(i+" was not called"),r[0]},t.dataTypes[0]="json",o=L[i],L[i]=function(){r=arguments},n.always(function(){void 0===o?C(L).removeProp(i):L[i]=o,t[i]&&(t.jsonpCallback=e.jsonpCallback,nn.push(i)),r&&y(o)&&o(r[0]),r=o=void 0}),"script"}),v.createHTMLDocument=((en=S.implementation.createHTMLDocument("").body).innerHTML="
",2===en.childNodes.length),C.parseHTML=function(t,e,n){return"string"!=typeof t?[]:("boolean"==typeof e&&(n=e,e=!1),e||(v.createHTMLDocument?((i=(e=S.implementation.createHTMLDocument("")).createElement("base")).href=S.location.href,e.head.appendChild(i)):e=S),r=!n&&[],(o=P.exec(t))?[e.createElement(o[1])]:(o=bt([t],e,r),r&&r.length&&C(r).remove(),C.merge([],o.childNodes)));var i,o,r},C.fn.load=function(t,e,n){var i,o,r,s=this,a=t.indexOf(" ");return-1").append(C.parseHTML(t)).find(i):t)}).always(n&&function(t,e){s.each(function(){n.apply(this,r||[t.responseText,e,t])})}),this},C.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(t,e){C.fn[e]=function(t){return this.on(e,t)}}),C.expr.pseudos.animated=function(e){return C.grep(C.timers,function(t){return e===t.elem}).length},C.offset={setOffset:function(t,e,n){var i,o,r,s,a,l,u=C.css(t,"position"),h=C(t),c={};"static"===u&&(t.style.position="relative"),a=h.offset(),r=C.css(t,"top"),l=C.css(t,"left"),o=("absolute"===u||"fixed"===u)&&-1<(r+l).indexOf("auto")?(s=(i=h.position()).top,i.left):(s=parseFloat(r)||0,parseFloat(l)||0),y(e)&&(e=e.call(t,n,C.extend({},a))),null!=e.top&&(c.top=e.top-a.top+s),null!=e.left&&(c.left=e.left-a.left+o),"using"in e?e.using.call(t,c):h.css(c)}},C.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){C.offset.setOffset(this,e,t)});var t,n,i=this[0];return i?i.getClientRects().length?(t=i.getBoundingClientRect(),n=i.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var t,e,n,i=this[0],o={top:0,left:0};if("fixed"===C.css(i,"position"))e=i.getBoundingClientRect();else{for(e=this.offset(),n=i.ownerDocument,t=i.offsetParent||n.documentElement;t&&(t===n.body||t===n.documentElement)&&"static"===C.css(t,"position");)t=t.parentNode;t&&t!==i&&1===t.nodeType&&((o=C(t).offset()).top+=C.css(t,"borderTopWidth",!0),o.left+=C.css(t,"borderLeftWidth",!0))}return{top:e.top-o.top-C.css(i,"marginTop",!0),left:e.left-o.left-C.css(i,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var t=this.offsetParent;t&&"static"===C.css(t,"position");)t=t.offsetParent;return t||it})}}),C.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,o){var r="pageYOffset"===o;C.fn[e]=function(t){return Z(this,function(t,e,n){var i;if(m(t)?i=t:9===t.nodeType&&(i=t.defaultView),void 0===n)return i?i[o]:t[e];i?i.scrollTo(r?i.pageXOffset:n,r?n:i.pageYOffset):t[e]=n},e,t,arguments.length)}}),C.each(["top","left"],function(t,n){C.cssHooks[n]=Qt(v.pixelPosition,function(t,e){if(e)return e=Jt(t,n),qt.test(e)?C(t).position()[n]+"px":e})}),C.each({Height:"height",Width:"width"},function(s,a){C.each({padding:"inner"+s,content:a,"":"outer"+s},function(i,r){C.fn[r]=function(t,e){var n=arguments.length&&(i||"boolean"!=typeof t),o=i||(!0===t||!0===e?"margin":"border");return Z(this,function(t,e,n){var i;return m(t)?0===r.indexOf("outer")?t["inner"+s]:t.document.documentElement["client"+s]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+s],i["scroll"+s],t.body["offset"+s],i["offset"+s],i["client"+s])):void 0===n?C.css(t,e,o):C.style(t,e,n,o)},a,n?t:void 0,n)}})}),C.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(t,n){C.fn[n]=function(t,e){return 0=n;)e=e.__parent;return this._currentShownBounds.contains(e.getLatLng())&&(this.options.animateAddingMarkers?this._animationAddLayer(t,e):this._animationAddLayerNonAnimated(t,e)),this},removeLayer:function(t){return t instanceof L.LayerGroup?this.removeLayers([t]):(t.getLatLng?this._map?t.__parent&&(this._unspiderfy&&(this._unspiderfy(),this._unspiderfyLayer(t)),this._removeLayer(t,!0),this.fire("layerremove",{layer:t}),this._topClusterLevel._recalculateBounds(),this._refreshClustersIcons(),t.off(this._childMarkerEventHandlers,this),this._featureGroup.hasLayer(t)&&(this._featureGroup.removeLayer(t),t.clusterShow&&t.clusterShow())):(!this._arraySplice(this._needsClustering,t)&&this.hasLayer(t)&&this._needsRemoving.push({layer:t,latlng:t._latlng}),this.fire("layerremove",{layer:t})):(this._nonPointGroup.removeLayer(t),this.fire("layerremove",{layer:t})),this)},addLayers:function(o,r){if(!L.Util.isArray(o))return this.addLayer(o);var s,a=this._featureGroup,l=this._nonPointGroup,u=this.options.chunkedLoading,h=this.options.chunkInterval,c=this.options.chunkProgress,d=o.length,p=0,f=!0;if(this._map){var m=(new Date).getTime(),g=L.bind(function(){for(var t=(new Date).getTime();p"+e+"",className:"marker-cluster"+n,iconSize:new L.Point(40,40)})},_bindEvents:function(){var t=this._map,e=this.options.spiderfyOnMaxZoom,n=this.options.showCoverageOnHover,i=this.options.zoomToBoundsOnClick;(e||i)&&this.on("clusterclick",this._zoomOrSpiderfy,this),n&&(this.on("clustermouseover",this._showCoverage,this),this.on("clustermouseout",this._hideCoverage,this),t.on("zoomend",this._hideCoverage,this))},_zoomOrSpiderfy:function(t){for(var e=t.layer,n=e;1===n._childClusters.length;)n=n._childClusters[0];n._zoom===this._maxZoom&&n._childCount===e._childCount&&this.options.spiderfyOnMaxZoom?e.spiderfy():this.options.zoomToBoundsOnClick&&e.zoomToBounds(),t.originalEvent&&13===t.originalEvent.keyCode&&this._map._container.focus()},_showCoverage:function(t){var e=this._map;this._inZoomAnimation||(this._shownPolygon&&e.removeLayer(this._shownPolygon),2l._zoom;i--)h=new this._markerCluster(this,i,h),o[i].addObject(h,this._map.project(a.getLatLng(),i));return l._addChild(h),void this._removeFromGridUnclustered(a,e)}r[e].addObject(t,n)}this._topClusterLevel._addChild(t),t.__parent=this._topClusterLevel},_refreshClustersIcons:function(){this._featureGroup.eachLayer(function(t){t instanceof L.MarkerCluster&&t._iconNeedsUpdate&&t._updateIcon()})},_enqueue:function(t){this._queue.push(t),this._queueTimeout||(this._queueTimeout=setTimeout(L.bind(this._processQueue,this),300))},_processQueue:function(){for(var t=0;tt?(this._animationStart(),this._animationZoomOut(this._zoom,t)):this._moveEnd()},_getExpandedVisibleBounds:function(){return this.options.removeOutsideVisibleBounds?L.Browser.mobile?this._checkBoundsMaxLat(this._map.getBounds()):this._checkBoundsMaxLat(this._map.getBounds().pad(1)):this._mapBoundsInfinite},_checkBoundsMaxLat:function(t){var e=this._maxLat;return void 0!==e&&(t.getNorth()>=e&&(t._northEast.lat=1/0),t.getSouth()<=-e&&(t._southWest.lat=-1/0)),t},_animationAddLayerNonAnimated:function(t,e){if(e===t)this._featureGroup.addLayer(t);else if(2===e._childCount){e._addToMap();var n=e.getAllChildMarkers();this._featureGroup.removeLayer(n[0]),this._featureGroup.removeLayer(n[1])}else e._updateIcon()},_extractNonGroupLayers:function(t,e){var n,i=t.getLayers(),o=0;for(e=e||[];on)&&(n=(s=d).lat),(!1===i||d.lato)&&(o=(l=d).lng),(!1===r||d.lng=this._circleSpiralSwitchover?this._generatePointsSpiral(e.length,n):(n.y+=10,this._generatePointsCircle(e.length,n)),this._animationSpiderfy(e,t)}},unspiderfy:function(t){this._group._inZoomAnimation||(this._animationUnspiderfy(t),this._group._spiderfied=null)},_generatePointsCircle:function(t,e){var n,i,o=this._group.options.spiderfyDistanceMultiplier*this._circleFootSeparation*(2+t)/this._2PI,r=this._2PI/t,s=[];for(o=Math.max(o,35),s.length=t,n=0;n=this.min.x&&n.x<=this.max.x&&e.y>=this.min.y&&n.y<=this.max.y},intersects:function(t){t=B(t);var e=this.min,n=this.max,i=t.min,o=t.max,r=o.x>=e.x&&i.x<=n.x,s=o.y>=e.y&&i.y<=n.y;return r&&s},overlaps:function(t){t=B(t);var e=this.min,n=this.max,i=t.min,o=t.max,r=o.x>e.x&&i.xe.y&&i.y=i.lat&&n.lat<=o.lat&&e.lng>=i.lng&&n.lng<=o.lng},intersects:function(t){t=j(t);var e=this._southWest,n=this._northEast,i=t.getSouthWest(),o=t.getNorthEast(),r=o.lat>=e.lat&&i.lat<=n.lat,s=o.lng>=e.lng&&i.lng<=n.lng;return r&&s},overlaps:function(t){t=j(t);var e=this._southWest,n=this._northEast,i=t.getSouthWest(),o=t.getNorthEast(),r=o.lat>e.lat&&i.late.lng&&i.lng';var e=t.firstChild;return e.style.behavior="url(#default#VML)",e&&"object"===Pi(e.adj)}catch(t){return!1}}();function Ot(t){return 0<=navigator.userAgent.toLowerCase().indexOf(t)}var Dt=(Object.freeze||Object)({ie:tt,ielt9:et,edge:nt,webkit:it,android:ot,android23:rt,androidStock:at,opera:lt,chrome:ut,gecko:ht,safari:ct,phantom:dt,opera12:pt,win:ft,ie3d:mt,webkit3d:gt,gecko3d:_t,any3d:vt,mobile:yt,mobileWebkit:bt,mobileWebkit3d:wt,msPointer:xt,pointer:Lt,touch:St,mobileOpera:Ct,mobileGecko:kt,retina:Tt,passiveEvents:Pt,canvas:Mt,svg:Et,vml:At}),It=xt?"MSPointerDown":"pointerdown",Nt=xt?"MSPointerMove":"pointermove",zt=xt?"MSPointerUp":"pointerup",Bt=xt?"MSPointerCancel":"pointercancel",Rt=["INPUT","SELECT","OPTION"],jt={},Ht=!1,$t=0;function Zt(t,e,n,i){function o(t){qt(t,s)}var r,s,a,l,u,h,c,d;function p(t){(t.pointerType!==t.MSPOINTER_TYPE_MOUSE&&"mouse"!==t.pointerType||0!==t.buttons)&&qt(t,l)}return"touchstart"===e?(u=t,h=n,c=i,d=f(function(t){if("mouse"!==t.pointerType&&t.MSPOINTER_TYPE_MOUSE&&t.pointerType!==t.MSPOINTER_TYPE_MOUSE){if(!(Rt.indexOf(t.target.tagName)<0))return;je(t)}qt(t,h)}),u["_leaflet_touchstart"+c]=d,u.addEventListener(It,d,!1),Ht||(document.documentElement.addEventListener(It,Ft,!0),document.documentElement.addEventListener(Nt,Ut,!0),document.documentElement.addEventListener(zt,Wt,!0),document.documentElement.addEventListener(Bt,Wt,!0),Ht=!0)):"touchmove"===e?(l=n,(a=t)["_leaflet_touchmove"+i]=p,a.addEventListener(Nt,p,!1)):"touchend"===e&&(s=n,(r=t)["_leaflet_touchend"+i]=o,r.addEventListener(zt,o,!1),r.addEventListener(Bt,o,!1)),this}function Ft(t){jt[t.pointerId]=t,$t++}function Ut(t){jt[t.pointerId]&&(jt[t.pointerId]=t)}function Wt(t){delete jt[t.pointerId],$t--}function qt(t,e){for(var n in t.touches=[],jt)t.touches.push(jt[n]);t.changedTouches=[t],e(t)}var Vt=xt?"MSPointerDown":Lt?"pointerdown":"touchstart",Yt=xt?"MSPointerUp":Lt?"pointerup":"touchend",Gt="_leaflet_";function Kt(t,o,e){var r,s,a=!1;function n(t){var e;if(Lt){if(!nt||"mouse"===t.pointerType)return;e=$t}else e=t.touches.length;if(!(1this.options.maxZoom)?this.setZoom(t):this},panInsideBounds:function(t,e){this._enforcingBounds=!0;var n=this.getCenter(),i=this._limitCenter(n,this._zoom,j(t));return n.equals(i)||this.panTo(i,e),this._enforcingBounds=!1,this},panInside:function(t,e){var n=N((e=e||{}).paddingTopLeft||e.padding||[0,0]),i=N(e.paddingBottomRight||e.padding||[0,0]),o=this.getCenter(),r=this.project(o),s=this.project(t),a=this.getPixelBounds(),l=a.getSize().divideBy(2),u=B([a.min.add(n),a.max.subtract(i)]);if(!u.contains(s)){this._enforcingBounds=!0;var h=r.subtract(s),c=N(s.x+h.x,s.y+h.y);(s.xu.max.x)&&(c.x=r.x-h.x,0u.max.y)&&(c.y=r.y-h.y,0=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(t,e){for(var n,i=[],o="mouseout"===e||"mouseover"===e,r=t.target||t.srcElement,s=!1;r;){if((n=this._targets[u(r)])&&("click"===e||"preclick"===e)&&!t._simulated&&this._draggableMoved(n)){s=!0;break}if(n&&n.listens(e,!0)){if(o&&!Ye(r,t))break;if(i.push(n),o)break}if(r===this._container)break;r=r.parentNode}return i.length||s||o||!Ye(r,t)||(i=[this]),i},_handleDOMEvent:function(t){if(this._loaded&&!Ve(t)){var e=t.type;"mousedown"!==e&&"keypress"!==e&&"keyup"!==e&&"keydown"!==e||ke(t.target||t.srcElement),this._fireDOMEvent(t,e)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(t,e,n){if("click"===t.type){var i=l({},t);i.type="preclick",this._fireDOMEvent(i,i.type,n)}if(!t._stopped&&(n=(n||[]).concat(this._findEventTargets(t,e))).length){var o=n[0];"contextmenu"===e&&o.listens(e,!0)&&je(t);var r={originalEvent:t};if("keypress"!==t.type&&"keydown"!==t.type&&"keyup"!==t.type){var s=o.getLatLng&&(!o._radius||o._radius<=10);r.containerPoint=s?this.latLngToContainerPoint(o.getLatLng()):this.mouseEventToContainerPoint(t),r.layerPoint=this.containerPointToLayerPoint(r.containerPoint),r.latlng=s?o.getLatLng():this.layerPointToLatLng(r.layerPoint)}for(var a=0;athis.options.zoomAnimationThreshold)return!1;var i=this.getZoomScale(e),o=this._getCenterOffset(t)._divideBy(1-1/i);return!(!0!==n.animate&&!this.getSize().contains(o))&&(T(function(){this._moveStart(!0,!1)._animateZoom(t,e,!0)},this),!0)},_animateZoom:function(t,e,n,i){this._mapPane&&(n&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=e,fe(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:t,zoom:e,noUpdate:i}),setTimeout(f(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&me(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom),T(function(){this._moveEnd(!0)},this))}});function Qe(t){return new Xe(t)}var Xe=E.extend({options:{position:"topright"},initialize:function(t){p(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var e=this._map;return e&&e.removeControl(this),this.options.position=t,e&&e.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var e=this._container=this.onAdd(t),n=this.getPosition(),i=t._controlCorners[n];return fe(e,"leaflet-control"),-1!==n.indexOf("bottom")?i.insertBefore(e,i.firstChild):i.appendChild(e),this._map.on("unload",this.remove,this),this},remove:function(){return this._map&&(ue(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null),this},_refocusOnMap:function(t){this._map&&t&&0",i=document.createElement("div");return i.innerHTML=n,i.firstChild},_addItem:function(t){var e,n=document.createElement("label"),i=this._map.hasLayer(t.layer);t.overlay?((e=document.createElement("input")).type="checkbox",e.className="leaflet-control-layers-selector",e.defaultChecked=i):e=this._createRadioElement("leaflet-base-layers_"+u(this),i),this._layerControlInputs.push(e),e.layerId=u(t.layer),Ae(e,"click",this._onInputClick,this);var o=document.createElement("span");o.innerHTML=" "+t.name;var r=document.createElement("div");return n.appendChild(r),r.appendChild(e),r.appendChild(o),(t.overlay?this._overlaysList:this._baseLayersList).appendChild(n),this._checkDisabledLayers(),n},_onInputClick:function(){var t,e,n=this._layerControlInputs,i=[],o=[];this._handlingClick=!0;for(var r=n.length-1;0<=r;r--)t=n[r],e=this._getLayer(t.layerId).layer,t.checked?i.push(e):t.checked||o.push(e);for(r=0;re.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expand:function(){return this.expand()},_collapse:function(){return this.collapse()}}),en=Xe.extend({options:{position:"topleft",zoomInText:"+",zoomInTitle:"Zoom in",zoomOutText:"−",zoomOutTitle:"Zoom out"},onAdd:function(t){var e="leaflet-control-zoom",n=le("div",e+" leaflet-bar"),i=this.options;return this._zoomInButton=this._createButton(i.zoomInText,i.zoomInTitle,e+"-in",n,this._zoomIn),this._zoomOutButton=this._createButton(i.zoomOutText,i.zoomOutTitle,e+"-out",n,this._zoomOut),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),n},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(t){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(t.shiftKey?3:1))},_createButton:function(t,e,n,i,o){var r=le("a",n,i);return r.innerHTML=t,r.href="#",r.title=e,r.setAttribute("role","button"),r.setAttribute("aria-label",e),Re(r),Ae(r,"click",He),Ae(r,"click",o,this),Ae(r,"click",this._refocusOnMap,this),r},_updateDisabled:function(){var t=this._map,e="leaflet-disabled";me(this._zoomInButton,e),me(this._zoomOutButton,e),!this._disabled&&t._zoom!==t.getMinZoom()||fe(this._zoomOutButton,e),!this._disabled&&t._zoom!==t.getMaxZoom()||fe(this._zoomInButton,e)}});Je.mergeOptions({zoomControl:!0}),Je.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new en,this.addControl(this.zoomControl))});var nn=Xe.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var e="leaflet-control-scale",n=le("div",e),i=this.options;return this._addScales(i,e+"-line",n),t.on(i.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),n},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,e,n){t.metric&&(this._mScale=le("div",e,n)),t.imperial&&(this._iScale=le("div",e,n))},_update:function(){var t=this._map,e=t.getSize().y/2,n=t.distance(t.containerPointToLatLng([0,e]),t.containerPointToLatLng([this.options.maxWidth,e]));this._updateScales(n)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var e=this._getRoundNum(t),n=e<1e3?e+" m":e/1e3+" km";this._updateScale(this._mScale,n,e/t)},_updateImperial:function(t){var e,n,i,o=3.2808399*t;5280Leaflet'},initialize:function(t){p(this,t),this._attributions={}},onAdd:function(t){for(var e in(t.attributionControl=this)._container=le("div","leaflet-control-attribution"),Re(this._container),t._layers)t._layers[e].getAttribution&&this.addAttribution(t._layers[e].getAttribution());return this._update(),this._container},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t&&(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update()),this},removeAttribution:function(t){return t&&this._attributions[t]&&(this._attributions[t]--,this._update()),this},_update:function(){if(this._map){var t=[];for(var e in this._attributions)this._attributions[e]&&t.push(e);var n=[];this.options.prefix&&n.push(this.options.prefix),t.length&&n.push(t.join(", ")),this._container.innerHTML=n.join(" | ")}}});Je.mergeOptions({attributionControl:!0}),Je.addInitHook(function(){this.options.attributionControl&&(new on).addTo(this)});Xe.Layers=tn,Xe.Zoom=en,Xe.Scale=nn,Xe.Attribution=on,Qe.layers=function(t,e,n){return new tn(t,e,n)},Qe.zoom=function(t){return new en(t)},Qe.scale=function(t){return new nn(t)},Qe.attribution=function(t){return new on(t)};var rn=E.extend({initialize:function(t){this._map=t},enable:function(){return this._enabled||(this._enabled=!0,this.addHooks()),this},disable:function(){return this._enabled&&(this._enabled=!1,this.removeHooks()),this},enabled:function(){return!!this._enabled}});rn.addTo=function(t,e){return t.addHandler(e,this),this};var sn,an={Events:A},ln=St?"touchstart mousedown":"mousedown",un={mousedown:"mouseup",touchstart:"touchend",pointerdown:"touchend",MSPointerDown:"touchend"},hn={mousedown:"mousemove",touchstart:"touchmove",pointerdown:"touchmove",MSPointerDown:"touchmove"},cn=O.extend({options:{clickTolerance:3},initialize:function(t,e,n,i){p(this,i),this._element=t,this._dragStartTarget=e||t,this._preventOutline=n},enable:function(){this._enabled||(Ae(this._dragStartTarget,ln,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(cn._dragging===this&&this.finishDrag(),De(this._dragStartTarget,ln,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){if(!t._simulated&&this._enabled&&(this._moved=!1,!pe(this._element,"leaflet-zoom-anim")&&!(cn._dragging||t.shiftKey||1!==t.which&&1!==t.button&&!t.touches||((cn._dragging=this)._preventOutline&&ke(this._element),Se(),Qt(),this._moving)))){this.fire("down");var e=t.touches?t.touches[0]:t,n=Pe(this._element);this._startPoint=new D(e.clientX,e.clientY),this._parentScale=Me(n),Ae(document,hn[t.type],this._onMove,this),Ae(document,un[t.type],this._onUp,this)}},_onMove:function(t){if(!t._simulated&&this._enabled)if(t.touches&&1e.max.x&&(n|=2),t.ye.max.y&&(n|=8),n}function _n(t,e,n,i){var o,r=e.x,s=e.y,a=n.x-r,l=n.y-s,u=a*a+l*l;return 0this._layersMaxZoom&&this.setZoom(this._layersMaxZoom),void 0===this.options.minZoom&&this._layersMinZoom&&this.getZoom()t.y!=i.y>t.y&&t.x<(i.x-n.x)*(t.y-n.y)/(i.y-n.y)+n.x&&(u=!u);return u||Hn.prototype._containsPoint.call(this,t,!0)}});var Zn=On.extend({initialize:function(t,e){p(this,e),this._layers={},t&&this.addData(t)},addData:function(t){var e,n,i,o=v(t)?t:t.features;if(o){for(e=0,n=o.length;eu.x&&(h=r.x+i-u.x+l.x),r.x-h-a.x<0&&(h=r.x-a.x),r.y+n+l.y>u.y&&(c=r.y+n-u.y+l.y),r.y-c-a.y<0&&(c=r.y-a.y),(h||c)&&t.fire("autopanstart").panBy([h,c])}},_onCloseButtonClick:function(t){this._close(),He(t)},_getAnchor:function(){return N(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}});Je.mergeOptions({closePopupOnClick:!0}),Je.include({openPopup:function(t,e,n){return t instanceof oi||(t=new oi(n).setContent(t)),e&&t.setLatLng(e),this.hasLayer(t)?this:(this._popup&&this._popup.options.autoClose&&this.closePopup(),this._popup=t,this.addLayer(t))},closePopup:function(t){return t&&t!==this._popup||(t=this._popup,this._popup=null),t&&this.removeLayer(t),this}}),En.include({bindPopup:function(t,e){return t instanceof oi?(p(t,e),(this._popup=t)._source=this):(this._popup&&!e||(this._popup=new oi(e,this)),this._popup.setContent(t)),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(t,e){return this._popup&&this._map&&(e=this._popup._prepareOpen(this,t,e),this._map.openPopup(this._popup,e)),this},closePopup:function(){return this._popup&&this._popup._close(),this},togglePopup:function(t){return this._popup&&(this._popup._map?this.closePopup():this.openPopup(t)),this},isPopupOpen:function(){return!!this._popup&&this._popup.isOpen()},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){var e=t.layer||t.target;this._popup&&this._map&&(He(t),e instanceof Bn?this.openPopup(t.layer||t.target,t.latlng):this._map.hasLayer(this._popup)&&this._popup._source===e?this.closePopup():this.openPopup(e,t.latlng))},_movePopup:function(t){this._popup.setLatLng(t.latlng)},_onKeyPress:function(t){13===t.originalEvent.keyCode&&this._openPopup(t)}});var ri=ii.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,interactive:!1,opacity:.9},onAdd:function(t){ii.prototype.onAdd.call(this,t),this.setOpacity(this.options.opacity),t.fire("tooltipopen",{tooltip:this}),this._source&&this._source.fire("tooltipopen",{tooltip:this},!0)},onRemove:function(t){ii.prototype.onRemove.call(this,t),t.fire("tooltipclose",{tooltip:this}),this._source&&this._source.fire("tooltipclose",{tooltip:this},!0)},getEvents:function(){var t=ii.prototype.getEvents.call(this);return St&&!this.options.permanent&&(t.preclick=this._close),t},_close:function(){this._map&&this._map.closeTooltip(this)},_initLayout:function(){var t="leaflet-tooltip "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=le("div",t)},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(t){var e=this._map,n=this._container,i=e.latLngToContainerPoint(e.getCenter()),o=e.layerPointToContainerPoint(t),r=this.options.direction,s=n.offsetWidth,a=n.offsetHeight,l=N(this.options.offset),u=this._getAnchor();t="top"===r?t.add(N(-s/2+l.x,-a+l.y+u.y,!0)):"bottom"===r?t.subtract(N(s/2-l.x,-l.y,!0)):"center"===r?t.subtract(N(s/2+l.x,a/2-u.y+l.y,!0)):"right"===r||"auto"===r&&o.xthis.options.maxZoom||nthis.options.maxZoom||void 0!==this.options.minZoom&&on.max.x)||!e.wrapLat&&(t.yn.max.y))return!1}if(!this.options.bounds)return!0;var i=this._tileCoordsToBounds(t);return j(this.options.bounds).overlaps(i)},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToNwSe:function(t){var e=this._map,n=this.getTileSize(),i=t.scaleBy(n),o=i.add(n);return[e.unproject(i,t.z),e.unproject(o,t.z)]},_tileCoordsToBounds:function(t){var e=this._tileCoordsToNwSe(t),n=new R(e[0],e[1]);return this.options.noWrap||(n=this._map.wrapLatLngBounds(n)),n},_tileCoordsToKey:function(t){return t.x+":"+t.y+":"+t.z},_keyToTileCoords:function(t){var e=t.split(":"),n=new D(+e[0],+e[1]);return n.z=+e[2],n},_removeTile:function(t){var e=this._tiles[t];e&&(ue(e.el),delete this._tiles[t],this.fire("tileunload",{tile:e.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){fe(t,"leaflet-tile");var e=this.getTileSize();t.style.width=e.x+"px",t.style.height=e.y+"px",t.onselectstart=a,t.onmousemove=a,et&&this.options.opacity<1&&ve(t,this.options.opacity),ot&&!rt&&(t.style.WebkitBackfaceVisibility="hidden")},_addTile:function(t,e){var n=this._getTilePos(t),i=this._tileCoordsToKey(t),o=this.createTile(this._wrapCoords(t),f(this._tileReady,this,t));this._initTile(o),this.createTile.length<2&&T(f(this._tileReady,this,t,null,o)),we(o,n),this._tiles[i]={el:o,coords:t,current:!0},e.appendChild(o),this.fire("tileloadstart",{tile:o,coords:t})},_tileReady:function(t,e,n){e&&this.fire("tileerror",{error:e,tile:n,coords:t});var i=this._tileCoordsToKey(t);(n=this._tiles[i])&&(n.loaded=+new Date,this._map._fadeAnimated?(ve(n.el,0),P(this._fadeFrame),this._fadeFrame=T(this._updateOpacity,this)):(n.active=!0,this._pruneTiles()),e||(fe(n.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:n.el,coords:t})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),et||!this._map._fadeAnimated?T(this._pruneTiles,this):setTimeout(f(this._pruneTiles,this),250)))},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var e=new D(this._wrapX?s(t.x,this._wrapX):t.x,this._wrapY?s(t.y,this._wrapY):t.y);return e.z=t.z,e},_pxBoundsToTileRange:function(t){var e=this.getTileSize();return new z(t.min.unscaleBy(e).floor(),t.max.unscaleBy(e).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}});var li=ai.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1},initialize:function(t,e){this._url=t,(e=p(this,e)).detectRetina&&Tt&&0')}}catch(t){return function(t){return document.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}}(),mi={_initContainer:function(){this._container=le("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(ci.prototype._update.call(this),this.fire("update"))},_initPath:function(t){var e=t._container=fi("shape");fe(e,"leaflet-vml-shape "+(this.options.className||"")),e.coordsize="1 1",t._path=fi("path"),e.appendChild(t._path),this._updateStyle(t),this._layers[u(t)]=t},_addPath:function(t){var e=t._container;this._container.appendChild(e),t.options.interactive&&t.addInteractiveTarget(e)},_removePath:function(t){var e=t._container;ue(e),t.removeInteractiveTarget(e),delete this._layers[u(t)]},_updateStyle:function(t){var e=t._stroke,n=t._fill,i=t.options,o=t._container;o.stroked=!!i.stroke,o.filled=!!i.fill,i.stroke?(e=e||(t._stroke=fi("stroke")),o.appendChild(e),e.weight=i.weight+"px",e.color=i.color,e.opacity=i.opacity,i.dashArray?e.dashStyle=v(i.dashArray)?i.dashArray.join(" "):i.dashArray.replace(/( *, *)/g," "):e.dashStyle="",e.endcap=i.lineCap.replace("butt","flat"),e.joinstyle=i.lineJoin):e&&(o.removeChild(e),t._stroke=null),i.fill?(n=n||(t._fill=fi("fill")),o.appendChild(n),n.color=i.fillColor||i.color,n.opacity=i.fillOpacity):n&&(o.removeChild(n),t._fill=null)},_updateCircle:function(t){var e=t._point.round(),n=Math.round(t._radius),i=Math.round(t._radiusY||n);this._setPath(t,t._empty()?"M0 0":"AL "+e.x+","+e.y+" "+n+","+i+" 0,23592600")},_setPath:function(t,e){t._path.v=e},_bringToFront:function(t){ce(t._container)},_bringToBack:function(t){de(t._container)}},gi=At?fi:J,_i=ci.extend({getEvents:function(){var t=ci.prototype.getEvents.call(this);return t.zoomstart=this._onZoomStart,t},_initContainer:function(){this._container=gi("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=gi("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){ue(this._container),De(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_onZoomStart:function(){this._update()},_update:function(){if(!this._map._animatingZoom||!this._bounds){ci.prototype._update.call(this);var t=this._bounds,e=t.getSize(),n=this._container;this._svgSize&&this._svgSize.equals(e)||(this._svgSize=e,n.setAttribute("width",e.x),n.setAttribute("height",e.y)),we(n,t.min),n.setAttribute("viewBox",[t.min.x,t.min.y,e.x,e.y].join(" ")),this.fire("update")}},_initPath:function(t){var e=t._path=gi("path");t.options.className&&fe(e,t.options.className),t.options.interactive&&fe(e,"leaflet-interactive"),this._updateStyle(t),this._layers[u(t)]=t},_addPath:function(t){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){ue(t._path),t.removeInteractiveTarget(t._path),delete this._layers[u(t)]},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var e=t._path,n=t.options;e&&(n.stroke?(e.setAttribute("stroke",n.color),e.setAttribute("stroke-opacity",n.opacity),e.setAttribute("stroke-width",n.weight),e.setAttribute("stroke-linecap",n.lineCap),e.setAttribute("stroke-linejoin",n.lineJoin),n.dashArray?e.setAttribute("stroke-dasharray",n.dashArray):e.removeAttribute("stroke-dasharray"),n.dashOffset?e.setAttribute("stroke-dashoffset",n.dashOffset):e.removeAttribute("stroke-dashoffset")):e.setAttribute("stroke","none"),n.fill?(e.setAttribute("fill",n.fillColor||n.color),e.setAttribute("fill-opacity",n.fillOpacity),e.setAttribute("fill-rule",n.fillRule||"evenodd")):e.setAttribute("fill","none"))},_updatePoly:function(t,e){this._setPath(t,Q(t._parts,e))},_updateCircle:function(t){var e=t._point,n=Math.max(Math.round(t._radius),1),i="a"+n+","+(Math.max(Math.round(t._radiusY),1)||n)+" 0 1,0 ",o=t._empty()?"M0 0":"M"+(e.x-n)+","+e.y+i+2*n+",0 "+i+2*-n+",0 ";this._setPath(t,o)},_setPath:function(t,e){t._path.setAttribute("d",e)},_bringToFront:function(t){ce(t._path)},_bringToBack:function(t){de(t._path)}});function vi(t){return Et||At?new _i(t):null}At&&_i.include(mi),Je.include({getRenderer:function(t){var e=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer;return e=e||(this._renderer=this._createRenderer()),this.hasLayer(e)||this.addLayer(e),e},_getPaneRenderer:function(t){if("overlayPane"===t||void 0===t)return!1;var e=this._paneRenderers[t];return void 0===e&&(e=this._createRenderer({pane:t}),this._paneRenderers[t]=e),e},_createRenderer:function(t){return this.options.preferCanvas&&pi(t)||vi(t)}});var yi=$n.extend({initialize:function(t,e){$n.prototype.initialize.call(this,this._boundsToLatLngs(t),e)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return[(t=j(t)).getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}});_i.create=gi,_i.pointsToPath=Q,Zn.geometryToLayer=Fn,Zn.coordsToLatLng=Wn,Zn.coordsToLatLngs=qn,Zn.latLngToCoords=Vn,Zn.latLngsToCoords=Yn,Zn.getFeature=Gn,Zn.asFeature=Kn,Je.mergeOptions({boxZoom:!0});var bi=rn.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane,this._resetStateTimeout=0,t.on("unload",this._destroy,this)},addHooks:function(){Ae(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){De(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){ue(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){0!==this._resetStateTimeout&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(t){if(!t.shiftKey||1!==t.which&&1!==t.button)return!1;this._clearDeferredResetState(),this._resetState(),Qt(),Se(),this._startPoint=this._map.mouseEventToContainerPoint(t),Ae(document,{contextmenu:He,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=le("div","leaflet-zoom-box",this._container),fe(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(t);var e=new z(this._point,this._startPoint),n=e.getSize();we(this._box,e.min),this._box.style.width=n.x+"px",this._box.style.height=n.y+"px"},_finish:function(){this._moved&&(ue(this._box),me(this._container,"leaflet-crosshair")),Xt(),Ce(),De(document,{contextmenu:He,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){if((1===t.which||1===t.button)&&(this._finish(),this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(f(this._resetState,this),0);var e=new R(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(e).fire("boxzoomend",{boxZoomBounds:e})}},_onKeyDown:function(t){27===t.keyCode&&this._finish()}});Je.addInitHook("addHandler","boxZoom",bi),Je.mergeOptions({doubleClickZoom:!0});var wi=rn.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var e=this._map,n=e.getZoom(),i=e.options.zoomDelta,o=t.originalEvent.shiftKey?n-i:n+i;"center"===e.options.doubleClickZoom?e.setZoom(o):e.setZoomAround(t.containerPoint,o)}});Je.addInitHook("addHandler","doubleClickZoom",wi),Je.mergeOptions({dragging:!0,inertia:!rt,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var xi=rn.extend({addHooks:function(){if(!this._draggable){var t=this._map;this._draggable=new cn(t._mapPane,t._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),t.on("zoomend",this._onZoomEnd,this),t.whenReady(this._onZoomEnd,this))}fe(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){me(this._map._container,"leaflet-grab"),me(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var t=this._map;if(t._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var e=j(this._map.options.maxBounds);this._offsetLimit=B(this._map.latLngToContainerPoint(e.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(e.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;t.fire("movestart").fire("dragstart"),t.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(t){if(this._map.options.inertia){var e=this._lastTime=+new Date,n=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(n),this._times.push(e),this._prunePositions(e)}this._map.fire("move",t).fire("drag",t)},_prunePositions:function(t){for(;1e.max.x&&(t.x=this._viscousLimit(t.x,e.max.x)),t.y>e.max.y&&(t.y=this._viscousLimit(t.y,e.max.y)),this._draggable._newPos=this._draggable._startPos.add(t)}},_onPreDragWrap:function(){var t=this._worldWidth,e=Math.round(t/2),n=this._initialWorldOffset,i=this._draggable._newPos.x,o=(i-e+n)%t+e-n,r=(i+e+n)%t-e-n,s=Math.abs(o+n)e.getMaxZoom()&&1a.page,s=new l(t[o],void 0,i),a.items.push(s),n.push(s)}return a.update(),n}u(t,e)}},this.show=function(t,e){return this.i=t,this.page=e,a.update(),a},this.remove=function(t,e,n){for(var i=0,o=0,r=a.items.length;o=a.i&&a.visibleItems.length",valueNames:["page","dotted"],searchClass:"pagination-search-that-is-not-supposed-to-exist",sortClass:"pagination-sort-that-is-not-supposed-to-exist"});p.on("updated",function(){n(e,t)}),n(e,t)}}},{"./index":59,"./utils/classes":66,"./utils/events":67}],62:[function(t,e,n){"use strict";e.exports=function(o){function r(t,e){for(var n=0,i=t.length;n]/g.exec(t)){var o=document.createElement("tbody");return o.innerHTML=t,o.firstChild}if(-1!==t.indexOf("<")){var r=document.createElement("div");return r.innerHTML=t,r.firstChild}var s=document.getElementById(l.item);if(s)return s}},this.get=function(t,e){u.create(t);for(var n={},i=0,o=e.length;iu)break;f=y}return!(h<0)}},{}],70:[function(t,e,n){"use strict";e.exports=function(t,e){var n=t.getAttribute&&t.getAttribute(e)||null;if(!n)for(var i=t.attributes.length,o=0;o>>0,i=0;iLt(t)?(r=t+1,a-Lt(t)):(r=t,a),{year:r,dayOfYear:s}}function Zt(t,e,n){var i,o,r=Ht(t.year(),e,n),s=Math.floor((t.dayOfYear()-r-1)/7)+1;return s<1?i=s+Ft(o=t.year()-1,e,n):s>Ft(t.year(),e,n)?(i=s-Ft(t.year(),e,n),o=t.year()+1):(o=t.year(),i=s),{week:i,year:o}}function Ft(t,e,n){var i=Ht(t,e,n),o=Ht(t+1,e,n);return(Lt(t)-i+o)/7}Z("w",["ww",2],"wo","week"),Z("W",["WW",2],"Wo","isoWeek"),O("week","w"),O("isoWeek","W"),z("week",5),z("isoWeek",5),lt("w",K),lt("ww",K,q),lt("W",K),lt("WW",K,q),pt(["w","ww","W","WW"],function(t,e,n,i){e[i.substr(0,1)]=L(t)});function Ut(t,e){return t.slice(e,7).concat(t.slice(0,e))}Z("d",0,"do","day"),Z("dd",0,0,function(t){return this.localeData().weekdaysMin(this,t)}),Z("ddd",0,0,function(t){return this.localeData().weekdaysShort(this,t)}),Z("dddd",0,0,function(t){return this.localeData().weekdays(this,t)}),Z("e",0,0,"weekday"),Z("E",0,0,"isoWeekday"),O("day","d"),O("weekday","e"),O("isoWeekday","E"),z("day",11),z("weekday",11),z("isoWeekday",11),lt("d",K),lt("e",K),lt("E",K),lt("dd",function(t,e){return e.weekdaysMinRegex(t)}),lt("ddd",function(t,e){return e.weekdaysShortRegex(t)}),lt("dddd",function(t,e){return e.weekdaysRegex(t)}),pt(["dd","ddd","dddd"],function(t,e,n,i){var o=n._locale.weekdaysParse(t,i,n._strict);null!=o?e.d=o:m(n).invalidWeekday=t}),pt(["d","e","E"],function(t,e,n,i){e[i]=L(t)});var Wt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_");var qt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_");var Vt="Su_Mo_Tu_We_Th_Fr_Sa".split("_");var Yt=st;var Gt=st;var Kt=st;function Jt(){function t(t,e){return e.length-t.length}var e,n,i,o,r,s=[],a=[],l=[],u=[];for(e=0;e<7;e++)n=f([2e3,1]).day(e),i=this.weekdaysMin(n,""),o=this.weekdaysShort(n,""),r=this.weekdays(n,""),s.push(i),a.push(o),l.push(r),u.push(i),u.push(o),u.push(r);for(s.sort(t),a.sort(t),l.sort(t),u.sort(t),e=0;e<7;e++)a[e]=ht(a[e]),l[e]=ht(l[e]),u[e]=ht(u[e]);this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+a.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+s.join("|")+")","i")}function Qt(){return this.hours()%12||12}function Xt(t,e){Z(t,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)})}function te(t,e){return e._meridiemParse}Z("H",["HH",2],0,"hour"),Z("h",["hh",2],0,Qt),Z("k",["kk",2],0,function(){return this.hours()||24}),Z("hmm",0,0,function(){return""+Qt.apply(this)+B(this.minutes(),2)}),Z("hmmss",0,0,function(){return""+Qt.apply(this)+B(this.minutes(),2)+B(this.seconds(),2)}),Z("Hmm",0,0,function(){return""+this.hours()+B(this.minutes(),2)}),Z("Hmmss",0,0,function(){return""+this.hours()+B(this.minutes(),2)+B(this.seconds(),2)}),Xt("a",!0),Xt("A",!1),O("hour","h"),z("hour",13),lt("a",te),lt("A",te),lt("H",K),lt("h",K),lt("k",K),lt("HH",K,q),lt("hh",K,q),lt("kk",K,q),lt("hmm",J),lt("hmmss",Q),lt("Hmm",J),lt("Hmmss",Q),dt(["H","HH"],_t),dt(["k","kk"],function(t,e,n){var i=L(t);e[_t]=24===i?0:i}),dt(["a","A"],function(t,e,n){n._isPm=n._locale.isPM(t),n._meridiem=t}),dt(["h","hh"],function(t,e,n){e[_t]=L(t),m(n).bigHour=!0}),dt("hmm",function(t,e,n){var i=t.length-2;e[_t]=L(t.substr(0,i)),e[vt]=L(t.substr(i)),m(n).bigHour=!0}),dt("hmmss",function(t,e,n){var i=t.length-4,o=t.length-2;e[_t]=L(t.substr(0,i)),e[vt]=L(t.substr(i,2)),e[yt]=L(t.substr(o)),m(n).bigHour=!0}),dt("Hmm",function(t,e,n){var i=t.length-2;e[_t]=L(t.substr(0,i)),e[vt]=L(t.substr(i))}),dt("Hmmss",function(t,e,n){var i=t.length-4,o=t.length-2;e[_t]=L(t.substr(0,i)),e[vt]=L(t.substr(i,2)),e[yt]=L(t.substr(o))});var ee,ne=Tt("Hours",!0),ie={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Ot,monthsShort:Dt,week:{dow:0,doy:6},weekdays:Wt,weekdaysMin:Vt,weekdaysShort:qt,meridiemParse:/[ap]\.?m?\.?/i},oe={},re={};function se(t){return t?t.toLowerCase().replace("_","-"):t}function ae(t){var e=null;if(!oe[t]&&void 0!==Jn&&Jn&&Jn.exports)try{e=ee._abbr,Kn("./locale/"+t),le(e)}catch(t){}return oe[t]}function le(t,e){var n;return t&&((n=r(e)?he(t):ue(t,e))?ee=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+t+" not found. Did you forget to load it?")),ee._abbr}function ue(t,e){if(null===e)return delete oe[t],null;var n,i=ie;if(e.abbr=t,null!=oe[t])T("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),i=oe[t]._config;else if(null!=e.parentLocale)if(null!=oe[e.parentLocale])i=oe[e.parentLocale]._config;else{if(null==(n=ae(e.parentLocale)))return re[e.parentLocale]||(re[e.parentLocale]=[]),re[e.parentLocale].push({name:t,config:e}),null;i=n._config}return oe[t]=new E(M(i,e)),re[t]&&re[t].forEach(function(t){ue(t.name,t.config)}),le(t),oe[t]}function he(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return ee;if(!a(t)){if(e=ae(t))return e;t=[t]}return function(t){for(var e,n,i,o,r=0;r=e&&S(o,n,!0)>=e-1)break;e--}r++}return ee}(t)}function ce(t){var e,n=t._a;return n&&-2===m(t).overflow&&(e=n[mt]<0||11Et(n[ft],n[mt])?gt:n[_t]<0||24Ft(n,r,s)?m(t)._overflowWeeks=!0:null!=l?m(t)._overflowWeekday=!0:(a=$t(n,i,o,r,s),t._a[ft]=a.year,t._dayOfYear=a.dayOfYear)}(t),null!=t._dayOfYear&&(r=de(t._a[ft],i[ft]),(t._dayOfYear>Lt(r)||0===t._dayOfYear)&&(m(t)._overflowDayOfYear=!0),n=jt(r,0,t._dayOfYear),t._a[mt]=n.getUTCMonth(),t._a[gt]=n.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=s[e]=i[e];for(;e<7;e++)t._a[e]=s[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[_t]&&0===t._a[vt]&&0===t._a[yt]&&0===t._a[bt]&&(t._nextDay=!0,t._a[_t]=0),t._d=(t._useUTC?jt:function(t,e,n,i,o,r,s){var a;return t<100&&0<=t?(a=new Date(t+400,e,n,i,o,r,s),isFinite(a.getFullYear())&&a.setFullYear(t)):a=new Date(t,e,n,i,o,r,s),a}).apply(null,s),o=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[_t]=24),t._w&&void 0!==t._w.d&&t._w.d!==o&&(m(t).weekdayMismatch=!0)}}var fe=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,me=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ge=/Z|[+-]\d\d(?::?\d\d)?/,_e=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],ve=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],ye=/^\/?Date\((\-?\d+)/i;function be(t){var e,n,i,o,r,s,a=t._i,l=fe.exec(a)||me.exec(a);if(l){for(m(t).iso=!0,e=0,n=_e.length;en.valueOf():n.valueOf()this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},fn.isLocal=function(){return!!this.isValid()&&!this._isUTC},fn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},fn.isUtc=$e,fn.isUTC=$e,fn.zoneAbbr=function(){return this._isUTC?"UTC":""},fn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},fn.dates=n("dates accessor is deprecated. Use date instead.",ln),fn.months=n("months accessor is deprecated. Use month instead",Nt),fn.years=n("years accessor is deprecated. Use year instead",kt),fn.zone=n("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()}),fn.isDSTShifted=n("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!r(this._isDSTShifted))return this._isDSTShifted;var t={};if(y(t,this),(t=ke(t))._a){var e=(t._isUTC?f:Pe)(t._a);this._isDSTShifted=this.isValid()&&0>>=5)&&(e|=32),i+=h.encode(e),0>1,1==(1&r)?-s:s),n.rest=e}},{"./base64":79}],79:[function(t,e,n){"use strict";var i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");n.encode=function(t){if(0<=t&&t=this._sources.size()&&!this.sourcesContent.some(function(t){return null==t}))},p.prototype.sourceContentFor=function(t,e){if(!this.sourcesContent)return null;var n=this._findSourceIndex(t);if(0<=n)return this.sourcesContent[n];var i,o=t;if(null!=this.sourceRoot&&(o=v.relative(this.sourceRoot,o)),null!=this.sourceRoot&&(i=v.urlParse(this.sourceRoot))){var r=o.replace(/^file:\/\//,"");if("file"==i.scheme&&this._sources.has(r))return this.sourcesContent[this._sources.indexOf(r)];if((!i.path||"/"==i.path)&&this._sources.has("/"+o))return this.sourcesContent[this._sources.indexOf("/"+o)]}if(e)return null;throw new Error('"'+o+'" is not in the SourceMap.')},p.prototype.generatedPositionFor=function(t){var e=v.getArg(t,"source");if((e=this._findSourceIndex(e))<0)return{line:null,column:null,lastColumn:null};var n={source:e,originalLine:v.getArg(t,"line"),originalColumn:v.getArg(t,"column")},i=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",v.compareByOriginalPositions,v.getArg(t,"bias",s.GREATEST_LOWER_BOUND));if(0<=i){var o=this._originalMappings[i];if(o.source===n.source)return{line:v.getArg(o,"generatedLine",null),column:v.getArg(o,"generatedColumn",null),lastColumn:v.getArg(o,"lastGeneratedColumn",null)}}return{line:null,column:null,lastColumn:null}},n.BasicSourceMapConsumer=p,(i.prototype=Object.create(s.prototype)).constructor=s,i.prototype._version=3,Object.defineProperty(i.prototype,"sources",{get:function(){for(var t=[],e=0;e
Yes

',o="panel panel-default bool-card-true"):n=!1===e||-1
No

':i,'\n
\n
\n

').concat(t,"

\n ").concat(n,"\n
\n ")}function p(t){return t<10?"0"+t:t}var f=h().year(),m=h(function(t){var e=Math.floor(t/100),n=t-19*Math.floor(t/19),i=Math.floor((e-17)/25),o=e-Math.floor(e/4)-Math.floor((e-i)/3)+19*n+15;o-=30*Math.floor(o/30),o-=Math.floor(o/28)*(1-Math.floor(o/28)*Math.floor(29/(o+1))*Math.floor((21-n)/11));var r=t+Math.floor(t/4)+o+2-e+Math.floor(e/4),s=o-(r-=7*Math.floor(r/7)),a=3+Math.floor((40+s)/44),l=28+s-31*Math.floor(a/4);return t+"-"+p(a)+"-"+p(l)}(f)).subtract(2,"d");if(u(window).resize(function(){_()}),u(document).on("click",".feature-row",function(t){var e,n;u(document).off("mouseout",".feature-row",v),e=parseInt(u(this).attr("id"),10),n=C.getLayer(e),i.setView([n.getLatLng().lat,n.getLatLng().lng],17),n.fire("click"),document.body.clientWidth<=767&&(u("#sidebar").hide(),i.invalidateSize())}),"ontouchstart"in window||u(document).on("mouseover",".feature-row",function(t){L.clearLayers().addLayer(o.circleMarker([u(this).attr("lat"),u(this).attr("lng")],S))}),u(document).on("mouseout",".feature-row",v),document.body.clientWidth<=767);else;function g(){u("#sidebar").animate({width:"toggle"},350,function(){i.invalidateSize()})}function _(){u(".leaflet-control-layers").css("max-height",u("#map").height()-50)}function v(){L.clearLayers()}function y(){u("#feature-list tbody").empty(),M.eachLayer(function(t){i.hasLayer(P)&&i.getBounds().contains(t.getLatLng())&&u("#feature-list tbody").append(''+t.feature.properties.venue_name+'')});u("#feature-list tbody tr").length;new s("features",{valueNames:["feature-name"],page:1e3}).sort("feature-name",{order:"asc"})}u("#about-btn").click(function(){return u("#aboutModal").modal("show"),u(".navbar-collapse.in").collapse("hide"),!1}),u("#login-btn").click(function(){return u("#loginModal").modal("show"),u(".navbar-collapse.in").collapse("hide"),!1}),u("#full-extent-btn").click(function(){return i.fitBounds(M.getBounds()),u(".navbar-collapse.in").collapse("hide"),!1}),u("#legend-btn").click(function(){return u("#legendModal").modal("show"),u(".navbar-collapse.in").collapse("hide"),!1}),u("#filterNav-btn").click(function(){return u("#filterModal").modal("show"),u(".navbar-collapse.in").collapse("hide"),!1}),u("#filterSidebar-btn").click(function(){return u("#filterModal").modal("show"),u(".navbar-collapse.in").collapse("hide"),!1}),u("#list-btn").click(function(){return g(),!1}),u("#nav-btn").click(function(){return u(".navbar-collapse").collapse("toggle"),!1}),u("#sidebar-toggle-btn").click(function(){return g(),!1}),u("#sidebar-hide-btn").click(function(){return g(),!1});var b=o.tileLayer("https://cartodb-basemaps-{s}.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png",{maxZoom:19,attribution:'© OpenStreetMap contributors, © CARTO'}),w=(o.tileLayer("https://{s}.sm.mapstack.stamen.com/((terrain-background,$000[@30],$fff[hsl-saturation@80],$1b334b[hsl-color],mapbox-water[destination-in]),(watercolor,$fff[difference],$000000[hsl-color],mapbox-water[destination-out]),(terrain-background,$000[@40],$000000[hsl-color],mapbox-water[destination-out])[screen@60],(streets-and-labels,$fedd9a[hsl-color])[@50])/{z}/{x}/{y}.png",{attribution:'Stamen Design under CC BY 3.0 license + OpenStreetMap under CC BY SA license.',maxZoom:18}),o.tileLayer("https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png",{maxZoom:19,attribution:'© OpenStreetMap contributors, © CARTO'})),x=[b,w],L=o.geoJson(null),S={stroke:!1,fillColor:"#00FFFF",fillOpacity:.7,radius:10},C=new o.MarkerClusterGroup({spiderfyOnMaxZoom:!0,showCoverageOnHover:!1,zoomToBoundsOnClick:!0,disableClusteringAtZoom:6});function k(t){return t||""}var T=h();var P=o.geoJson(null),M=o.geoJson(null,{pointToLayer:function(t,e){return t.properties.publish?o.marker(e,{icon:o.icon({iconUrl:t.properties.icon,iconSize:[30,76]}),title:t.properties.venue_name,riseOnHover:!0}):o.circleMarker(e,{radius:3,color:"#fedb96",fillColor:"#fff",fillOpacity:1,weight:5,opacity:.5})},onEachFeature:function(n,t){if(n.properties){var e=u("#info-template").html(),i=r.compile(e);t.on({click:function(){var t=function(t){var o=[];u.each(t,function(t,e){var n=h(e.dt_start),i=h(e.dt_end);i.isAfter(T)&&o.push([n,i])}),o.sort(function(t,e){return t[0].isBefore(e[0])?-1:t[0].isAfter(e[0])?1:0});var n,i=[],r=[],s=!1,a=0;return u.each(o,function(t,e){h(e[0]).isSame(m,"day")&&(s=!0),h(e[0]).isSame(e[1],"day")&&h(e[0]).isSame(T,"day")&&(r.push(e[0].format("h:mm a")+" to "+e[1].format("h:mm a")),a++),n=s?"Open Good "+e[0].format("dddd, MMMM Do")+", "+e[0].format("h:mm a")+" to "+e[1].format("h:mm a"):e[0].format("dddd, MMMM Do")+", "+e[0].format("h:mm a")+" to "+e[1].format("h:mm a"),a++,i.push(n)}),!s&&0Facebook page and help us out. Thanks!'),u("#feature-info").html(i(e)),u("#featureModal").modal("show"),L.clearLayers().addLayer(o.circleMarker([n.geometry.coordinates[1],n.geometry.coordinates[0]],S))}}),u("#feature-list tody").append(''+t.feature.properties.venue_name+''),a.push({name:t.feature.properties.venue_name,address:t.feature.properties.venue_address,etc:t.feature.properties.etc,source:"FishFrys",id:o.stamp(t),lat:t.feature.geometry.coordinates[1],lng:t.feature.geometry.coordinates[0]})}}});u.getJSON("https://data.pghfishfry.org/api/fishfries/",function(t){console.log("Fish Frys successfully loaded"),u(t.features).each(function(t,e){if(e.properties.website){var n=e.properties.website;-1===n.search("http://")&&-1===n.search("https://")&&(e.properties.website="http://"+n)}e.properties.publish?e.properties.venue_type&&c[e.properties.venue_type]?e.properties.icon=c[e.properties.venue_type]:e.properties.icon=c[""]:e.properties.icon=c.unpublished}),M.addData(t),i.addLayer(P)}),(i=o.map("map",{zoom:10,center:[40.4452,-79.9866],layers:[w,C,L],zoomControl:!1,attributionControl:!1})).addControl(o.Control.zoomHome({position:"topleft"})),u(".leaflet-control-zoomhome-out").html(''),u(".leaflet-control-zoomhome-in").html(''),u(".leaflet-control-zoomhome-home").html(''),i.addControl(o.control.basemaps({position:"topright",basemaps:x,tileX:4550,tileY:6176,tileZ:14})),i.addControl(o.control.layers({},{"Fish Fries":P},{collapsed:!0})),i.addControl(o.control.locate({position:"topleft",drawCircle:!0,follow:!0,setView:!0,keepCurrentZoomLevel:!1,markerStyle:{weight:1,opacity:.8,fillOpacity:.8},circleStyle:{weight:1,clickable:!1},icon:"fa fa-location-arrow",metric:!1,strings:{title:"My location",popup:"You are within {distance} {unit} from this point",outsideMapBoundsMsg:"You seem located outside the boundaries of the map"},locateOptions:{maxZoom:17,watch:!0,enableHighAccuracy:!0,maximumAge:1e4,timeout:1e4}}));var E=o.control.attribution({position:"bottomright",prefix:"Code for Pittsburgh"});i.addControl(E),i.on("overlayadd",function(t){t.layer===P&&(C.addLayer(M),y())}),i.on("overlayremove",function(t){t.layer===P&&(C.removeLayer(M),y())}),i.on("moveend",function(t){y()}),i.on("click",function(t){L.clearLayers()}),u(".filter").each(function(t,e){e.checked=!1});var A=!0;function O(a){var l=[];return A=!0,u("input[class='filter']").each(function(t,e){var n=u(e).prop("checked");n&&(A=!1);var i,o=!1,r=u(e).prop("id");if("GoodFriday"===r){var s=a.properties.events;u.each(s,function(t,e){h(e.dt_start).isSame(m,"day")&&(o=!0)})}else o=a.properties[r];i=n===o,n&&l.push(i)}),!!A||-1===l.indexOf(!1)}u("input[class='filter']").click(function(t){M.setFilter(O),y(),C.refreshClusters(),C.clearLayers(M),C.addLayer(M),A?(u("#filterSidebar-btn").addClass("btn-default"),u("#filterSidebar-btn").removeClass("btn-primary"),u("#filterSidebar-btn").html(' Filter')):(u("#filterSidebar-btn").removeClass("btn-default"),u("#filterSidebar-btn").addClass("btn-primary"),u("#filterSidebar-btn").html(' Filtered'))}),u("#searchbox").click(function(){u(this).select()}),u("#searchbox").keypress(function(t){13==t.which&&t.preventDefault()}),u("#featureModal").on("hidden.bs.modal",function(t){u(document).on("mouseout",".feature-row",v)}),u(document).one("ajaxStop",function(){u("#loading").hide(),_(),new s("features",{valueNames:["feature-name"],page:1e3}).sort("feature-name",{order:"asc"});var t=new Bloodhound({name:"FishFrys",datumTokenizer:function(t){return Bloodhound.tokenizers.whitespace(t.name)},queryTokenizer:Bloodhound.tokenizers.whitespace,local:a,limit:10}),e=new Bloodhound({name:"Mapbox",datumTokenizer:function(t){return Bloodhound.tokenizers.whitespace(t.name)},queryTokenizer:Bloodhound.tokenizers.whitespace,remote:{url:"https://api.mapbox.com/geocoding/v5/mapbox.places/%QUERY.json?&access_token=pk.eyJ1IjoiY2l2aWNtYXBwZXIiLCJhIjoiY2pkZGR2YnRkMDBiYTMzbmFqemRhemYzdSJ9.Cny85WNd4zd6C3WhC6v9Rw&country=us&proximity=-79.9976593%2C40.4396267&autocomplete=true&limit=5",filter:function(t){return u.map(t.features,function(t){return{name:t.place_name,lat:t.geometry.coordinates[1],lng:t.geometry.coordinates[0],source:"Mapbox"}})},ajax:{beforeSend:function(){u("#searchicon").removeClass("fa-search").addClass("fa-refresh fa-spin")},complete:function(){u("#searchicon").removeClass("fa-refresh fa-spin").addClass("fa-search")}}},limit:10});t.initialize(),e.initialize(),u("#searchbox").typeahead({minLength:3,highlight:!0,hint:!1},{name:"FishFrys",displayKey:"name",source:t.ttAdapter(),templates:{header:"

Fish Frys

",suggestion:r.compile(["{{name}}
 {{address}}"].join(""))}},{name:"Mapbox",displayKey:"name",source:e.ttAdapter(),templates:{header:"

Places

"}}).on("typeahead:selected",function(t,e){"FishFrys"===e.source&&(i.hasLayer(P)||i.addLayer(P),i.setView([e.lat,e.lng],17),i._layers[e.id]&&i._layers[e.id].fire("click")),"Mapbox"===e.source&&i.setView([e.lat,e.lng],17),50=this.maxSize&&(this.list.remove(i),delete this.hash[i.key]),(n=this.hash[t])?(n.val=e,this.list.moveToFront(n)):(n=new h(t,e),this.list.add(n),this.hash[t]=n,this.size++)},get:function(t){var e=this.hash[t];if(e)return this.list.moveToFront(e),e.val},reset:function(){this.size=0,this.hash={},this.list=new a}}),u.mixin(a.prototype,{add:function(t){this.head&&(t.next=this.head,this.head.prev=t),this.head=t,this.tail=this.tail||t},remove:function(t){t.prev?t.prev.next=t.next:this.head=t.next,t.next?t.next.prev=t.prev:this.tail=t.prev},moveToFront:function(t){this.remove(t),this.add(t)}}),s);function s(t){this.maxSize=u.isNumber(t)?t:100,this.reset(),this.maxSize<=0&&(this.set=this.get=l.noop)}function a(){this.head=this.tail=null}function h(t,e){this.key=t,this.val=e,this.prev=this.next=null}var c,d,p,f,m=function(){var o,t;try{(o=window.localStorage).setItem("~~~","!"),o.removeItem("~~~")}catch(t){o=null}function e(t){this.prefix=["__",t,"__"].join(""),this.ttlKey="__ttl__",this.keyMatcher=new RegExp("^"+u.escapeRegExChars(this.prefix))}return t=o&&window.JSON?{_prefix:function(t){return this.prefix+t},_ttlKey:function(t){return this._prefix(t)+this.ttlKey},get:function(t){return this.isExpired(t)&&this.remove(t),n(o.getItem(this._prefix(t)))},set:function(t,e,n){return u.isNumber(n)?o.setItem(this._ttlKey(t),r(i()+n)):o.removeItem(this._ttlKey(t)),o.setItem(this._prefix(t),r(e))},remove:function(t){return o.removeItem(this._ttlKey(t)),o.removeItem(this._prefix(t)),this},clear:function(){var t,e,n=[],i=o.length;for(t=0;te)}}:{get:u.noop,set:u.noop,remove:u.noop,clear:u.noop,isExpired:u.noop},u.mixin(e.prototype,t),e;function i(){return(new Date).getTime()}function r(t){return JSON.stringify(u.isUndefined(t)?null:t)}function n(t){return JSON.parse(t)}}(),g=(c=0,d={},p=6,f=new r(10),_.setMaxPendingRequests=function(t){p=t},_.resetCache=function(){f.reset()},u.mixin(_.prototype,{_get:function(e,t,n){var i,o=this;function r(t){n&&n(null,t),o._cache.set(e,t)}function s(){n&&n(!0)}this.cancelled||e!==this.lastUrl||((i=d[e])?i.done(r).fail(s):ce[i]||(o.push(t[n]),n++),i++);return o;function a(t,e){return t-e}}(r,o):o}),r?u.map(function(t){for(var e={},n=[],i=0,o=t.length;i