Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

iconfonts

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iconfonts - npm Package Compare versions

Comparing version 0.0.0 to 0.1.0

History.md

45

Notes.md

@@ -8,2 +8,45 @@ Dev notes

You can use cssparse.js
Rebuilding
----------
make -B
(`-B` is essentially to force regenerations - not usually needed but its a good idea.)
Testing
-------
make test
Be sure to install Sass first (`gem install sass`).
Updating icon sets
------------------
Update `src/your_icon_set.json`. To help you with this, gather its .css file and
use the cssparse.js helper.
# download the css
$ wget https://raw.githubusercontent.com/zurb/foundation-icons/master/foundation_icons_general/stylesheets/general_foundicons.css -O foundicons.css
# generate a json file from it
$ node support/cssparse.js < foundicons.css > temp.json
# ...now use temp.json to paste new icons into src/your_icon_set.json
Once you've updated the json files, use `make -B`.
Adding icon sets
----------------
Create `src/your_icon_set.json` by copying an existing `.json` file into your
new set. Follow the instructions above.
Releasing
---------
bump package.json
npm test
vim History.md
npm publish
git release v0.1.0

12

package.json
{
"name": "iconfonts",
"version": "0.0.0",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "make test"
},

@@ -13,4 +13,10 @@ "author": "",

"underscore": "^1.6.0",
"css": "^2.0.0"
"css": "^2.0.0",
"stylus": "^0.46.3",
"less": "^1.7.3"
},
"repository": {
"type": "git",
"url": "https://github.com/rstacruz/iconfonts.git"
}
}
# Icon fonts
Icon fonts support for Sass, Less and Stylus.
Fine-tuned icon fonts integration for Sass, Less and Stylus.
Featuring the following icon sets:
* [Elusive](http://shoestrap.org/downloads/elusive-icons-webfont/)
* [FontAwesome](http://fontawesome.io)
* [Ionicons](http://ionicons.com/fonts)
* [Foundation Icons General](http://zurb.com/playground/foundation-icon-fonts-3)
Install

@@ -16,3 +23,3 @@ -------

Using bower makes files available via
`bower_components/iconfonts/stylesheets/___.sass`.
`bower_components/iconfonts/stylesheets/___.scss`.

@@ -24,33 +31,85 @@ bower install iconfonts

Using bower makes files available via
`node_modules/iconfonts/stylesheets/___.sass`.
`node_modules/iconfonts/stylesheets/___.scss`.
npm install iconfonts
Why is it needed?
-----------------
This lets you use CSS definitions only for the icons you need, on the elements
that you need them.
The CSS files that these fonts provide usually give you a lot of cruft, and
defines all the classes in one giant file.
```
/* CSS */
.fa-user:before { content: '\f007'; }
.fa-film:before { content: '\f008'; }
.fa-th-large:before { content: '\f009'; }
... and 300 more
/* HTML */
<button class="btn btn-plus"><i class="fa fa-plus"></i> Add user</button>
```
I prefer to not have them in my CSS files unless I need them. This project lets
you do that.
```
/* Stylus */
.btn-plus {
&:before { fa-icon: "plus"; margin-right: 10px; }
}
/* HTML */
<button class="btn-plus">Add user</button>
```
Setup
-----
### Sass
### SCSS
@import font-awesome
fa-font()
button:before
fa-icon("music", 14px)
``` SCSS
@import 'font-awesome';
fa-font();
button:before {
@include fa-icon("music", 14px);
}
```
See [a Sass file](sytlesheets/ionicons.scss) for more info.
### Stylus
@import font-awesome
fa-font()
button:before
fa-icon("music", 14px)
``` sass
@require font-awesome
fa-font()
button:before
fa-icon("music", 14px)
```
See [a stylus file](sytlesheets/ionicons.styl) for more info.
### Less
@import 'font-awesome';
.fa-font();
button:before {
.fa-icon("music");
font-size: 14px;
}
``` less
@import 'font-awesome';
.fa-font();
button:before {
.fa-icon("music");
font-size: 14px;
}
```
See [a less file](sytlesheets/ionicons.less) for more info.
## Acknowledgements
MIT licensed.
{
"name": "Elusive",
"version": "1.4.1",
"version": "1.5.0",
"prefix": "el",
"site": "http://ionicons.com/fonts",
"site": "http://shoestrap.org/downloads/elusive-icons-webfont/",
"path": "http://aristath.github.io/elusive-iconfont/assets/elusive-font/font/",

@@ -11,274 +11,302 @@ "basename": "Elusive-Icons",

"icons": {
"briefcase": "\\e10d",
"bullhorn": "\\e10c",
"calendar": "\\e10b",
"calendar-sign": "\\e10a",
"cog": "\\e109",
"cog-alt": "\\e108",
"cogs": "\\e107",
"comment": "\\e106",
"error": "\\e105",
"error-alt": "\\e104",
"exclamation-sign": "\\e103",
"eye-close": "\\e102",
"flag-alt": "\\e101",
"flickr": "\\e100",
"folder": "\\e0ff",
"folder-close": "\\e0fe",
"globe-alt": "\\e0fd",
"googleplus": "\\e0fc",
"graph": "\\e0fb",
"graph-alt": "\\e0fa",
"idea-alt": "\\e0f9",
"inbox": "\\e0f8",
"inbox-alt": "\\e0f7",
"inbox-box": "\\e0f6",
"book": "\\e0f5",
"bookmark": "\\e0f4",
"bookmark-empty": "\\e0f3",
"braille": "\\e0f2",
"circle-arrow-right": "\\e0f1",
"circle-arrow-up": "\\e0f0",
"cloud": "\\e0ef",
"cloud-alt": "\\e0ee",
"edit": "\\e0ed",
"eject": "\\e0ec",
"envelope": "\\e0eb",
"envelope-alt": "\\e0ea",
"film": "\\e0e9",
"filter": "\\e0e8",
"fire": "\\e0e7",
"flag": "\\e0e6",
"github-text": "\\e0e5",
"glass": "\\e0e4",
"glasses": "\\e0e3",
"globe": "\\e0e2",
"heart-empty": "\\e0e1",
"home": "\\e0e0",
"home-alt": "\\e0df",
"idea": "\\e0de",
"address-book": "\\e0dd",
"address-book-alt": "\\e0dc",
"adjust": "\\e0db",
"adult": "\\e0da",
"align-center": "\\e0d9",
"align-justify": "\\e0d8",
"align-left": "\\e0d7",
"align-right": "\\e0d6",
"arrow-down": "\\e0d5",
"arrow-left": "\\e0d4",
"barcode": "\\e0d3",
"behance": "\\e0d2",
"bell": "\\e0d1",
"blind": "\\e0d0",
"blogger": "\\e0cf",
"bold": "\\e0ce",
"chevron-left": "\\e0cd",
"chevron-right": "\\e0cc",
"chevron-up": "\\e0cb",
"child": "\\e0ca",
"circle-arrow-down": "\\e0c9",
"circle-arrow-left": "\\e0c8",
"delicious": "\\e0c7",
"deviantart": "\\e0c6",
"digg": "\\e0c5",
"download": "\\e0c4",
"download-alt": "\\e0c3",
"dribble": "\\e0c2",
"file": "\\e0c1",
"file-alt": "\\e0c0",
"file-edit": "\\e0bf",
"file-edit-alt": "\\e0be",
"file-new": "\\e0bd",
"file-new-alt": "\\e0bc",
"foursquare": "\\e0bb",
"friendfeed": "\\e0ba",
"friendfeed-rect": "\\e0b9",
"fullscreen": "\\e0b8",
"gift": "\\e0b7",
"github": "\\e0b6",
"hand-up": "\\e0b5",
"hdd": "\\e0b4",
"headphones": "\\e0b3",
"hearing-impaired": "\\e0b2",
"heart": "\\e0b1",
"heart-alt": "\\e0b0",
"arrow-right": "\\e0af",
"arrow-up": "\\e0ae",
"asl": "\\e0ad",
"asterisk": "\\e0ac",
"backward": "\\e0ab",
"ban-circle": "\\e0aa",
"camera": "\\e0a9",
"cc": "\\e0a8",
"certificate": "\\e0a7",
"check": "\\e0a6",
"check-empty": "\\e0a5",
"chevron-down": "\\e0a4",
"comment-alt": "\\e0a3",
"compass": "\\e0a2",
"compass-alt": "\\e0a1",
"credit-card": "\\e0a0",
"css": "\\e09f",
"dashboard": "\\e09e",
"eye-open": "\\e09d",
"facebook": "\\e09c",
"facetime-video": "\\e09b",
"fast-backward": "\\e09a",
"fast-forward": "\\e099",
"female": "\\e098",
"folder-open": "\\e097",
"folder-sign": "\\e096",
"font": "\\e095",
"fontsize": "\\e094",
"forward": "\\e093",
"forward-alt": "\\e092",
"group": "\\e091",
"group-alt": "\\e090",
"guidedog": "\\e08f",
"hand-down": "\\e08e",
"hand-left": "\\e08d",
"hand-right": "\\e08c",
"indent-left": "\\e08b",
"indent-right": "\\e08a",
"info-sign": "\\e089",
"instagram": "\\e088",
"iphone-home": "\\e087",
"italic": "\\e086",
"key": "\\e085",
"laptop": "\\e084",
"laptop-alt": "\\e083",
"leaf": "\\e082",
"linkedin": "\\e081",
"list": "\\e080",
"list-alt": "\\e07f",
"lock": "\\e07e",
"lock-alt": "\\e07d",
"magnet": "\\e07c",
"male": "\\e07b",
"map-marker": "\\e07a",
"map-marker-alt": "\\e079",
"mic": "\\e078",
"mic-alt": "\\e077",
"minus": "\\e076",
"minus-sign": "\\e075",
"move": "\\e074",
"music": "\\e073",
"network": "\\e072",
"off": "\\e071",
"ok": "\\e070",
"ok-circle": "\\e06f",
"ok-sign": "\\e06e",
"paper-clip": "\\e06d",
"paper-clip-alt": "\\e06c",
"path": "\\e06b",
"pause": "\\e06a",
"pause-alt": "\\e069",
"pencil": "\\e068",
"pencil-alt": "\\e067",
"person": "\\e066",
"phone": "\\e065",
"phone-alt": "\\e064",
"photo": "\\e063",
"photo-alt": "\\e062",
"picasa": "\\e061",
"picture": "\\e060",
"pinterest": "\\e05f",
"plane": "\\e05e",
"play": "\\e05d",
"play-alt": "\\e05c",
"play-circle": "\\e05b",
"plus": "\\e05a",
"plus-sign": "\\e059",
"print": "\\e058",
"qrcode": "\\e057",
"question": "\\e056",
"question-sign": "\\e055",
"quotes": "\\e054",
"quotes-alt": "\\e053",
"random": "\\e052",
"record": "\\e051",
"reddit": "\\e050",
"refresh": "\\e04f",
"remove": "\\e04e",
"remove-circle": "\\e04d",
"remove-sign": "\\e04c",
"repeat": "\\e04b",
"repeat-alt": "\\e04a",
"resize-full": "\\e049",
"resize-horizontal": "\\e048",
"resize-small": "\\e047",
"resize-vertical": "\\e046",
"retweet": "\\e045",
"reverse-alt": "\\e044",
"road": "\\e043",
"rss": "\\e042",
"screen": "\\e041",
"screen-alt": "\\e040",
"screenshot": "\\e03f",
"search": "\\e03e",
"search-alt": "\\e03d",
"share": "\\e03c",
"share-alt": "\\e03b",
"shopping-cart": "\\e03a",
"shopping-cart-sign": "\\e039",
"signal": "\\e038",
"skype": "\\e037",
"slideshare": "\\e036",
"smiley": "\\e035",
"smiley-alt": "\\e034",
"speaker": "\\e033",
"stackoverflow": "\\e032",
"star": "\\e031",
"star-alt": "\\e030",
"star-empty": "\\e02f",
"step-backward": "\\e02e",
"step-forward": "\\e02d",
"stop": "\\e02c",
"stop-alt": "\\e02b",
"stumbleupon": "\\e02a",
"tag": "\\e029",
"tags": "\\e028",
"tasks": "\\e027",
"text-height": "\\e026",
"text-width": "\\e025",
"th": "\\e024",
"th-large": "\\e023",
"th-list": "\\e022",
"thumbs-down": "\\e021",
"thumbs-up": "\\e020",
"time": "\\e01f",
"time-alt": "\\e01e",
"tint": "\\e01d",
"torso": "\\e01c",
"trash": "\\e01b",
"trash-alt": "\\e01a",
"tumblr": "\\e019",
"twitter": "\\e018",
"universal-access": "\\e017",
"unlock": "\\e016",
"unlock-alt": "\\e015",
"upload": "\\e014",
"user": "\\e013",
"video": "\\e012",
"video-alt": "\\e011",
"video-chat": "\\e010",
"view-mode": "\\e00f",
"vimeo": "\\e00e",
"volume-down": "\\e00d",
"volume-off": "\\e00c",
"volume-up": "\\e00b",
"w3c": "\\e00a",
"warning-sign": "\\e009",
"website": "\\e008",
"website-alt": "\\e007",
"wheelchair": "\\e006",
"wordpress": "\\e005",
"wrench": "\\e004",
"wrench-alt": "\\e003",
"youtube": "\\e002",
"zoom-in": "\\e001",
"zoom-out": "\\e000",
"vkontakte": "\\e10e"
"address-book": "\\e729",
"address-book-alt": "\\e728",
"adjust": "\\e727",
"adjust-alt": "\\e726",
"adult": "\\e725",
"align-center": "\\e724",
"align-justify": "\\e723",
"align-left": "\\e722",
"align-right": "\\e721",
"arrow-down": "\\e720",
"arrow-left": "\\e71f",
"arrow-right": "\\e71e",
"arrow-up": "\\e71d",
"asl": "\\e71c",
"asterisk": "\\e72a",
"backward": "\\e71b",
"ban-circle": "\\e71a",
"barcode": "\\e719",
"behance": "\\e718",
"bell": "\\e717",
"blind": "\\e716",
"blogger": "\\e715",
"bold": "\\e714",
"book": "\\e713",
"bookmark": "\\e712",
"bookmark-empty": "\\e711",
"braille": "\\e710",
"briefcase": "\\e70f",
"broom": "\\e70e",
"brush": "\\e70d",
"bulb": "\\e70c",
"bullhorn": "\\e70b",
"calendar": "\\e70a",
"calendar-sign": "\\e709",
"camera": "\\e708",
"car": "\\e707",
"caret-down": "\\e706",
"caret-left": "\\e705",
"caret-right": "\\e704",
"caret-up": "\\e703",
"cc": "\\e702",
"certificate": "\\e701",
"check": "\\e700",
"check-empty": "\\e6ff",
"chevron-down": "\\e6fe",
"chevron-left": "\\e6fd",
"chevron-right": "\\e6fc",
"chevron-up": "\\e6fb",
"child": "\\e6fa",
"circle-arrow-down": "\\e6f9",
"circle-arrow-left": "\\e6f8",
"circle-arrow-right": "\\e6f7",
"circle-arrow-up": "\\e6f6",
"cloud": "\\e6f5",
"cloud-alt": "\\e6f4",
"cog": "\\e6f3",
"cog-alt": "\\e6f2",
"cogs": "\\e6f1",
"comment": "\\e6f0",
"comment-alt": "\\e6ef",
"compass": "\\e6ee",
"compass-alt": "\\e6ed",
"credit-card": "\\e6ec",
"css": "\\e6eb",
"dashboard": "\\e6ea",
"delicious": "\\e6e9",
"deviantart": "\\e6e8",
"digg": "\\e6e7",
"download": "\\e6e6",
"download-alt": "\\e6e5",
"dribbble": "\\e6e4",
"edit": "\\e6e3",
"eject": "\\e6e2",
"envelope": "\\e6e1",
"envelope-alt": "\\e6e0",
"error": "\\e6df",
"error-alt": "\\e6de",
"eur": "\\e6dd",
"exclamation-sign": "\\e6dc",
"eye-close": "\\e6db",
"eye-open": "\\e6da",
"facebook": "\\e6d9",
"facetime-video": "\\e6d8",
"fast-backward": "\\e6d7",
"fast-forward": "\\e6d6",
"female": "\\e6d5",
"file": "\\e6d4",
"file-alt": "\\e6d3",
"file-edit": "\\e6d2",
"file-edit-alt": "\\e6d1",
"file-new": "\\e6d0",
"file-new-alt": "\\e6cf",
"film": "\\e6ce",
"filter": "\\e6cd",
"fire": "\\e6cc",
"flag": "\\e6cb",
"flag-alt": "\\e6ca",
"flickr": "\\e6c9",
"folder": "\\e6c8",
"folder-close": "\\e6c7",
"folder-open": "\\e6c6",
"folder-sign": "\\e6c5",
"font": "\\e6c4",
"fontsize": "\\e6c3",
"fork": "\\e6c2",
"forward": "\\e6c1",
"forward-alt": "\\e6c0",
"foursquare": "\\e6bf",
"friendfeed": "\\e6be",
"friendfeed-rect": "\\e6bd",
"fullscreen": "\\e6bc",
"gbp": "\\e6bb",
"gift": "\\e6ba",
"github": "\\e6b9",
"github-text": "\\e6b8",
"glass": "\\e6b7",
"glasses": "\\e6b6",
"globe": "\\e6b5",
"globe-alt": "\\e6b4",
"googleplus": "\\e6b3",
"graph": "\\e6b2",
"graph-alt": "\\e6b1",
"group": "\\e6b0",
"group-alt": "\\e6af",
"guidedog": "\\e6ae",
"hand-down": "\\e6ad",
"hand-left": "\\e6ac",
"hand-right": "\\e6ab",
"hand-up": "\\e6aa",
"hdd": "\\e6a9",
"headphones": "\\e6a8",
"hearing-impaired": "\\e6a7",
"heart": "\\e6a6",
"heart-alt": "\\e6a5",
"heart-empty": "\\e6a4",
"home": "\\e6a3",
"home-alt": "\\e6a2",
"hourglass": "\\e6a1",
"idea": "\\e6a0",
"idea-alt": "\\e69f",
"inbox": "\\e69e",
"inbox-alt": "\\e69d",
"inbox-box": "\\e69c",
"indent-left": "\\e69b",
"indent-right": "\\e69a",
"info-sign": "\\e699",
"instagram": "\\e698",
"iphone-home": "\\e697",
"italic": "\\e696",
"key": "\\e695",
"laptop": "\\e694",
"laptop-alt": "\\e693",
"lastfm": "\\e692",
"leaf": "\\e691",
"lines": "\\e690",
"link": "\\e68f",
"linkedin": "\\e68e",
"list": "\\e68d",
"list-alt": "\\e68c",
"livejournal": "\\e68b",
"lock": "\\e68a",
"lock-alt": "\\e689",
"magic": "\\e688",
"magnet": "\\e687",
"male": "\\e686",
"map-marker": "\\e685",
"map-marker-alt": "\\e684",
"mic": "\\e683",
"mic-alt": "\\e682",
"minus": "\\e681",
"minus-sign": "\\e680",
"move": "\\e67f",
"music": "\\e67e",
"myspace": "\\e67d",
"network": "\\e67c",
"off": "\\e67b",
"ok": "\\e67a",
"ok-circle": "\\e679",
"ok-sign": "\\e678",
"opensource": "\\e677",
"paper-clip": "\\e676",
"paper-clip-alt": "\\e675",
"path": "\\e674",
"pause": "\\e673",
"pause-alt": "\\e672",
"pencil": "\\e671",
"pencil-alt": "\\e670",
"person": "\\e66f",
"phone": "\\e66e",
"phone-alt": "\\e66d",
"photo": "\\e66c",
"photo-alt": "\\e66b",
"picasa": "\\e66a",
"picture": "\\e669",
"pinterest": "\\e668",
"plane": "\\e667",
"play": "\\e666",
"play-alt": "\\e665",
"play-circle": "\\e664",
"plus": "\\e663",
"plus-sign": "\\e662",
"podcast": "\\e661",
"print": "\\e660",
"puzzle": "\\e65f",
"qrcode": "\\e65e",
"question": "\\e65d",
"question-sign": "\\e65c",
"quotes": "\\e65b",
"quotes-alt": "\\e65a",
"random": "\\e659",
"record": "\\e658",
"reddit": "\\e657",
"refresh": "\\e656",
"remove": "\\e655",
"remove-circle": "\\e654",
"remove-sign": "\\e653",
"repeat": "\\e652",
"repeat-alt": "\\e651",
"resize-full": "\\e650",
"resize-horizontal": "\\e64f",
"resize-small": "\\e64e",
"resize-vertical": "\\e64d",
"return-key": "\\e64c",
"retweet": "\\e64b",
"reverse-alt": "\\e64a",
"road": "\\e649",
"rss": "\\e648",
"scissors": "\\e647",
"screen": "\\e646",
"screen-alt": "\\e645",
"screenshot": "\\e644",
"search": "\\e643",
"search-alt": "\\e642",
"share": "\\e641",
"share-alt": "\\e640",
"shopping-cart": "\\e63f",
"shopping-cart-sign": "\\e63e",
"signal": "\\e63d",
"skype": "\\e63c",
"slideshare": "\\e63b",
"smiley": "\\e63a",
"smiley-alt": "\\e639",
"soundcloud": "\\e638",
"speaker": "\\e637",
"spotify": "\\e636",
"stackoverflow": "\\e635",
"star": "\\e634",
"star-alt": "\\e633",
"star-empty": "\\e632",
"step-backward": "\\e631",
"step-forward": "\\e630",
"stop": "\\e62f",
"stop-alt": "\\e62e",
"stumbleupon": "\\e62d",
"tag": "\\e62c",
"tags": "\\e62b",
"tasks": "\\e62a",
"text-height": "\\e629",
"text-width": "\\e628",
"th": "\\e627",
"th-large": "\\e626",
"th-list": "\\e625",
"thumbs-down": "\\e624",
"thumbs-up": "\\e623",
"time": "\\e622",
"time-alt": "\\e621",
"tint": "\\e620",
"torso": "\\e61f",
"trash": "\\e61e",
"trash-alt": "\\e61d",
"tumblr": "\\e61c",
"twitter": "\\e61b",
"universal-access": "\\e61a",
"unlock": "\\e619",
"unlock-alt": "\\e618",
"upload": "\\e617",
"usd": "\\e616",
"user": "\\e615",
"viadeo": "\\e614",
"video": "\\e613",
"video-alt": "\\e612",
"video-chat": "\\e611",
"view-mode": "\\e610",
"vimeo": "\\e60f",
"vkontakte": "\\e60e",
"volume-down": "\\e60d",
"volume-off": "\\e60c",
"volume-up": "\\e60b",
"w3c": "\\e60a",
"warning-sign": "\\e609",
"website": "\\e608",
"website-alt": "\\e607",
"wheelchair": "\\e606",
"wordpress": "\\e605",
"wrench": "\\e604",
"wrench-alt": "\\e603",
"youtube": "\\e602",
"zoom-in": "\\e601",
"zoom-out": "\\e600"
}
}

@@ -12,2 +12,5 @@ var args = process.argv.slice(2),

data.urlpath = data.path;
if (data.path.match(/^\/\//)) data.urlpath = 'http:'+data.path;
console.log(template(data));

@@ -1,1 +0,1 @@

{"Elusive":{"name":"Elusive","version":"1.4.1","prefix":"el","site":"http://ionicons.com/fonts","path":"http://aristath.github.io/elusive-iconfont/assets/elusive-font/font/","basename":"Elusive-Icons","svghash":"#Elusive-Icons","nativesize":"14px","icons":{"briefcase":"\\e10d","bullhorn":"\\e10c","calendar":"\\e10b","calendar-sign":"\\e10a","cog":"\\e109","cog-alt":"\\e108","cogs":"\\e107","comment":"\\e106","error":"\\e105","error-alt":"\\e104","exclamation-sign":"\\e103","eye-close":"\\e102","flag-alt":"\\e101","flickr":"\\e100","folder":"\\e0ff","folder-close":"\\e0fe","globe-alt":"\\e0fd","googleplus":"\\e0fc","graph":"\\e0fb","graph-alt":"\\e0fa","idea-alt":"\\e0f9","inbox":"\\e0f8","inbox-alt":"\\e0f7","inbox-box":"\\e0f6","book":"\\e0f5","bookmark":"\\e0f4","bookmark-empty":"\\e0f3","braille":"\\e0f2","circle-arrow-right":"\\e0f1","circle-arrow-up":"\\e0f0","cloud":"\\e0ef","cloud-alt":"\\e0ee","edit":"\\e0ed","eject":"\\e0ec","envelope":"\\e0eb","envelope-alt":"\\e0ea","film":"\\e0e9","filter":"\\e0e8","fire":"\\e0e7","flag":"\\e0e6","github-text":"\\e0e5","glass":"\\e0e4","glasses":"\\e0e3","globe":"\\e0e2","heart-empty":"\\e0e1","home":"\\e0e0","home-alt":"\\e0df","idea":"\\e0de","address-book":"\\e0dd","address-book-alt":"\\e0dc","adjust":"\\e0db","adult":"\\e0da","align-center":"\\e0d9","align-justify":"\\e0d8","align-left":"\\e0d7","align-right":"\\e0d6","arrow-down":"\\e0d5","arrow-left":"\\e0d4","barcode":"\\e0d3","behance":"\\e0d2","bell":"\\e0d1","blind":"\\e0d0","blogger":"\\e0cf","bold":"\\e0ce","chevron-left":"\\e0cd","chevron-right":"\\e0cc","chevron-up":"\\e0cb","child":"\\e0ca","circle-arrow-down":"\\e0c9","circle-arrow-left":"\\e0c8","delicious":"\\e0c7","deviantart":"\\e0c6","digg":"\\e0c5","download":"\\e0c4","download-alt":"\\e0c3","dribble":"\\e0c2","file":"\\e0c1","file-alt":"\\e0c0","file-edit":"\\e0bf","file-edit-alt":"\\e0be","file-new":"\\e0bd","file-new-alt":"\\e0bc","foursquare":"\\e0bb","friendfeed":"\\e0ba","friendfeed-rect":"\\e0b9","fullscreen":"\\e0b8","gift":"\\e0b7","github":"\\e0b6","hand-up":"\\e0b5","hdd":"\\e0b4","headphones":"\\e0b3","hearing-impaired":"\\e0b2","heart":"\\e0b1","heart-alt":"\\e0b0","arrow-right":"\\e0af","arrow-up":"\\e0ae","asl":"\\e0ad","asterisk":"\\e0ac","backward":"\\e0ab","ban-circle":"\\e0aa","camera":"\\e0a9","cc":"\\e0a8","certificate":"\\e0a7","check":"\\e0a6","check-empty":"\\e0a5","chevron-down":"\\e0a4","comment-alt":"\\e0a3","compass":"\\e0a2","compass-alt":"\\e0a1","credit-card":"\\e0a0","css":"\\e09f","dashboard":"\\e09e","eye-open":"\\e09d","facebook":"\\e09c","facetime-video":"\\e09b","fast-backward":"\\e09a","fast-forward":"\\e099","female":"\\e098","folder-open":"\\e097","folder-sign":"\\e096","font":"\\e095","fontsize":"\\e094","forward":"\\e093","forward-alt":"\\e092","group":"\\e091","group-alt":"\\e090","guidedog":"\\e08f","hand-down":"\\e08e","hand-left":"\\e08d","hand-right":"\\e08c","indent-left":"\\e08b","indent-right":"\\e08a","info-sign":"\\e089","instagram":"\\e088","iphone-home":"\\e087","italic":"\\e086","key":"\\e085","laptop":"\\e084","laptop-alt":"\\e083","leaf":"\\e082","linkedin":"\\e081","list":"\\e080","list-alt":"\\e07f","lock":"\\e07e","lock-alt":"\\e07d","magnet":"\\e07c","male":"\\e07b","map-marker":"\\e07a","map-marker-alt":"\\e079","mic":"\\e078","mic-alt":"\\e077","minus":"\\e076","minus-sign":"\\e075","move":"\\e074","music":"\\e073","network":"\\e072","off":"\\e071","ok":"\\e070","ok-circle":"\\e06f","ok-sign":"\\e06e","paper-clip":"\\e06d","paper-clip-alt":"\\e06c","path":"\\e06b","pause":"\\e06a","pause-alt":"\\e069","pencil":"\\e068","pencil-alt":"\\e067","person":"\\e066","phone":"\\e065","phone-alt":"\\e064","photo":"\\e063","photo-alt":"\\e062","picasa":"\\e061","picture":"\\e060","pinterest":"\\e05f","plane":"\\e05e","play":"\\e05d","play-alt":"\\e05c","play-circle":"\\e05b","plus":"\\e05a","plus-sign":"\\e059","print":"\\e058","qrcode":"\\e057","question":"\\e056","question-sign":"\\e055","quotes":"\\e054","quotes-alt":"\\e053","random":"\\e052","record":"\\e051","reddit":"\\e050","refresh":"\\e04f","remove":"\\e04e","remove-circle":"\\e04d","remove-sign":"\\e04c","repeat":"\\e04b","repeat-alt":"\\e04a","resize-full":"\\e049","resize-horizontal":"\\e048","resize-small":"\\e047","resize-vertical":"\\e046","retweet":"\\e045","reverse-alt":"\\e044","road":"\\e043","rss":"\\e042","screen":"\\e041","screen-alt":"\\e040","screenshot":"\\e03f","search":"\\e03e","search-alt":"\\e03d","share":"\\e03c","share-alt":"\\e03b","shopping-cart":"\\e03a","shopping-cart-sign":"\\e039","signal":"\\e038","skype":"\\e037","slideshare":"\\e036","smiley":"\\e035","smiley-alt":"\\e034","speaker":"\\e033","stackoverflow":"\\e032","star":"\\e031","star-alt":"\\e030","star-empty":"\\e02f","step-backward":"\\e02e","step-forward":"\\e02d","stop":"\\e02c","stop-alt":"\\e02b","stumbleupon":"\\e02a","tag":"\\e029","tags":"\\e028","tasks":"\\e027","text-height":"\\e026","text-width":"\\e025","th":"\\e024","th-large":"\\e023","th-list":"\\e022","thumbs-down":"\\e021","thumbs-up":"\\e020","time":"\\e01f","time-alt":"\\e01e","tint":"\\e01d","torso":"\\e01c","trash":"\\e01b","trash-alt":"\\e01a","tumblr":"\\e019","twitter":"\\e018","universal-access":"\\e017","unlock":"\\e016","unlock-alt":"\\e015","upload":"\\e014","user":"\\e013","video":"\\e012","video-alt":"\\e011","video-chat":"\\e010","view-mode":"\\e00f","vimeo":"\\e00e","volume-down":"\\e00d","volume-off":"\\e00c","volume-up":"\\e00b","w3c":"\\e00a","warning-sign":"\\e009","website":"\\e008","website-alt":"\\e007","wheelchair":"\\e006","wordpress":"\\e005","wrench":"\\e004","wrench-alt":"\\e003","youtube":"\\e002","zoom-in":"\\e001","zoom-out":"\\e000","vkontakte":"\\e10e"}},"FontAwesome":{"name":"FontAwesome","version":"4.1.0","prefix":"fa","site":"http://fontawesome.io/","path":"//netdna.bootstrapcdn.com/font-awesome/4.1.0/fonts/","basename":"fontawesome-webfont","svghash":"#fontawesomeregular","nativesize":"14px","icons":{"adjust":"\\f042","adn":"\\f170","align-center":"\\f037","align-justify":"\\f039","align-left":"\\f036","align-right":"\\f038","ambulance":"\\f0f9","anchor":"\\f13d","android":"\\f17b","angle-double-down":"\\f103","angle-double-left":"\\f100","angle-double-right":"\\f101","angle-double-up":"\\f102","angle-down":"\\f107","angle-left":"\\f104","angle-right":"\\f105","angle-up":"\\f106","apple":"\\f179","archive":"\\f187","arrow-circle-down":"\\f0ab","arrow-circle-left":"\\f0a8","arrow-circle-o-down":"\\f01a","arrow-circle-o-left":"\\f190","arrow-circle-o-right":"\\f18e","arrow-circle-o-up":"\\f01b","arrow-circle-right":"\\f0a9","arrow-circle-up":"\\f0aa","arrow-down":"\\f063","arrow-left":"\\f060","arrow-right":"\\f061","arrow-up":"\\f062","arrows":"\\f047","arrows-alt":"\\f0b2","arrows-h":"\\f07e","arrows-v":"\\f07d","asterisk":"\\f069","automobile":"\\f1b9","backward":"\\f04a","ban":"\\f05e","bank":"\\f19c","bar-chart-o":"\\f080","barcode":"\\f02a","bars":"\\f0c9","beer":"\\f0fc","behance":"\\f1b4","behance-square":"\\f1b5","bell":"\\f0f3","bell-o":"\\f0a2","bitbucket":"\\f171","bitbucket-square":"\\f172","bitcoin":"\\f15a","bold":"\\f032","bolt":"\\f0e7","bomb":"\\f1e2","book":"\\f02d","bookmark":"\\f02e","bookmark-o":"\\f097","briefcase":"\\f0b1","btc":"\\f15a","bug":"\\f188","building":"\\f1ad","building-o":"\\f0f7","bullhorn":"\\f0a1","bullseye":"\\f140","cab":"\\f1ba","calendar":"\\f073","calendar-o":"\\f133","camera":"\\f030","camera-retro":"\\f083","car":"\\f1b9","caret-down":"\\f0d7","caret-left":"\\f0d9","caret-right":"\\f0da","caret-square-o-down":"\\f150","caret-square-o-left":"\\f191","caret-square-o-right":"\\f152","caret-square-o-up":"\\f151","caret-up":"\\f0d8","certificate":"\\f0a3","chain":"\\f0c1","chain-broken":"\\f127","check":"\\f00c","check-circle":"\\f058","check-circle-o":"\\f05d","check-square":"\\f14a","check-square-o":"\\f046","chevron-circle-down":"\\f13a","chevron-circle-left":"\\f137","chevron-circle-right":"\\f138","chevron-circle-up":"\\f139","chevron-down":"\\f078","chevron-left":"\\f053","chevron-right":"\\f054","chevron-up":"\\f077","child":"\\f1ae","circle":"\\f111","circle-o":"\\f10c","circle-o-notch":"\\f1ce","circle-thin":"\\f1db","clipboard":"\\f0ea","clock-o":"\\f017","cloud":"\\f0c2","cloud-download":"\\f0ed","cloud-upload":"\\f0ee","cny":"\\f157","code":"\\f121","code-fork":"\\f126","codepen":"\\f1cb","coffee":"\\f0f4","cog":"\\f013","cogs":"\\f085","columns":"\\f0db","comment":"\\f075","comment-o":"\\f0e5","comments":"\\f086","comments-o":"\\f0e6","compass":"\\f14e","compress":"\\f066","copy":"\\f0c5","credit-card":"\\f09d","crop":"\\f125","crosshairs":"\\f05b","css3":"\\f13c","cube":"\\f1b2","cubes":"\\f1b3","cut":"\\f0c4","cutlery":"\\f0f5","dashboard":"\\f0e4","database":"\\f1c0","dedent":"\\f03b","delicious":"\\f1a5","desktop":"\\f108","deviantart":"\\f1bd","digg":"\\f1a6","dollar":"\\f155","dot-circle-o":"\\f192","download":"\\f019","dribbble":"\\f17d","dropbox":"\\f16b","drupal":"\\f1a9","edit":"\\f044","eject":"\\f052","ellipsis-h":"\\f141","ellipsis-v":"\\f142","empire":"\\f1d1","envelope":"\\f0e0","envelope-o":"\\f003","envelope-square":"\\f199","eraser":"\\f12d","eur":"\\f153","euro":"\\f153","exchange":"\\f0ec","exclamation":"\\f12a","exclamation-circle":"\\f06a","exclamation-triangle":"\\f071","expand":"\\f065","external-link":"\\f08e","external-link-square":"\\f14c","eye":"\\f06e","eye-slash":"\\f070","facebook":"\\f09a","facebook-square":"\\f082","fast-backward":"\\f049","fast-forward":"\\f050","fax":"\\f1ac","female":"\\f182","fighter-jet":"\\f0fb","file":"\\f15b","file-archive-o":"\\f1c6","file-audio-o":"\\f1c7","file-code-o":"\\f1c9","file-excel-o":"\\f1c3","file-image-o":"\\f1c5","file-movie-o":"\\f1c8","file-o":"\\f016","file-pdf-o":"\\f1c1","file-photo-o":"\\f1c5","file-picture-o":"\\f1c5","file-powerpoint-o":"\\f1c4","file-sound-o":"\\f1c7","file-text":"\\f15c","file-text-o":"\\f0f6","file-video-o":"\\f1c8","file-word-o":"\\f1c2","file-zip-o":"\\f1c6","files-o":"\\f0c5","film":"\\f008","filter":"\\f0b0","fire":"\\f06d","fire-extinguisher":"\\f134","flag":"\\f024","flag-checkered":"\\f11e","flag-o":"\\f11d","flash":"\\f0e7","flask":"\\f0c3","flickr":"\\f16e","floppy-o":"\\f0c7","folder":"\\f07b","folder-o":"\\f114","folder-open":"\\f07c","folder-open-o":"\\f115","font":"\\f031","forward":"\\f04e","foursquare":"\\f180","frown-o":"\\f119","gamepad":"\\f11b","gavel":"\\f0e3","gbp":"\\f154","ge":"\\f1d1","gear":"\\f013","gears":"\\f085","gift":"\\f06b","git":"\\f1d3","git-square":"\\f1d2","github":"\\f09b","github-alt":"\\f113","github-square":"\\f092","gittip":"\\f184","glass":"\\f000","globe":"\\f0ac","google":"\\f1a0","google-plus":"\\f0d5","google-plus-square":"\\f0d4","graduation-cap":"\\f19d","group":"\\f0c0","h-square":"\\f0fd","hacker-news":"\\f1d4","hand-o-down":"\\f0a7","hand-o-left":"\\f0a5","hand-o-right":"\\f0a4","hand-o-up":"\\f0a6","hdd-o":"\\f0a0","header":"\\f1dc","headphones":"\\f025","heart":"\\f004","heart-o":"\\f08a","history":"\\f1da","home":"\\f015","hospital-o":"\\f0f8","html5":"\\f13b","image":"\\f03e","inbox":"\\f01c","indent":"\\f03c","info":"\\f129","info-circle":"\\f05a","inr":"\\f156","instagram":"\\f16d","institution":"\\f19c","italic":"\\f033","joomla":"\\f1aa","jpy":"\\f157","jsfiddle":"\\f1cc","key":"\\f084","keyboard-o":"\\f11c","krw":"\\f159","language":"\\f1ab","laptop":"\\f109","leaf":"\\f06c","legal":"\\f0e3","lemon-o":"\\f094","level-down":"\\f149","level-up":"\\f148","life-bouy":"\\f1cd","life-ring":"\\f1cd","life-saver":"\\f1cd","lightbulb-o":"\\f0eb","link":"\\f0c1","linkedin":"\\f0e1","linkedin-square":"\\f08c","linux":"\\f17c","list":"\\f03a","list-alt":"\\f022","list-ol":"\\f0cb","list-ul":"\\f0ca","location-arrow":"\\f124","lock":"\\f023","long-arrow-down":"\\f175","long-arrow-left":"\\f177","long-arrow-right":"\\f178","long-arrow-up":"\\f176","magic":"\\f0d0","magnet":"\\f076","mail-forward":"\\f064","mail-reply":"\\f112","mail-reply-all":"\\f122","male":"\\f183","map-marker":"\\f041","maxcdn":"\\f136","medkit":"\\f0fa","meh-o":"\\f11a","microphone":"\\f130","microphone-slash":"\\f131","minus":"\\f068","minus-circle":"\\f056","minus-square":"\\f146","minus-square-o":"\\f147","mobile":"\\f10b","mobile-phone":"\\f10b","money":"\\f0d6","moon-o":"\\f186","mortar-board":"\\f19d","music":"\\f001","navicon":"\\f0c9","openid":"\\f19b","outdent":"\\f03b","pagelines":"\\f18c","paper-plane":"\\f1d8","paper-plane-o":"\\f1d9","paperclip":"\\f0c6","paragraph":"\\f1dd","paste":"\\f0ea","pause":"\\f04c","paw":"\\f1b0","pencil":"\\f040","pencil-square":"\\f14b","pencil-square-o":"\\f044","phone":"\\f095","phone-square":"\\f098","photo":"\\f03e","picture-o":"\\f03e","pied-piper":"\\f1a7","pied-piper-alt":"\\f1a8","pied-piper-square":"\\f1a7","pinterest":"\\f0d2","pinterest-square":"\\f0d3","plane":"\\f072","play":"\\f04b","play-circle":"\\f144","play-circle-o":"\\f01d","plus":"\\f067","plus-circle":"\\f055","plus-square":"\\f0fe","plus-square-o":"\\f196","power-off":"\\f011","print":"\\f02f","puzzle-piece":"\\f12e","qq":"\\f1d6","qrcode":"\\f029","question":"\\f128","question-circle":"\\f059","quote-left":"\\f10d","quote-right":"\\f10e","ra":"\\f1d0","random":"\\f074","rebel":"\\f1d0","recycle":"\\f1b8","reddit":"\\f1a1","reddit-square":"\\f1a2","refresh":"\\f021","renren":"\\f18b","reorder":"\\f0c9","repeat":"\\f01e","reply":"\\f112","reply-all":"\\f122","retweet":"\\f079","rmb":"\\f157","road":"\\f018","rocket":"\\f135","rotate-left":"\\f0e2","rotate-right":"\\f01e","rouble":"\\f158","rss":"\\f09e","rss-square":"\\f143","rub":"\\f158","ruble":"\\f158","rupee":"\\f156","save":"\\f0c7","scissors":"\\f0c4","search":"\\f002","search-minus":"\\f010","search-plus":"\\f00e","send":"\\f1d8","send-o":"\\f1d9","share":"\\f064","share-alt":"\\f1e0","share-alt-square":"\\f1e1","share-square":"\\f14d","share-square-o":"\\f045","shield":"\\f132","shopping-cart":"\\f07a","sign-in":"\\f090","sign-out":"\\f08b","signal":"\\f012","sitemap":"\\f0e8","skype":"\\f17e","slack":"\\f198","sliders":"\\f1de","smile-o":"\\f118","sort":"\\f0dc","sort-alpha-asc":"\\f15d","sort-alpha-desc":"\\f15e","sort-amount-asc":"\\f160","sort-amount-desc":"\\f161","sort-asc":"\\f0de","sort-desc":"\\f0dd","sort-down":"\\f0dd","sort-numeric-asc":"\\f162","sort-numeric-desc":"\\f163","sort-up":"\\f0de","soundcloud":"\\f1be","space-shuttle":"\\f197","spinner":"\\f110","spoon":"\\f1b1","spotify":"\\f1bc","square":"\\f0c8","square-o":"\\f096","stack-exchange":"\\f18d","stack-overflow":"\\f16c","star":"\\f005","star-half":"\\f089","star-half-empty":"\\f123","star-half-full":"\\f123","star-half-o":"\\f123","star-o":"\\f006","steam":"\\f1b6","steam-square":"\\f1b7","step-backward":"\\f048","step-forward":"\\f051","stethoscope":"\\f0f1","stop":"\\f04d","strikethrough":"\\f0cc","stumbleupon":"\\f1a4","stumbleupon-circle":"\\f1a3","subscript":"\\f12c","suitcase":"\\f0f2","sun-o":"\\f185","superscript":"\\f12b","support":"\\f1cd","table":"\\f0ce","tablet":"\\f10a","tachometer":"\\f0e4","tag":"\\f02b","tags":"\\f02c","tasks":"\\f0ae","taxi":"\\f1ba","tencent-weibo":"\\f1d5","terminal":"\\f120","text-height":"\\f034","text-width":"\\f035","th":"\\f00a","th-large":"\\f009","th-list":"\\f00b","thumb-tack":"\\f08d","thumbs-down":"\\f165","thumbs-o-down":"\\f088","thumbs-o-up":"\\f087","thumbs-up":"\\f164","ticket":"\\f145","times":"\\f00d","times-circle":"\\f057","times-circle-o":"\\f05c","tint":"\\f043","toggle-down":"\\f150","toggle-left":"\\f191","toggle-right":"\\f152","toggle-up":"\\f151","trash-o":"\\f014","tree":"\\f1bb","trello":"\\f181","trophy":"\\f091","truck":"\\f0d1","try":"\\f195","tumblr":"\\f173","tumblr-square":"\\f174","turkish-lira":"\\f195","twitter":"\\f099","twitter-square":"\\f081","umbrella":"\\f0e9","underline":"\\f0cd","undo":"\\f0e2","university":"\\f19c","unlink":"\\f127","unlock":"\\f09c","unlock-alt":"\\f13e","unsorted":"\\f0dc","upload":"\\f093","usd":"\\f155","user":"\\f007","user-md":"\\f0f0","users":"\\f0c0","video-camera":"\\f03d","vimeo-square":"\\f194","vine":"\\f1ca","vk":"\\f189","volume-down":"\\f027","volume-off":"\\f026","volume-up":"\\f028","warning":"\\f071","wechat":"\\f1d7","weibo":"\\f18a","weixin":"\\f1d7","wheelchair":"\\f193","windows":"\\f17a","won":"\\f159","wordpress":"\\f19a","wrench":"\\f0ad","xing":"\\f168","xing-square":"\\f169","yahoo":"\\f19e","yen":"\\f157","youtube":"\\f167","youtube-play":"\\f16a","youtube-square":"\\f166"}},"Ionicons":{"name":"Ionicons","version":"1.5.2","prefix":"ion","site":"http://ionicons.com/fonts","path":"//code.ionicframework.com/ionicons/1.5.2/fonts/","basename":"ionicons","svghash":"#Ionicons","nativesize":"32px","icons":{"alert":"\\f101","alert-circled":"\\f100","android-add":"\\f2c7","android-add-contact":"\\f2c6","android-alarm":"\\f2c8","android-archive":"\\f2c9","android-arrow-back":"\\f2ca","android-arrow-down-left":"\\f2cb","android-arrow-down-right":"\\f2cc","android-arrow-forward":"\\f30f","android-arrow-up-left":"\\f2cd","android-arrow-up-right":"\\f2ce","android-battery":"\\f2cf","android-book":"\\f2d0","android-calendar":"\\f2d1","android-call":"\\f2d2","android-camera":"\\f2d3","android-chat":"\\f2d4","android-checkmark":"\\f2d5","android-clock":"\\f2d6","android-close":"\\f2d7","android-contact":"\\f2d8","android-contacts":"\\f2d9","android-data":"\\f2da","android-developer":"\\f2db","android-display":"\\f2dc","android-download":"\\f2dd","android-drawer":"\\f310","android-dropdown":"\\f2de","android-earth":"\\f2df","android-folder":"\\f2e0","android-forums":"\\f2e1","android-friends":"\\f2e2","android-hand":"\\f2e3","android-image":"\\f2e4","android-inbox":"\\f2e5","android-information":"\\f2e6","android-keypad":"\\f2e7","android-lightbulb":"\\f2e8","android-locate":"\\f2e9","android-location":"\\f2ea","android-mail":"\\f2eb","android-microphone":"\\f2ec","android-mixer":"\\f2ed","android-more":"\\f2ee","android-note":"\\f2ef","android-playstore":"\\f2f0","android-printer":"\\f2f1","android-promotion":"\\f2f2","android-reminder":"\\f2f3","android-remove":"\\f2f4","android-search":"\\f2f5","android-send":"\\f2f6","android-settings":"\\f2f7","android-share":"\\f2f8","android-social":"\\f2fa","android-social-user":"\\f2f9","android-sort":"\\f2fb","android-stair-drawer":"\\f311","android-star":"\\f2fc","android-stopwatch":"\\f2fd","android-storage":"\\f2fe","android-system-back":"\\f2ff","android-system-home":"\\f300","android-system-windows":"\\f301","android-timer":"\\f302","android-trash":"\\f303","android-user-menu":"\\f312","android-volume":"\\f304","android-wifi":"\\f305","aperture":"\\f313","archive":"\\f102","arrow-down-a":"\\f103","arrow-down-b":"\\f104","arrow-down-c":"\\f105","arrow-expand":"\\f25e","arrow-graph-down-left":"\\f25f","arrow-graph-down-right":"\\f260","arrow-graph-up-left":"\\f261","arrow-graph-up-right":"\\f262","arrow-left-a":"\\f106","arrow-left-b":"\\f107","arrow-left-c":"\\f108","arrow-move":"\\f263","arrow-resize":"\\f264","arrow-return-left":"\\f265","arrow-return-right":"\\f266","arrow-right-a":"\\f109","arrow-right-b":"\\f10a","arrow-right-c":"\\f10b","arrow-shrink":"\\f267","arrow-swap":"\\f268","arrow-up-a":"\\f10c","arrow-up-b":"\\f10d","arrow-up-c":"\\f10e","asterisk":"\\f314","at":"\\f10f","bag":"\\f110","battery-charging":"\\f111","battery-empty":"\\f112","battery-full":"\\f113","battery-half":"\\f114","battery-low":"\\f115","beaker":"\\f269","beer":"\\f26a","bluetooth":"\\f116","bonfire":"\\f315","bookmark":"\\f26b","briefcase":"\\f26c","bug":"\\f2be","calculator":"\\f26d","calendar":"\\f117","camera":"\\f118","card":"\\f119","cash":"\\f316","chatbox":"\\f11b","chatbox-working":"\\f11a","chatboxes":"\\f11c","chatbubble":"\\f11e","chatbubble-working":"\\f11d","chatbubbles":"\\f11f","checkmark":"\\f122","checkmark-circled":"\\f120","checkmark-round":"\\f121","chevron-down":"\\f123","chevron-left":"\\f124","chevron-right":"\\f125","chevron-up":"\\f126","clipboard":"\\f127","clock":"\\f26e","close":"\\f12a","close-circled":"\\f128","close-round":"\\f129","closed-captioning":"\\f317","cloud":"\\f12b","code":"\\f271","code-download":"\\f26f","code-working":"\\f270","coffee":"\\f272","compass":"\\f273","compose":"\\f12c","connection-bars":"\\f274","contrast":"\\f275","cube":"\\f318","disc":"\\f12d","document":"\\f12f","document-text":"\\f12e","drag":"\\f130","earth":"\\f276","edit":"\\f2bf","egg":"\\f277","eject":"\\f131","email":"\\f132","eye":"\\f133","eye-disabled":"\\f306","female":"\\f278","filing":"\\f134","film-marker":"\\f135","fireball":"\\f319","flag":"\\f279","flame":"\\f31a","flash":"\\f137","flash-off":"\\f136","flask":"\\f138","folder":"\\f139","fork":"\\f27a","fork-repo":"\\f2c0","forward":"\\f13a","funnel":"\\f31b","game-controller-a":"\\f13b","game-controller-b":"\\f13c","gear-a":"\\f13d","gear-b":"\\f13e","grid":"\\f13f","hammer":"\\f27b","happy":"\\f31c","headphone":"\\f140","heart":"\\f141","heart-broken":"\\f31d","help":"\\f143","help-buoy":"\\f27c","help-circled":"\\f142","home":"\\f144","icecream":"\\f27d","icon-social-google-plus":"\\f146","icon-social-google-plus-outline":"\\f145","image":"\\f147","images":"\\f148","information":"\\f14a","information-circled":"\\f149","ionic":"\\f14b","ios7-alarm":"\\f14d","ios7-alarm-outline":"\\f14c","ios7-albums":"\\f14f","ios7-albums-outline":"\\f14e","ios7-americanfootball":"\\f31f","ios7-americanfootball-outline":"\\f31e","ios7-analytics":"\\f321","ios7-analytics-outline":"\\f320","ios7-arrow-back":"\\f150","ios7-arrow-down":"\\f151","ios7-arrow-forward":"\\f152","ios7-arrow-left":"\\f153","ios7-arrow-right":"\\f154","ios7-arrow-thin-down":"\\f27e","ios7-arrow-thin-left":"\\f27f","ios7-arrow-thin-right":"\\f280","ios7-arrow-thin-up":"\\f281","ios7-arrow-up":"\\f155","ios7-at":"\\f157","ios7-at-outline":"\\f156","ios7-barcode":"\\f323","ios7-barcode-outline":"\\f322","ios7-baseball":"\\f325","ios7-baseball-outline":"\\f324","ios7-basketball":"\\f327","ios7-basketball-outline":"\\f326","ios7-bell":"\\f159","ios7-bell-outline":"\\f158","ios7-bolt":"\\f15b","ios7-bolt-outline":"\\f15a","ios7-bookmarks":"\\f15d","ios7-bookmarks-outline":"\\f15c","ios7-box":"\\f15f","ios7-box-outline":"\\f15e","ios7-briefcase":"\\f283","ios7-briefcase-outline":"\\f282","ios7-browsers":"\\f161","ios7-browsers-outline":"\\f160","ios7-calculator":"\\f285","ios7-calculator-outline":"\\f284","ios7-calendar":"\\f163","ios7-calendar-outline":"\\f162","ios7-camera":"\\f165","ios7-camera-outline":"\\f164","ios7-cart":"\\f167","ios7-cart-outline":"\\f166","ios7-chatboxes":"\\f169","ios7-chatboxes-outline":"\\f168","ios7-chatbubble":"\\f16b","ios7-chatbubble-outline":"\\f16a","ios7-checkmark":"\\f16e","ios7-checkmark-empty":"\\f16c","ios7-checkmark-outline":"\\f16d","ios7-circle-filled":"\\f16f","ios7-circle-outline":"\\f170","ios7-clock":"\\f172","ios7-clock-outline":"\\f171","ios7-close":"\\f2bc","ios7-close-empty":"\\f2bd","ios7-close-outline":"\\f2bb","ios7-cloud":"\\f178","ios7-cloud-download":"\\f174","ios7-cloud-download-outline":"\\f173","ios7-cloud-outline":"\\f175","ios7-cloud-upload":"\\f177","ios7-cloud-upload-outline":"\\f176","ios7-cloudy":"\\f17a","ios7-cloudy-night":"\\f308","ios7-cloudy-night-outline":"\\f307","ios7-cloudy-outline":"\\f179","ios7-cog":"\\f17c","ios7-cog-outline":"\\f17b","ios7-compose":"\\f17e","ios7-compose-outline":"\\f17d","ios7-contact":"\\f180","ios7-contact-outline":"\\f17f","ios7-copy":"\\f182","ios7-copy-outline":"\\f181","ios7-download":"\\f184","ios7-download-outline":"\\f183","ios7-drag":"\\f185","ios7-email":"\\f187","ios7-email-outline":"\\f186","ios7-expand":"\\f30d","ios7-eye":"\\f189","ios7-eye-outline":"\\f188","ios7-fastforward":"\\f18b","ios7-fastforward-outline":"\\f18a","ios7-filing":"\\f18d","ios7-filing-outline":"\\f18c","ios7-film":"\\f18f","ios7-film-outline":"\\f18e","ios7-flag":"\\f191","ios7-flag-outline":"\\f190","ios7-folder":"\\f193","ios7-folder-outline":"\\f192","ios7-football":"\\f329","ios7-football-outline":"\\f328","ios7-gear":"\\f195","ios7-gear-outline":"\\f194","ios7-glasses":"\\f197","ios7-glasses-outline":"\\f196","ios7-heart":"\\f199","ios7-heart-outline":"\\f198","ios7-help":"\\f19c","ios7-help-empty":"\\f19a","ios7-help-outline":"\\f19b","ios7-home":"\\f32b","ios7-home-outline":"\\f32a","ios7-infinite":"\\f19e","ios7-infinite-outline":"\\f19d","ios7-information":"\\f1a1","ios7-information-empty":"\\f19f","ios7-information-outline":"\\f1a0","ios7-ionic-outline":"\\f1a2","ios7-keypad":"\\f1a4","ios7-keypad-outline":"\\f1a3","ios7-lightbulb":"\\f287","ios7-lightbulb-outline":"\\f286","ios7-location":"\\f1a6","ios7-location-outline":"\\f1a5","ios7-locked":"\\f1a8","ios7-locked-outline":"\\f1a7","ios7-loop":"\\f32d","ios7-loop-strong":"\\f32c","ios7-medkit":"\\f289","ios7-medkit-outline":"\\f288","ios7-mic":"\\f1ab","ios7-mic-off":"\\f1a9","ios7-mic-outline":"\\f1aa","ios7-minus":"\\f1ae","ios7-minus-empty":"\\f1ac","ios7-minus-outline":"\\f1ad","ios7-monitor":"\\f1b0","ios7-monitor-outline":"\\f1af","ios7-moon":"\\f1b2","ios7-moon-outline":"\\f1b1","ios7-more":"\\f1b4","ios7-more-outline":"\\f1b3","ios7-musical-note":"\\f1b5","ios7-musical-notes":"\\f1b6","ios7-navigate":"\\f1b8","ios7-navigate-outline":"\\f1b7","ios7-paper":"\\f32f","ios7-paper-outline":"\\f32e","ios7-paperplane":"\\f1ba","ios7-paperplane-outline":"\\f1b9","ios7-partlysunny":"\\f1bc","ios7-partlysunny-outline":"\\f1bb","ios7-pause":"\\f1be","ios7-pause-outline":"\\f1bd","ios7-paw":"\\f331","ios7-paw-outline":"\\f330","ios7-people":"\\f1c0","ios7-people-outline":"\\f1bf","ios7-person":"\\f1c2","ios7-person-outline":"\\f1c1","ios7-personadd":"\\f1c4","ios7-personadd-outline":"\\f1c3","ios7-photos":"\\f1c6","ios7-photos-outline":"\\f1c5","ios7-pie":"\\f28b","ios7-pie-outline":"\\f28a","ios7-play":"\\f1c8","ios7-play-outline":"\\f1c7","ios7-plus":"\\f1cb","ios7-plus-empty":"\\f1c9","ios7-plus-outline":"\\f1ca","ios7-pricetag":"\\f28d","ios7-pricetag-outline":"\\f28c","ios7-pricetags":"\\f333","ios7-pricetags-outline":"\\f332","ios7-printer":"\\f1cd","ios7-printer-outline":"\\f1cc","ios7-pulse":"\\f335","ios7-pulse-strong":"\\f334","ios7-rainy":"\\f1cf","ios7-rainy-outline":"\\f1ce","ios7-recording":"\\f1d1","ios7-recording-outline":"\\f1d0","ios7-redo":"\\f1d3","ios7-redo-outline":"\\f1d2","ios7-refresh":"\\f1d6","ios7-refresh-empty":"\\f1d4","ios7-refresh-outline":"\\f1d5","ios7-reload":"\\f28e","ios7-reloading":"\\f28e","ios7-reverse-camera":"\\f337","ios7-reverse-camera-outline":"\\f336","ios7-rewind":"\\f1d8","ios7-rewind-outline":"\\f1d7","ios7-search":"\\f1da","ios7-search-strong":"\\f1d9","ios7-settings":"\\f339","ios7-settings-strong":"\\f338","ios7-shrink":"\\f30e","ios7-skipbackward":"\\f1dc","ios7-skipbackward-outline":"\\f1db","ios7-skipforward":"\\f1de","ios7-skipforward-outline":"\\f1dd","ios7-snowy":"\\f309","ios7-speedometer":"\\f290","ios7-speedometer-outline":"\\f28f","ios7-star":"\\f1e0","ios7-star-half":"\\f33a","ios7-star-outline":"\\f1df","ios7-stopwatch":"\\f1e2","ios7-stopwatch-outline":"\\f1e1","ios7-sunny":"\\f1e4","ios7-sunny-outline":"\\f1e3","ios7-telephone":"\\f1e6","ios7-telephone-outline":"\\f1e5","ios7-tennisball":"\\f33c","ios7-tennisball-outline":"\\f33b","ios7-thunderstorm":"\\f1e8","ios7-thunderstorm-outline":"\\f1e7","ios7-time":"\\f292","ios7-time-outline":"\\f291","ios7-timer":"\\f1ea","ios7-timer-outline":"\\f1e9","ios7-toggle":"\\f33e","ios7-toggle-outline":"\\f33d","ios7-trash":"\\f1ec","ios7-trash-outline":"\\f1eb","ios7-undo":"\\f1ee","ios7-undo-outline":"\\f1ed","ios7-unlocked":"\\f1f0","ios7-unlocked-outline":"\\f1ef","ios7-upload":"\\f1f2","ios7-upload-outline":"\\f1f1","ios7-videocam":"\\f1f4","ios7-videocam-outline":"\\f1f3","ios7-volume-high":"\\f1f5","ios7-volume-low":"\\f1f6","ios7-wineglass":"\\f294","ios7-wineglass-outline":"\\f293","ios7-world":"\\f1f8","ios7-world-outline":"\\f1f7","ipad":"\\f1f9","iphone":"\\f1fa","ipod":"\\f1fb","jet":"\\f295","key":"\\f296","knife":"\\f297","laptop":"\\f1fc","leaf":"\\f1fd","levels":"\\f298","lightbulb":"\\f299","link":"\\f1fe","load-a":"\\f29a","load-b":"\\f29b","load-c":"\\f29c","load-d":"\\f29d","loading-a":"\\f29a","loading-b":"\\f29b","loading-c":"\\f29c","loading-d":"\\f29d","location":"\\f1ff","locked":"\\f200","log-in":"\\f29e","log-out":"\\f29f","loop":"\\f201","looping":"\\f201","magnet":"\\f2a0","male":"\\f2a1","man":"\\f202","map":"\\f203","medkit":"\\f2a2","merge":"\\f33f","mic-a":"\\f204","mic-b":"\\f205","mic-c":"\\f206","minus":"\\f209","minus-circled":"\\f207","minus-round":"\\f208","model-s":"\\f2c1","monitor":"\\f20a","more":"\\f20b","mouse":"\\f340","music-note":"\\f20c","navicon":"\\f20e","navicon-round":"\\f20d","navigate":"\\f2a3","network":"\\f341","no-smoking":"\\f2c2","nuclear":"\\f2a4","outlet":"\\f342","paper-airplane":"\\f2c3","paperclip":"\\f20f","pause":"\\f210","person":"\\f213","person-add":"\\f211","person-stalker":"\\f212","pie-graph":"\\f2a5","pin":"\\f2a6","pinpoint":"\\f2a7","pizza":"\\f2a8","plane":"\\f214","planet":"\\f343","play":"\\f215","playstation":"\\f30a","plus":"\\f218","plus-circled":"\\f216","plus-round":"\\f217","podium":"\\f344","pound":"\\f219","power":"\\f2a9","pricetag":"\\f2aa","pricetags":"\\f2ab","printer":"\\f21a","pull-request":"\\f345","qr-scanner":"\\f346","quote":"\\f347","radio-waves":"\\f2ac","record":"\\f21b","refresh":"\\f21c","refreshing":"\\f21c","reply":"\\f21e","reply-all":"\\f21d","ribbon-a":"\\f348","ribbon-b":"\\f349","sad":"\\f34a","scissors":"\\f34b","search":"\\f21f","settings":"\\f2ad","share":"\\f220","shuffle":"\\f221","skip-backward":"\\f222","skip-forward":"\\f223","social-android":"\\f225","social-android-outline":"\\f224","social-apple":"\\f227","social-apple-outline":"\\f226","social-bitcoin":"\\f2af","social-bitcoin-outline":"\\f2ae","social-buffer":"\\f229","social-buffer-outline":"\\f228","social-designernews":"\\f22b","social-designernews-outline":"\\f22a","social-dribbble":"\\f22d","social-dribbble-outline":"\\f22c","social-dropbox":"\\f22f","social-dropbox-outline":"\\f22e","social-facebook":"\\f231","social-facebook-outline":"\\f230","social-foursquare":"\\f34d","social-foursquare-outline":"\\f34c","social-freebsd-devil":"\\f2c4","social-github":"\\f233","social-github-outline":"\\f232","social-google":"\\f34f","social-google-outline":"\\f34e","social-googleplus":"\\f235","social-googleplus-outline":"\\f234","social-hackernews":"\\f237","social-hackernews-outline":"\\f236","social-instagram":"\\f351","social-instagram-outline":"\\f350","social-linkedin":"\\f239","social-linkedin-outline":"\\f238","social-pinterest":"\\f2b1","social-pinterest-outline":"\\f2b0","social-reddit":"\\f23b","social-reddit-outline":"\\f23a","social-rss":"\\f23d","social-rss-outline":"\\f23c","social-skype":"\\f23f","social-skype-outline":"\\f23e","social-tumblr":"\\f241","social-tumblr-outline":"\\f240","social-tux":"\\f2c5","social-twitter":"\\f243","social-twitter-outline":"\\f242","social-usd":"\\f353","social-usd-outline":"\\f352","social-vimeo":"\\f245","social-vimeo-outline":"\\f244","social-windows":"\\f247","social-windows-outline":"\\f246","social-wordpress":"\\f249","social-wordpress-outline":"\\f248","social-yahoo":"\\f24b","social-yahoo-outline":"\\f24a","social-youtube":"\\f24d","social-youtube-outline":"\\f24c","speakerphone":"\\f2b2","speedometer":"\\f2b3","spoon":"\\f2b4","star":"\\f24e","stats-bars":"\\f2b5","steam":"\\f30b","stop":"\\f24f","thermometer":"\\f2b6","thumbsdown":"\\f250","thumbsup":"\\f251","toggle":"\\f355","toggle-filled":"\\f354","trash-a":"\\f252","trash-b":"\\f253","trophy":"\\f356","umbrella":"\\f2b7","university":"\\f357","unlocked":"\\f254","upload":"\\f255","usb":"\\f2b8","videocamera":"\\f256","volume-high":"\\f257","volume-low":"\\f258","volume-medium":"\\f259","volume-mute":"\\f25a","wand":"\\f358","waterdrop":"\\f25b","wifi":"\\f25c","wineglass":"\\f2b9","woman":"\\f25d","wrench":"\\f2ba","xbox":"\\f30c"}}}
{"Elusive":{"name":"Elusive","version":"1.5.0","prefix":"el","site":"http://shoestrap.org/downloads/elusive-icons-webfont/","path":"http://aristath.github.io/elusive-iconfont/assets/elusive-font/font/","basename":"Elusive-Icons","svghash":"#Elusive-Icons","nativesize":"14px","icons":{"address-book":"\\e729","address-book-alt":"\\e728","adjust":"\\e727","adjust-alt":"\\e726","adult":"\\e725","align-center":"\\e724","align-justify":"\\e723","align-left":"\\e722","align-right":"\\e721","arrow-down":"\\e720","arrow-left":"\\e71f","arrow-right":"\\e71e","arrow-up":"\\e71d","asl":"\\e71c","asterisk":"\\e72a","backward":"\\e71b","ban-circle":"\\e71a","barcode":"\\e719","behance":"\\e718","bell":"\\e717","blind":"\\e716","blogger":"\\e715","bold":"\\e714","book":"\\e713","bookmark":"\\e712","bookmark-empty":"\\e711","braille":"\\e710","briefcase":"\\e70f","broom":"\\e70e","brush":"\\e70d","bulb":"\\e70c","bullhorn":"\\e70b","calendar":"\\e70a","calendar-sign":"\\e709","camera":"\\e708","car":"\\e707","caret-down":"\\e706","caret-left":"\\e705","caret-right":"\\e704","caret-up":"\\e703","cc":"\\e702","certificate":"\\e701","check":"\\e700","check-empty":"\\e6ff","chevron-down":"\\e6fe","chevron-left":"\\e6fd","chevron-right":"\\e6fc","chevron-up":"\\e6fb","child":"\\e6fa","circle-arrow-down":"\\e6f9","circle-arrow-left":"\\e6f8","circle-arrow-right":"\\e6f7","circle-arrow-up":"\\e6f6","cloud":"\\e6f5","cloud-alt":"\\e6f4","cog":"\\e6f3","cog-alt":"\\e6f2","cogs":"\\e6f1","comment":"\\e6f0","comment-alt":"\\e6ef","compass":"\\e6ee","compass-alt":"\\e6ed","credit-card":"\\e6ec","css":"\\e6eb","dashboard":"\\e6ea","delicious":"\\e6e9","deviantart":"\\e6e8","digg":"\\e6e7","download":"\\e6e6","download-alt":"\\e6e5","dribbble":"\\e6e4","edit":"\\e6e3","eject":"\\e6e2","envelope":"\\e6e1","envelope-alt":"\\e6e0","error":"\\e6df","error-alt":"\\e6de","eur":"\\e6dd","exclamation-sign":"\\e6dc","eye-close":"\\e6db","eye-open":"\\e6da","facebook":"\\e6d9","facetime-video":"\\e6d8","fast-backward":"\\e6d7","fast-forward":"\\e6d6","female":"\\e6d5","file":"\\e6d4","file-alt":"\\e6d3","file-edit":"\\e6d2","file-edit-alt":"\\e6d1","file-new":"\\e6d0","file-new-alt":"\\e6cf","film":"\\e6ce","filter":"\\e6cd","fire":"\\e6cc","flag":"\\e6cb","flag-alt":"\\e6ca","flickr":"\\e6c9","folder":"\\e6c8","folder-close":"\\e6c7","folder-open":"\\e6c6","folder-sign":"\\e6c5","font":"\\e6c4","fontsize":"\\e6c3","fork":"\\e6c2","forward":"\\e6c1","forward-alt":"\\e6c0","foursquare":"\\e6bf","friendfeed":"\\e6be","friendfeed-rect":"\\e6bd","fullscreen":"\\e6bc","gbp":"\\e6bb","gift":"\\e6ba","github":"\\e6b9","github-text":"\\e6b8","glass":"\\e6b7","glasses":"\\e6b6","globe":"\\e6b5","globe-alt":"\\e6b4","googleplus":"\\e6b3","graph":"\\e6b2","graph-alt":"\\e6b1","group":"\\e6b0","group-alt":"\\e6af","guidedog":"\\e6ae","hand-down":"\\e6ad","hand-left":"\\e6ac","hand-right":"\\e6ab","hand-up":"\\e6aa","hdd":"\\e6a9","headphones":"\\e6a8","hearing-impaired":"\\e6a7","heart":"\\e6a6","heart-alt":"\\e6a5","heart-empty":"\\e6a4","home":"\\e6a3","home-alt":"\\e6a2","hourglass":"\\e6a1","idea":"\\e6a0","idea-alt":"\\e69f","inbox":"\\e69e","inbox-alt":"\\e69d","inbox-box":"\\e69c","indent-left":"\\e69b","indent-right":"\\e69a","info-sign":"\\e699","instagram":"\\e698","iphone-home":"\\e697","italic":"\\e696","key":"\\e695","laptop":"\\e694","laptop-alt":"\\e693","lastfm":"\\e692","leaf":"\\e691","lines":"\\e690","link":"\\e68f","linkedin":"\\e68e","list":"\\e68d","list-alt":"\\e68c","livejournal":"\\e68b","lock":"\\e68a","lock-alt":"\\e689","magic":"\\e688","magnet":"\\e687","male":"\\e686","map-marker":"\\e685","map-marker-alt":"\\e684","mic":"\\e683","mic-alt":"\\e682","minus":"\\e681","minus-sign":"\\e680","move":"\\e67f","music":"\\e67e","myspace":"\\e67d","network":"\\e67c","off":"\\e67b","ok":"\\e67a","ok-circle":"\\e679","ok-sign":"\\e678","opensource":"\\e677","paper-clip":"\\e676","paper-clip-alt":"\\e675","path":"\\e674","pause":"\\e673","pause-alt":"\\e672","pencil":"\\e671","pencil-alt":"\\e670","person":"\\e66f","phone":"\\e66e","phone-alt":"\\e66d","photo":"\\e66c","photo-alt":"\\e66b","picasa":"\\e66a","picture":"\\e669","pinterest":"\\e668","plane":"\\e667","play":"\\e666","play-alt":"\\e665","play-circle":"\\e664","plus":"\\e663","plus-sign":"\\e662","podcast":"\\e661","print":"\\e660","puzzle":"\\e65f","qrcode":"\\e65e","question":"\\e65d","question-sign":"\\e65c","quotes":"\\e65b","quotes-alt":"\\e65a","random":"\\e659","record":"\\e658","reddit":"\\e657","refresh":"\\e656","remove":"\\e655","remove-circle":"\\e654","remove-sign":"\\e653","repeat":"\\e652","repeat-alt":"\\e651","resize-full":"\\e650","resize-horizontal":"\\e64f","resize-small":"\\e64e","resize-vertical":"\\e64d","return-key":"\\e64c","retweet":"\\e64b","reverse-alt":"\\e64a","road":"\\e649","rss":"\\e648","scissors":"\\e647","screen":"\\e646","screen-alt":"\\e645","screenshot":"\\e644","search":"\\e643","search-alt":"\\e642","share":"\\e641","share-alt":"\\e640","shopping-cart":"\\e63f","shopping-cart-sign":"\\e63e","signal":"\\e63d","skype":"\\e63c","slideshare":"\\e63b","smiley":"\\e63a","smiley-alt":"\\e639","soundcloud":"\\e638","speaker":"\\e637","spotify":"\\e636","stackoverflow":"\\e635","star":"\\e634","star-alt":"\\e633","star-empty":"\\e632","step-backward":"\\e631","step-forward":"\\e630","stop":"\\e62f","stop-alt":"\\e62e","stumbleupon":"\\e62d","tag":"\\e62c","tags":"\\e62b","tasks":"\\e62a","text-height":"\\e629","text-width":"\\e628","th":"\\e627","th-large":"\\e626","th-list":"\\e625","thumbs-down":"\\e624","thumbs-up":"\\e623","time":"\\e622","time-alt":"\\e621","tint":"\\e620","torso":"\\e61f","trash":"\\e61e","trash-alt":"\\e61d","tumblr":"\\e61c","twitter":"\\e61b","universal-access":"\\e61a","unlock":"\\e619","unlock-alt":"\\e618","upload":"\\e617","usd":"\\e616","user":"\\e615","viadeo":"\\e614","video":"\\e613","video-alt":"\\e612","video-chat":"\\e611","view-mode":"\\e610","vimeo":"\\e60f","vkontakte":"\\e60e","volume-down":"\\e60d","volume-off":"\\e60c","volume-up":"\\e60b","w3c":"\\e60a","warning-sign":"\\e609","website":"\\e608","website-alt":"\\e607","wheelchair":"\\e606","wordpress":"\\e605","wrench":"\\e604","wrench-alt":"\\e603","youtube":"\\e602","zoom-in":"\\e601","zoom-out":"\\e600"}},"FontAwesome":{"name":"FontAwesome","version":"4.1.0","prefix":"fa","site":"http://fontawesome.io/","path":"//netdna.bootstrapcdn.com/font-awesome/4.1.0/fonts/","basename":"fontawesome-webfont","svghash":"#fontawesomeregular","nativesize":"14px","icons":{"adjust":"\\f042","adn":"\\f170","align-center":"\\f037","align-justify":"\\f039","align-left":"\\f036","align-right":"\\f038","ambulance":"\\f0f9","anchor":"\\f13d","android":"\\f17b","angle-double-down":"\\f103","angle-double-left":"\\f100","angle-double-right":"\\f101","angle-double-up":"\\f102","angle-down":"\\f107","angle-left":"\\f104","angle-right":"\\f105","angle-up":"\\f106","apple":"\\f179","archive":"\\f187","arrow-circle-down":"\\f0ab","arrow-circle-left":"\\f0a8","arrow-circle-o-down":"\\f01a","arrow-circle-o-left":"\\f190","arrow-circle-o-right":"\\f18e","arrow-circle-o-up":"\\f01b","arrow-circle-right":"\\f0a9","arrow-circle-up":"\\f0aa","arrow-down":"\\f063","arrow-left":"\\f060","arrow-right":"\\f061","arrow-up":"\\f062","arrows":"\\f047","arrows-alt":"\\f0b2","arrows-h":"\\f07e","arrows-v":"\\f07d","asterisk":"\\f069","automobile":"\\f1b9","backward":"\\f04a","ban":"\\f05e","bank":"\\f19c","bar-chart-o":"\\f080","barcode":"\\f02a","bars":"\\f0c9","beer":"\\f0fc","behance":"\\f1b4","behance-square":"\\f1b5","bell":"\\f0f3","bell-o":"\\f0a2","bitbucket":"\\f171","bitbucket-square":"\\f172","bitcoin":"\\f15a","bold":"\\f032","bolt":"\\f0e7","bomb":"\\f1e2","book":"\\f02d","bookmark":"\\f02e","bookmark-o":"\\f097","briefcase":"\\f0b1","btc":"\\f15a","bug":"\\f188","building":"\\f1ad","building-o":"\\f0f7","bullhorn":"\\f0a1","bullseye":"\\f140","cab":"\\f1ba","calendar":"\\f073","calendar-o":"\\f133","camera":"\\f030","camera-retro":"\\f083","car":"\\f1b9","caret-down":"\\f0d7","caret-left":"\\f0d9","caret-right":"\\f0da","caret-square-o-down":"\\f150","caret-square-o-left":"\\f191","caret-square-o-right":"\\f152","caret-square-o-up":"\\f151","caret-up":"\\f0d8","certificate":"\\f0a3","chain":"\\f0c1","chain-broken":"\\f127","check":"\\f00c","check-circle":"\\f058","check-circle-o":"\\f05d","check-square":"\\f14a","check-square-o":"\\f046","chevron-circle-down":"\\f13a","chevron-circle-left":"\\f137","chevron-circle-right":"\\f138","chevron-circle-up":"\\f139","chevron-down":"\\f078","chevron-left":"\\f053","chevron-right":"\\f054","chevron-up":"\\f077","child":"\\f1ae","circle":"\\f111","circle-o":"\\f10c","circle-o-notch":"\\f1ce","circle-thin":"\\f1db","clipboard":"\\f0ea","clock-o":"\\f017","cloud":"\\f0c2","cloud-download":"\\f0ed","cloud-upload":"\\f0ee","cny":"\\f157","code":"\\f121","code-fork":"\\f126","codepen":"\\f1cb","coffee":"\\f0f4","cog":"\\f013","cogs":"\\f085","columns":"\\f0db","comment":"\\f075","comment-o":"\\f0e5","comments":"\\f086","comments-o":"\\f0e6","compass":"\\f14e","compress":"\\f066","copy":"\\f0c5","credit-card":"\\f09d","crop":"\\f125","crosshairs":"\\f05b","css3":"\\f13c","cube":"\\f1b2","cubes":"\\f1b3","cut":"\\f0c4","cutlery":"\\f0f5","dashboard":"\\f0e4","database":"\\f1c0","dedent":"\\f03b","delicious":"\\f1a5","desktop":"\\f108","deviantart":"\\f1bd","digg":"\\f1a6","dollar":"\\f155","dot-circle-o":"\\f192","download":"\\f019","dribbble":"\\f17d","dropbox":"\\f16b","drupal":"\\f1a9","edit":"\\f044","eject":"\\f052","ellipsis-h":"\\f141","ellipsis-v":"\\f142","empire":"\\f1d1","envelope":"\\f0e0","envelope-o":"\\f003","envelope-square":"\\f199","eraser":"\\f12d","eur":"\\f153","euro":"\\f153","exchange":"\\f0ec","exclamation":"\\f12a","exclamation-circle":"\\f06a","exclamation-triangle":"\\f071","expand":"\\f065","external-link":"\\f08e","external-link-square":"\\f14c","eye":"\\f06e","eye-slash":"\\f070","facebook":"\\f09a","facebook-square":"\\f082","fast-backward":"\\f049","fast-forward":"\\f050","fax":"\\f1ac","female":"\\f182","fighter-jet":"\\f0fb","file":"\\f15b","file-archive-o":"\\f1c6","file-audio-o":"\\f1c7","file-code-o":"\\f1c9","file-excel-o":"\\f1c3","file-image-o":"\\f1c5","file-movie-o":"\\f1c8","file-o":"\\f016","file-pdf-o":"\\f1c1","file-photo-o":"\\f1c5","file-picture-o":"\\f1c5","file-powerpoint-o":"\\f1c4","file-sound-o":"\\f1c7","file-text":"\\f15c","file-text-o":"\\f0f6","file-video-o":"\\f1c8","file-word-o":"\\f1c2","file-zip-o":"\\f1c6","files-o":"\\f0c5","film":"\\f008","filter":"\\f0b0","fire":"\\f06d","fire-extinguisher":"\\f134","flag":"\\f024","flag-checkered":"\\f11e","flag-o":"\\f11d","flash":"\\f0e7","flask":"\\f0c3","flickr":"\\f16e","floppy-o":"\\f0c7","folder":"\\f07b","folder-o":"\\f114","folder-open":"\\f07c","folder-open-o":"\\f115","font":"\\f031","forward":"\\f04e","foursquare":"\\f180","frown-o":"\\f119","gamepad":"\\f11b","gavel":"\\f0e3","gbp":"\\f154","ge":"\\f1d1","gear":"\\f013","gears":"\\f085","gift":"\\f06b","git":"\\f1d3","git-square":"\\f1d2","github":"\\f09b","github-alt":"\\f113","github-square":"\\f092","gittip":"\\f184","glass":"\\f000","globe":"\\f0ac","google":"\\f1a0","google-plus":"\\f0d5","google-plus-square":"\\f0d4","graduation-cap":"\\f19d","group":"\\f0c0","h-square":"\\f0fd","hacker-news":"\\f1d4","hand-o-down":"\\f0a7","hand-o-left":"\\f0a5","hand-o-right":"\\f0a4","hand-o-up":"\\f0a6","hdd-o":"\\f0a0","header":"\\f1dc","headphones":"\\f025","heart":"\\f004","heart-o":"\\f08a","history":"\\f1da","home":"\\f015","hospital-o":"\\f0f8","html5":"\\f13b","image":"\\f03e","inbox":"\\f01c","indent":"\\f03c","info":"\\f129","info-circle":"\\f05a","inr":"\\f156","instagram":"\\f16d","institution":"\\f19c","italic":"\\f033","joomla":"\\f1aa","jpy":"\\f157","jsfiddle":"\\f1cc","key":"\\f084","keyboard-o":"\\f11c","krw":"\\f159","language":"\\f1ab","laptop":"\\f109","leaf":"\\f06c","legal":"\\f0e3","lemon-o":"\\f094","level-down":"\\f149","level-up":"\\f148","life-bouy":"\\f1cd","life-ring":"\\f1cd","life-saver":"\\f1cd","lightbulb-o":"\\f0eb","link":"\\f0c1","linkedin":"\\f0e1","linkedin-square":"\\f08c","linux":"\\f17c","list":"\\f03a","list-alt":"\\f022","list-ol":"\\f0cb","list-ul":"\\f0ca","location-arrow":"\\f124","lock":"\\f023","long-arrow-down":"\\f175","long-arrow-left":"\\f177","long-arrow-right":"\\f178","long-arrow-up":"\\f176","magic":"\\f0d0","magnet":"\\f076","mail-forward":"\\f064","mail-reply":"\\f112","mail-reply-all":"\\f122","male":"\\f183","map-marker":"\\f041","maxcdn":"\\f136","medkit":"\\f0fa","meh-o":"\\f11a","microphone":"\\f130","microphone-slash":"\\f131","minus":"\\f068","minus-circle":"\\f056","minus-square":"\\f146","minus-square-o":"\\f147","mobile":"\\f10b","mobile-phone":"\\f10b","money":"\\f0d6","moon-o":"\\f186","mortar-board":"\\f19d","music":"\\f001","navicon":"\\f0c9","openid":"\\f19b","outdent":"\\f03b","pagelines":"\\f18c","paper-plane":"\\f1d8","paper-plane-o":"\\f1d9","paperclip":"\\f0c6","paragraph":"\\f1dd","paste":"\\f0ea","pause":"\\f04c","paw":"\\f1b0","pencil":"\\f040","pencil-square":"\\f14b","pencil-square-o":"\\f044","phone":"\\f095","phone-square":"\\f098","photo":"\\f03e","picture-o":"\\f03e","pied-piper":"\\f1a7","pied-piper-alt":"\\f1a8","pied-piper-square":"\\f1a7","pinterest":"\\f0d2","pinterest-square":"\\f0d3","plane":"\\f072","play":"\\f04b","play-circle":"\\f144","play-circle-o":"\\f01d","plus":"\\f067","plus-circle":"\\f055","plus-square":"\\f0fe","plus-square-o":"\\f196","power-off":"\\f011","print":"\\f02f","puzzle-piece":"\\f12e","qq":"\\f1d6","qrcode":"\\f029","question":"\\f128","question-circle":"\\f059","quote-left":"\\f10d","quote-right":"\\f10e","ra":"\\f1d0","random":"\\f074","rebel":"\\f1d0","recycle":"\\f1b8","reddit":"\\f1a1","reddit-square":"\\f1a2","refresh":"\\f021","renren":"\\f18b","reorder":"\\f0c9","repeat":"\\f01e","reply":"\\f112","reply-all":"\\f122","retweet":"\\f079","rmb":"\\f157","road":"\\f018","rocket":"\\f135","rotate-left":"\\f0e2","rotate-right":"\\f01e","rouble":"\\f158","rss":"\\f09e","rss-square":"\\f143","rub":"\\f158","ruble":"\\f158","rupee":"\\f156","save":"\\f0c7","scissors":"\\f0c4","search":"\\f002","search-minus":"\\f010","search-plus":"\\f00e","send":"\\f1d8","send-o":"\\f1d9","share":"\\f064","share-alt":"\\f1e0","share-alt-square":"\\f1e1","share-square":"\\f14d","share-square-o":"\\f045","shield":"\\f132","shopping-cart":"\\f07a","sign-in":"\\f090","sign-out":"\\f08b","signal":"\\f012","sitemap":"\\f0e8","skype":"\\f17e","slack":"\\f198","sliders":"\\f1de","smile-o":"\\f118","sort":"\\f0dc","sort-alpha-asc":"\\f15d","sort-alpha-desc":"\\f15e","sort-amount-asc":"\\f160","sort-amount-desc":"\\f161","sort-asc":"\\f0de","sort-desc":"\\f0dd","sort-down":"\\f0dd","sort-numeric-asc":"\\f162","sort-numeric-desc":"\\f163","sort-up":"\\f0de","soundcloud":"\\f1be","space-shuttle":"\\f197","spinner":"\\f110","spoon":"\\f1b1","spotify":"\\f1bc","square":"\\f0c8","square-o":"\\f096","stack-exchange":"\\f18d","stack-overflow":"\\f16c","star":"\\f005","star-half":"\\f089","star-half-empty":"\\f123","star-half-full":"\\f123","star-half-o":"\\f123","star-o":"\\f006","steam":"\\f1b6","steam-square":"\\f1b7","step-backward":"\\f048","step-forward":"\\f051","stethoscope":"\\f0f1","stop":"\\f04d","strikethrough":"\\f0cc","stumbleupon":"\\f1a4","stumbleupon-circle":"\\f1a3","subscript":"\\f12c","suitcase":"\\f0f2","sun-o":"\\f185","superscript":"\\f12b","support":"\\f1cd","table":"\\f0ce","tablet":"\\f10a","tachometer":"\\f0e4","tag":"\\f02b","tags":"\\f02c","tasks":"\\f0ae","taxi":"\\f1ba","tencent-weibo":"\\f1d5","terminal":"\\f120","text-height":"\\f034","text-width":"\\f035","th":"\\f00a","th-large":"\\f009","th-list":"\\f00b","thumb-tack":"\\f08d","thumbs-down":"\\f165","thumbs-o-down":"\\f088","thumbs-o-up":"\\f087","thumbs-up":"\\f164","ticket":"\\f145","times":"\\f00d","times-circle":"\\f057","times-circle-o":"\\f05c","tint":"\\f043","toggle-down":"\\f150","toggle-left":"\\f191","toggle-right":"\\f152","toggle-up":"\\f151","trash-o":"\\f014","tree":"\\f1bb","trello":"\\f181","trophy":"\\f091","truck":"\\f0d1","try":"\\f195","tumblr":"\\f173","tumblr-square":"\\f174","turkish-lira":"\\f195","twitter":"\\f099","twitter-square":"\\f081","umbrella":"\\f0e9","underline":"\\f0cd","undo":"\\f0e2","university":"\\f19c","unlink":"\\f127","unlock":"\\f09c","unlock-alt":"\\f13e","unsorted":"\\f0dc","upload":"\\f093","usd":"\\f155","user":"\\f007","user-md":"\\f0f0","users":"\\f0c0","video-camera":"\\f03d","vimeo-square":"\\f194","vine":"\\f1ca","vk":"\\f189","volume-down":"\\f027","volume-off":"\\f026","volume-up":"\\f028","warning":"\\f071","wechat":"\\f1d7","weibo":"\\f18a","weixin":"\\f1d7","wheelchair":"\\f193","windows":"\\f17a","won":"\\f159","wordpress":"\\f19a","wrench":"\\f0ad","xing":"\\f168","xing-square":"\\f169","yahoo":"\\f19e","yen":"\\f157","youtube":"\\f167","youtube-play":"\\f16a","youtube-square":"\\f166"}},"GeneralFoundicons":{"name":"GeneralFoundicons","version":"1.5.2","prefix":"fig","site":"http://zurb.com/playground/foundation-icon-fonts-3","path":"https://cdn.rawgit.com/zurb/foundation-icons/master/foundation_icons_general/fonts/","basename":"general_foundicons","svghash":"#GeneralFoundicons","nativesize":"32px","icons":{"alert":"\\f101","alert-circled":"\\f100","android-add":"\\f2c7","android-add-contact":"\\f2c6","android-alarm":"\\f2c8","android-archive":"\\f2c9","android-arrow-back":"\\f2ca","android-arrow-down-left":"\\f2cb","android-arrow-down-right":"\\f2cc","android-arrow-forward":"\\f30f","android-arrow-up-left":"\\f2cd","android-arrow-up-right":"\\f2ce","android-battery":"\\f2cf","android-book":"\\f2d0","android-calendar":"\\f2d1","android-call":"\\f2d2","android-camera":"\\f2d3","android-chat":"\\f2d4","android-checkmark":"\\f2d5","android-clock":"\\f2d6","android-close":"\\f2d7","android-contact":"\\f2d8","android-contacts":"\\f2d9","android-data":"\\f2da","android-developer":"\\f2db","android-display":"\\f2dc","android-download":"\\f2dd","android-drawer":"\\f310","android-dropdown":"\\f2de","android-earth":"\\f2df","android-folder":"\\f2e0","android-forums":"\\f2e1","android-friends":"\\f2e2","android-hand":"\\f2e3","android-image":"\\f2e4","android-inbox":"\\f2e5","android-information":"\\f2e6","android-keypad":"\\f2e7","android-lightbulb":"\\f2e8","android-locate":"\\f2e9","android-location":"\\f2ea","android-mail":"\\f2eb","android-microphone":"\\f2ec","android-mixer":"\\f2ed","android-more":"\\f2ee","android-note":"\\f2ef","android-playstore":"\\f2f0","android-printer":"\\f2f1","android-promotion":"\\f2f2","android-reminder":"\\f2f3","android-remove":"\\f2f4","android-search":"\\f2f5","android-send":"\\f2f6","android-settings":"\\f2f7","android-share":"\\f2f8","android-social":"\\f2fa","android-social-user":"\\f2f9","android-sort":"\\f2fb","android-stair-drawer":"\\f311","android-star":"\\f2fc","android-stopwatch":"\\f2fd","android-storage":"\\f2fe","android-system-back":"\\f2ff","android-system-home":"\\f300","android-system-windows":"\\f301","android-timer":"\\f302","android-trash":"\\f303","android-user-menu":"\\f312","android-volume":"\\f304","android-wifi":"\\f305","aperture":"\\f313","archive":"\\f102","arrow-down-a":"\\f103","arrow-down-b":"\\f104","arrow-down-c":"\\f105","arrow-expand":"\\f25e","arrow-graph-down-left":"\\f25f","arrow-graph-down-right":"\\f260","arrow-graph-up-left":"\\f261","arrow-graph-up-right":"\\f262","arrow-left-a":"\\f106","arrow-left-b":"\\f107","arrow-left-c":"\\f108","arrow-move":"\\f263","arrow-resize":"\\f264","arrow-return-left":"\\f265","arrow-return-right":"\\f266","arrow-right-a":"\\f109","arrow-right-b":"\\f10a","arrow-right-c":"\\f10b","arrow-shrink":"\\f267","arrow-swap":"\\f268","arrow-up-a":"\\f10c","arrow-up-b":"\\f10d","arrow-up-c":"\\f10e","asterisk":"\\f314","at":"\\f10f","bag":"\\f110","battery-charging":"\\f111","battery-empty":"\\f112","battery-full":"\\f113","battery-half":"\\f114","battery-low":"\\f115","beaker":"\\f269","beer":"\\f26a","bluetooth":"\\f116","bonfire":"\\f315","bookmark":"\\f26b","briefcase":"\\f26c","bug":"\\f2be","calculator":"\\f26d","calendar":"\\f117","camera":"\\f118","card":"\\f119","cash":"\\f316","chatbox":"\\f11b","chatbox-working":"\\f11a","chatboxes":"\\f11c","chatbubble":"\\f11e","chatbubble-working":"\\f11d","chatbubbles":"\\f11f","checkmark":"\\f122","checkmark-circled":"\\f120","checkmark-round":"\\f121","chevron-down":"\\f123","chevron-left":"\\f124","chevron-right":"\\f125","chevron-up":"\\f126","clipboard":"\\f127","clock":"\\f26e","close":"\\f12a","close-circled":"\\f128","close-round":"\\f129","closed-captioning":"\\f317","cloud":"\\f12b","code":"\\f271","code-download":"\\f26f","code-working":"\\f270","coffee":"\\f272","compass":"\\f273","compose":"\\f12c","connection-bars":"\\f274","contrast":"\\f275","cube":"\\f318","disc":"\\f12d","document":"\\f12f","document-text":"\\f12e","drag":"\\f130","earth":"\\f276","edit":"\\f2bf","egg":"\\f277","eject":"\\f131","email":"\\f132","eye":"\\f133","eye-disabled":"\\f306","female":"\\f278","filing":"\\f134","film-marker":"\\f135","fireball":"\\f319","flag":"\\f279","flame":"\\f31a","flash":"\\f137","flash-off":"\\f136","flask":"\\f138","folder":"\\f139","fork":"\\f27a","fork-repo":"\\f2c0","forward":"\\f13a","funnel":"\\f31b","game-controller-a":"\\f13b","game-controller-b":"\\f13c","gear-a":"\\f13d","gear-b":"\\f13e","grid":"\\f13f","hammer":"\\f27b","happy":"\\f31c","headphone":"\\f140","heart":"\\f141","heart-broken":"\\f31d","help":"\\f143","help-buoy":"\\f27c","help-circled":"\\f142","home":"\\f144","icecream":"\\f27d","icon-social-google-plus":"\\f146","icon-social-google-plus-outline":"\\f145","image":"\\f147","images":"\\f148","information":"\\f14a","information-circled":"\\f149","ionic":"\\f14b","ios7-alarm":"\\f14d","ios7-alarm-outline":"\\f14c","ios7-albums":"\\f14f","ios7-albums-outline":"\\f14e","ios7-americanfootball":"\\f31f","ios7-americanfootball-outline":"\\f31e","ios7-analytics":"\\f321","ios7-analytics-outline":"\\f320","ios7-arrow-back":"\\f150","ios7-arrow-down":"\\f151","ios7-arrow-forward":"\\f152","ios7-arrow-left":"\\f153","ios7-arrow-right":"\\f154","ios7-arrow-thin-down":"\\f27e","ios7-arrow-thin-left":"\\f27f","ios7-arrow-thin-right":"\\f280","ios7-arrow-thin-up":"\\f281","ios7-arrow-up":"\\f155","ios7-at":"\\f157","ios7-at-outline":"\\f156","ios7-barcode":"\\f323","ios7-barcode-outline":"\\f322","ios7-baseball":"\\f325","ios7-baseball-outline":"\\f324","ios7-basketball":"\\f327","ios7-basketball-outline":"\\f326","ios7-bell":"\\f159","ios7-bell-outline":"\\f158","ios7-bolt":"\\f15b","ios7-bolt-outline":"\\f15a","ios7-bookmarks":"\\f15d","ios7-bookmarks-outline":"\\f15c","ios7-box":"\\f15f","ios7-box-outline":"\\f15e","ios7-briefcase":"\\f283","ios7-briefcase-outline":"\\f282","ios7-browsers":"\\f161","ios7-browsers-outline":"\\f160","ios7-calculator":"\\f285","ios7-calculator-outline":"\\f284","ios7-calendar":"\\f163","ios7-calendar-outline":"\\f162","ios7-camera":"\\f165","ios7-camera-outline":"\\f164","ios7-cart":"\\f167","ios7-cart-outline":"\\f166","ios7-chatboxes":"\\f169","ios7-chatboxes-outline":"\\f168","ios7-chatbubble":"\\f16b","ios7-chatbubble-outline":"\\f16a","ios7-checkmark":"\\f16e","ios7-checkmark-empty":"\\f16c","ios7-checkmark-outline":"\\f16d","ios7-circle-filled":"\\f16f","ios7-circle-outline":"\\f170","ios7-clock":"\\f172","ios7-clock-outline":"\\f171","ios7-close":"\\f2bc","ios7-close-empty":"\\f2bd","ios7-close-outline":"\\f2bb","ios7-cloud":"\\f178","ios7-cloud-download":"\\f174","ios7-cloud-download-outline":"\\f173","ios7-cloud-outline":"\\f175","ios7-cloud-upload":"\\f177","ios7-cloud-upload-outline":"\\f176","ios7-cloudy":"\\f17a","ios7-cloudy-night":"\\f308","ios7-cloudy-night-outline":"\\f307","ios7-cloudy-outline":"\\f179","ios7-cog":"\\f17c","ios7-cog-outline":"\\f17b","ios7-compose":"\\f17e","ios7-compose-outline":"\\f17d","ios7-contact":"\\f180","ios7-contact-outline":"\\f17f","ios7-copy":"\\f182","ios7-copy-outline":"\\f181","ios7-download":"\\f184","ios7-download-outline":"\\f183","ios7-drag":"\\f185","ios7-email":"\\f187","ios7-email-outline":"\\f186","ios7-expand":"\\f30d","ios7-eye":"\\f189","ios7-eye-outline":"\\f188","ios7-fastforward":"\\f18b","ios7-fastforward-outline":"\\f18a","ios7-filing":"\\f18d","ios7-filing-outline":"\\f18c","ios7-film":"\\f18f","ios7-film-outline":"\\f18e","ios7-flag":"\\f191","ios7-flag-outline":"\\f190","ios7-folder":"\\f193","ios7-folder-outline":"\\f192","ios7-football":"\\f329","ios7-football-outline":"\\f328","ios7-gear":"\\f195","ios7-gear-outline":"\\f194","ios7-glasses":"\\f197","ios7-glasses-outline":"\\f196","ios7-heart":"\\f199","ios7-heart-outline":"\\f198","ios7-help":"\\f19c","ios7-help-empty":"\\f19a","ios7-help-outline":"\\f19b","ios7-home":"\\f32b","ios7-home-outline":"\\f32a","ios7-infinite":"\\f19e","ios7-infinite-outline":"\\f19d","ios7-information":"\\f1a1","ios7-information-empty":"\\f19f","ios7-information-outline":"\\f1a0","ios7-ionic-outline":"\\f1a2","ios7-keypad":"\\f1a4","ios7-keypad-outline":"\\f1a3","ios7-lightbulb":"\\f287","ios7-lightbulb-outline":"\\f286","ios7-location":"\\f1a6","ios7-location-outline":"\\f1a5","ios7-locked":"\\f1a8","ios7-locked-outline":"\\f1a7","ios7-loop":"\\f32d","ios7-loop-strong":"\\f32c","ios7-medkit":"\\f289","ios7-medkit-outline":"\\f288","ios7-mic":"\\f1ab","ios7-mic-off":"\\f1a9","ios7-mic-outline":"\\f1aa","ios7-minus":"\\f1ae","ios7-minus-empty":"\\f1ac","ios7-minus-outline":"\\f1ad","ios7-monitor":"\\f1b0","ios7-monitor-outline":"\\f1af","ios7-moon":"\\f1b2","ios7-moon-outline":"\\f1b1","ios7-more":"\\f1b4","ios7-more-outline":"\\f1b3","ios7-musical-note":"\\f1b5","ios7-musical-notes":"\\f1b6","ios7-navigate":"\\f1b8","ios7-navigate-outline":"\\f1b7","ios7-paper":"\\f32f","ios7-paper-outline":"\\f32e","ios7-paperplane":"\\f1ba","ios7-paperplane-outline":"\\f1b9","ios7-partlysunny":"\\f1bc","ios7-partlysunny-outline":"\\f1bb","ios7-pause":"\\f1be","ios7-pause-outline":"\\f1bd","ios7-paw":"\\f331","ios7-paw-outline":"\\f330","ios7-people":"\\f1c0","ios7-people-outline":"\\f1bf","ios7-person":"\\f1c2","ios7-person-outline":"\\f1c1","ios7-personadd":"\\f1c4","ios7-personadd-outline":"\\f1c3","ios7-photos":"\\f1c6","ios7-photos-outline":"\\f1c5","ios7-pie":"\\f28b","ios7-pie-outline":"\\f28a","ios7-play":"\\f1c8","ios7-play-outline":"\\f1c7","ios7-plus":"\\f1cb","ios7-plus-empty":"\\f1c9","ios7-plus-outline":"\\f1ca","ios7-pricetag":"\\f28d","ios7-pricetag-outline":"\\f28c","ios7-pricetags":"\\f333","ios7-pricetags-outline":"\\f332","ios7-printer":"\\f1cd","ios7-printer-outline":"\\f1cc","ios7-pulse":"\\f335","ios7-pulse-strong":"\\f334","ios7-rainy":"\\f1cf","ios7-rainy-outline":"\\f1ce","ios7-recording":"\\f1d1","ios7-recording-outline":"\\f1d0","ios7-redo":"\\f1d3","ios7-redo-outline":"\\f1d2","ios7-refresh":"\\f1d6","ios7-refresh-empty":"\\f1d4","ios7-refresh-outline":"\\f1d5","ios7-reload":"\\f28e","ios7-reloading":"\\f28e","ios7-reverse-camera":"\\f337","ios7-reverse-camera-outline":"\\f336","ios7-rewind":"\\f1d8","ios7-rewind-outline":"\\f1d7","ios7-search":"\\f1da","ios7-search-strong":"\\f1d9","ios7-settings":"\\f339","ios7-settings-strong":"\\f338","ios7-shrink":"\\f30e","ios7-skipbackward":"\\f1dc","ios7-skipbackward-outline":"\\f1db","ios7-skipforward":"\\f1de","ios7-skipforward-outline":"\\f1dd","ios7-snowy":"\\f309","ios7-speedometer":"\\f290","ios7-speedometer-outline":"\\f28f","ios7-star":"\\f1e0","ios7-star-half":"\\f33a","ios7-star-outline":"\\f1df","ios7-stopwatch":"\\f1e2","ios7-stopwatch-outline":"\\f1e1","ios7-sunny":"\\f1e4","ios7-sunny-outline":"\\f1e3","ios7-telephone":"\\f1e6","ios7-telephone-outline":"\\f1e5","ios7-tennisball":"\\f33c","ios7-tennisball-outline":"\\f33b","ios7-thunderstorm":"\\f1e8","ios7-thunderstorm-outline":"\\f1e7","ios7-time":"\\f292","ios7-time-outline":"\\f291","ios7-timer":"\\f1ea","ios7-timer-outline":"\\f1e9","ios7-toggle":"\\f33e","ios7-toggle-outline":"\\f33d","ios7-trash":"\\f1ec","ios7-trash-outline":"\\f1eb","ios7-undo":"\\f1ee","ios7-undo-outline":"\\f1ed","ios7-unlocked":"\\f1f0","ios7-unlocked-outline":"\\f1ef","ios7-upload":"\\f1f2","ios7-upload-outline":"\\f1f1","ios7-videocam":"\\f1f4","ios7-videocam-outline":"\\f1f3","ios7-volume-high":"\\f1f5","ios7-volume-low":"\\f1f6","ios7-wineglass":"\\f294","ios7-wineglass-outline":"\\f293","ios7-world":"\\f1f8","ios7-world-outline":"\\f1f7","ipad":"\\f1f9","iphone":"\\f1fa","ipod":"\\f1fb","jet":"\\f295","key":"\\f296","knife":"\\f297","laptop":"\\f1fc","leaf":"\\f1fd","levels":"\\f298","lightbulb":"\\f299","link":"\\f1fe","load-a":"\\f29a","load-b":"\\f29b","load-c":"\\f29c","load-d":"\\f29d","loading-a":"\\f29a","loading-b":"\\f29b","loading-c":"\\f29c","loading-d":"\\f29d","location":"\\f1ff","locked":"\\f200","log-in":"\\f29e","log-out":"\\f29f","loop":"\\f201","looping":"\\f201","magnet":"\\f2a0","male":"\\f2a1","man":"\\f202","map":"\\f203","medkit":"\\f2a2","merge":"\\f33f","mic-a":"\\f204","mic-b":"\\f205","mic-c":"\\f206","minus":"\\f209","minus-circled":"\\f207","minus-round":"\\f208","model-s":"\\f2c1","monitor":"\\f20a","more":"\\f20b","mouse":"\\f340","music-note":"\\f20c","navicon":"\\f20e","navicon-round":"\\f20d","navigate":"\\f2a3","network":"\\f341","no-smoking":"\\f2c2","nuclear":"\\f2a4","outlet":"\\f342","paper-airplane":"\\f2c3","paperclip":"\\f20f","pause":"\\f210","person":"\\f213","person-add":"\\f211","person-stalker":"\\f212","pie-graph":"\\f2a5","pin":"\\f2a6","pinpoint":"\\f2a7","pizza":"\\f2a8","plane":"\\f214","planet":"\\f343","play":"\\f215","playstation":"\\f30a","plus":"\\f218","plus-circled":"\\f216","plus-round":"\\f217","podium":"\\f344","pound":"\\f219","power":"\\f2a9","pricetag":"\\f2aa","pricetags":"\\f2ab","printer":"\\f21a","pull-request":"\\f345","qr-scanner":"\\f346","quote":"\\f347","radio-waves":"\\f2ac","record":"\\f21b","refresh":"\\f21c","refreshing":"\\f21c","reply":"\\f21e","reply-all":"\\f21d","ribbon-a":"\\f348","ribbon-b":"\\f349","sad":"\\f34a","scissors":"\\f34b","search":"\\f21f","settings":"\\f2ad","share":"\\f220","shuffle":"\\f221","skip-backward":"\\f222","skip-forward":"\\f223","social-android":"\\f225","social-android-outline":"\\f224","social-apple":"\\f227","social-apple-outline":"\\f226","social-bitcoin":"\\f2af","social-bitcoin-outline":"\\f2ae","social-buffer":"\\f229","social-buffer-outline":"\\f228","social-designernews":"\\f22b","social-designernews-outline":"\\f22a","social-dribbble":"\\f22d","social-dribbble-outline":"\\f22c","social-dropbox":"\\f22f","social-dropbox-outline":"\\f22e","social-facebook":"\\f231","social-facebook-outline":"\\f230","social-foursquare":"\\f34d","social-foursquare-outline":"\\f34c","social-freebsd-devil":"\\f2c4","social-github":"\\f233","social-github-outline":"\\f232","social-google":"\\f34f","social-google-outline":"\\f34e","social-googleplus":"\\f235","social-googleplus-outline":"\\f234","social-hackernews":"\\f237","social-hackernews-outline":"\\f236","social-instagram":"\\f351","social-instagram-outline":"\\f350","social-linkedin":"\\f239","social-linkedin-outline":"\\f238","social-pinterest":"\\f2b1","social-pinterest-outline":"\\f2b0","social-reddit":"\\f23b","social-reddit-outline":"\\f23a","social-rss":"\\f23d","social-rss-outline":"\\f23c","social-skype":"\\f23f","social-skype-outline":"\\f23e","social-tumblr":"\\f241","social-tumblr-outline":"\\f240","social-tux":"\\f2c5","social-twitter":"\\f243","social-twitter-outline":"\\f242","social-usd":"\\f353","social-usd-outline":"\\f352","social-vimeo":"\\f245","social-vimeo-outline":"\\f244","social-windows":"\\f247","social-windows-outline":"\\f246","social-wordpress":"\\f249","social-wordpress-outline":"\\f248","social-yahoo":"\\f24b","social-yahoo-outline":"\\f24a","social-youtube":"\\f24d","social-youtube-outline":"\\f24c","speakerphone":"\\f2b2","speedometer":"\\f2b3","spoon":"\\f2b4","star":"\\f24e","stats-bars":"\\f2b5","steam":"\\f30b","stop":"\\f24f","thermometer":"\\f2b6","thumbsdown":"\\f250","thumbsup":"\\f251","toggle":"\\f355","toggle-filled":"\\f354","trash-a":"\\f252","trash-b":"\\f253","trophy":"\\f356","umbrella":"\\f2b7","university":"\\f357","unlocked":"\\f254","upload":"\\f255","usb":"\\f2b8","videocamera":"\\f256","volume-high":"\\f257","volume-low":"\\f258","volume-medium":"\\f259","volume-mute":"\\f25a","wand":"\\f358","waterdrop":"\\f25b","wifi":"\\f25c","wineglass":"\\f2b9","woman":"\\f25d","wrench":"\\f2ba","xbox":"\\f30c"}},"Ionicons":{"name":"Ionicons","version":"1.5.2","prefix":"ion","site":"http://ionicons.com/fonts","path":"//code.ionicframework.com/ionicons/1.5.2/fonts/","basename":"ionicons","svghash":"#Ionicons","nativesize":"32px","icons":{"alert":"\\f101","alert-circled":"\\f100","android-add":"\\f2c7","android-add-contact":"\\f2c6","android-alarm":"\\f2c8","android-archive":"\\f2c9","android-arrow-back":"\\f2ca","android-arrow-down-left":"\\f2cb","android-arrow-down-right":"\\f2cc","android-arrow-forward":"\\f30f","android-arrow-up-left":"\\f2cd","android-arrow-up-right":"\\f2ce","android-battery":"\\f2cf","android-book":"\\f2d0","android-calendar":"\\f2d1","android-call":"\\f2d2","android-camera":"\\f2d3","android-chat":"\\f2d4","android-checkmark":"\\f2d5","android-clock":"\\f2d6","android-close":"\\f2d7","android-contact":"\\f2d8","android-contacts":"\\f2d9","android-data":"\\f2da","android-developer":"\\f2db","android-display":"\\f2dc","android-download":"\\f2dd","android-drawer":"\\f310","android-dropdown":"\\f2de","android-earth":"\\f2df","android-folder":"\\f2e0","android-forums":"\\f2e1","android-friends":"\\f2e2","android-hand":"\\f2e3","android-image":"\\f2e4","android-inbox":"\\f2e5","android-information":"\\f2e6","android-keypad":"\\f2e7","android-lightbulb":"\\f2e8","android-locate":"\\f2e9","android-location":"\\f2ea","android-mail":"\\f2eb","android-microphone":"\\f2ec","android-mixer":"\\f2ed","android-more":"\\f2ee","android-note":"\\f2ef","android-playstore":"\\f2f0","android-printer":"\\f2f1","android-promotion":"\\f2f2","android-reminder":"\\f2f3","android-remove":"\\f2f4","android-search":"\\f2f5","android-send":"\\f2f6","android-settings":"\\f2f7","android-share":"\\f2f8","android-social":"\\f2fa","android-social-user":"\\f2f9","android-sort":"\\f2fb","android-stair-drawer":"\\f311","android-star":"\\f2fc","android-stopwatch":"\\f2fd","android-storage":"\\f2fe","android-system-back":"\\f2ff","android-system-home":"\\f300","android-system-windows":"\\f301","android-timer":"\\f302","android-trash":"\\f303","android-user-menu":"\\f312","android-volume":"\\f304","android-wifi":"\\f305","aperture":"\\f313","archive":"\\f102","arrow-down-a":"\\f103","arrow-down-b":"\\f104","arrow-down-c":"\\f105","arrow-expand":"\\f25e","arrow-graph-down-left":"\\f25f","arrow-graph-down-right":"\\f260","arrow-graph-up-left":"\\f261","arrow-graph-up-right":"\\f262","arrow-left-a":"\\f106","arrow-left-b":"\\f107","arrow-left-c":"\\f108","arrow-move":"\\f263","arrow-resize":"\\f264","arrow-return-left":"\\f265","arrow-return-right":"\\f266","arrow-right-a":"\\f109","arrow-right-b":"\\f10a","arrow-right-c":"\\f10b","arrow-shrink":"\\f267","arrow-swap":"\\f268","arrow-up-a":"\\f10c","arrow-up-b":"\\f10d","arrow-up-c":"\\f10e","asterisk":"\\f314","at":"\\f10f","bag":"\\f110","battery-charging":"\\f111","battery-empty":"\\f112","battery-full":"\\f113","battery-half":"\\f114","battery-low":"\\f115","beaker":"\\f269","beer":"\\f26a","bluetooth":"\\f116","bonfire":"\\f315","bookmark":"\\f26b","briefcase":"\\f26c","bug":"\\f2be","calculator":"\\f26d","calendar":"\\f117","camera":"\\f118","card":"\\f119","cash":"\\f316","chatbox":"\\f11b","chatbox-working":"\\f11a","chatboxes":"\\f11c","chatbubble":"\\f11e","chatbubble-working":"\\f11d","chatbubbles":"\\f11f","checkmark":"\\f122","checkmark-circled":"\\f120","checkmark-round":"\\f121","chevron-down":"\\f123","chevron-left":"\\f124","chevron-right":"\\f125","chevron-up":"\\f126","clipboard":"\\f127","clock":"\\f26e","close":"\\f12a","close-circled":"\\f128","close-round":"\\f129","closed-captioning":"\\f317","cloud":"\\f12b","code":"\\f271","code-download":"\\f26f","code-working":"\\f270","coffee":"\\f272","compass":"\\f273","compose":"\\f12c","connection-bars":"\\f274","contrast":"\\f275","cube":"\\f318","disc":"\\f12d","document":"\\f12f","document-text":"\\f12e","drag":"\\f130","earth":"\\f276","edit":"\\f2bf","egg":"\\f277","eject":"\\f131","email":"\\f132","eye":"\\f133","eye-disabled":"\\f306","female":"\\f278","filing":"\\f134","film-marker":"\\f135","fireball":"\\f319","flag":"\\f279","flame":"\\f31a","flash":"\\f137","flash-off":"\\f136","flask":"\\f138","folder":"\\f139","fork":"\\f27a","fork-repo":"\\f2c0","forward":"\\f13a","funnel":"\\f31b","game-controller-a":"\\f13b","game-controller-b":"\\f13c","gear-a":"\\f13d","gear-b":"\\f13e","grid":"\\f13f","hammer":"\\f27b","happy":"\\f31c","headphone":"\\f140","heart":"\\f141","heart-broken":"\\f31d","help":"\\f143","help-buoy":"\\f27c","help-circled":"\\f142","home":"\\f144","icecream":"\\f27d","icon-social-google-plus":"\\f146","icon-social-google-plus-outline":"\\f145","image":"\\f147","images":"\\f148","information":"\\f14a","information-circled":"\\f149","ionic":"\\f14b","ios7-alarm":"\\f14d","ios7-alarm-outline":"\\f14c","ios7-albums":"\\f14f","ios7-albums-outline":"\\f14e","ios7-americanfootball":"\\f31f","ios7-americanfootball-outline":"\\f31e","ios7-analytics":"\\f321","ios7-analytics-outline":"\\f320","ios7-arrow-back":"\\f150","ios7-arrow-down":"\\f151","ios7-arrow-forward":"\\f152","ios7-arrow-left":"\\f153","ios7-arrow-right":"\\f154","ios7-arrow-thin-down":"\\f27e","ios7-arrow-thin-left":"\\f27f","ios7-arrow-thin-right":"\\f280","ios7-arrow-thin-up":"\\f281","ios7-arrow-up":"\\f155","ios7-at":"\\f157","ios7-at-outline":"\\f156","ios7-barcode":"\\f323","ios7-barcode-outline":"\\f322","ios7-baseball":"\\f325","ios7-baseball-outline":"\\f324","ios7-basketball":"\\f327","ios7-basketball-outline":"\\f326","ios7-bell":"\\f159","ios7-bell-outline":"\\f158","ios7-bolt":"\\f15b","ios7-bolt-outline":"\\f15a","ios7-bookmarks":"\\f15d","ios7-bookmarks-outline":"\\f15c","ios7-box":"\\f15f","ios7-box-outline":"\\f15e","ios7-briefcase":"\\f283","ios7-briefcase-outline":"\\f282","ios7-browsers":"\\f161","ios7-browsers-outline":"\\f160","ios7-calculator":"\\f285","ios7-calculator-outline":"\\f284","ios7-calendar":"\\f163","ios7-calendar-outline":"\\f162","ios7-camera":"\\f165","ios7-camera-outline":"\\f164","ios7-cart":"\\f167","ios7-cart-outline":"\\f166","ios7-chatboxes":"\\f169","ios7-chatboxes-outline":"\\f168","ios7-chatbubble":"\\f16b","ios7-chatbubble-outline":"\\f16a","ios7-checkmark":"\\f16e","ios7-checkmark-empty":"\\f16c","ios7-checkmark-outline":"\\f16d","ios7-circle-filled":"\\f16f","ios7-circle-outline":"\\f170","ios7-clock":"\\f172","ios7-clock-outline":"\\f171","ios7-close":"\\f2bc","ios7-close-empty":"\\f2bd","ios7-close-outline":"\\f2bb","ios7-cloud":"\\f178","ios7-cloud-download":"\\f174","ios7-cloud-download-outline":"\\f173","ios7-cloud-outline":"\\f175","ios7-cloud-upload":"\\f177","ios7-cloud-upload-outline":"\\f176","ios7-cloudy":"\\f17a","ios7-cloudy-night":"\\f308","ios7-cloudy-night-outline":"\\f307","ios7-cloudy-outline":"\\f179","ios7-cog":"\\f17c","ios7-cog-outline":"\\f17b","ios7-compose":"\\f17e","ios7-compose-outline":"\\f17d","ios7-contact":"\\f180","ios7-contact-outline":"\\f17f","ios7-copy":"\\f182","ios7-copy-outline":"\\f181","ios7-download":"\\f184","ios7-download-outline":"\\f183","ios7-drag":"\\f185","ios7-email":"\\f187","ios7-email-outline":"\\f186","ios7-expand":"\\f30d","ios7-eye":"\\f189","ios7-eye-outline":"\\f188","ios7-fastforward":"\\f18b","ios7-fastforward-outline":"\\f18a","ios7-filing":"\\f18d","ios7-filing-outline":"\\f18c","ios7-film":"\\f18f","ios7-film-outline":"\\f18e","ios7-flag":"\\f191","ios7-flag-outline":"\\f190","ios7-folder":"\\f193","ios7-folder-outline":"\\f192","ios7-football":"\\f329","ios7-football-outline":"\\f328","ios7-gear":"\\f195","ios7-gear-outline":"\\f194","ios7-glasses":"\\f197","ios7-glasses-outline":"\\f196","ios7-heart":"\\f199","ios7-heart-outline":"\\f198","ios7-help":"\\f19c","ios7-help-empty":"\\f19a","ios7-help-outline":"\\f19b","ios7-home":"\\f32b","ios7-home-outline":"\\f32a","ios7-infinite":"\\f19e","ios7-infinite-outline":"\\f19d","ios7-information":"\\f1a1","ios7-information-empty":"\\f19f","ios7-information-outline":"\\f1a0","ios7-ionic-outline":"\\f1a2","ios7-keypad":"\\f1a4","ios7-keypad-outline":"\\f1a3","ios7-lightbulb":"\\f287","ios7-lightbulb-outline":"\\f286","ios7-location":"\\f1a6","ios7-location-outline":"\\f1a5","ios7-locked":"\\f1a8","ios7-locked-outline":"\\f1a7","ios7-loop":"\\f32d","ios7-loop-strong":"\\f32c","ios7-medkit":"\\f289","ios7-medkit-outline":"\\f288","ios7-mic":"\\f1ab","ios7-mic-off":"\\f1a9","ios7-mic-outline":"\\f1aa","ios7-minus":"\\f1ae","ios7-minus-empty":"\\f1ac","ios7-minus-outline":"\\f1ad","ios7-monitor":"\\f1b0","ios7-monitor-outline":"\\f1af","ios7-moon":"\\f1b2","ios7-moon-outline":"\\f1b1","ios7-more":"\\f1b4","ios7-more-outline":"\\f1b3","ios7-musical-note":"\\f1b5","ios7-musical-notes":"\\f1b6","ios7-navigate":"\\f1b8","ios7-navigate-outline":"\\f1b7","ios7-paper":"\\f32f","ios7-paper-outline":"\\f32e","ios7-paperplane":"\\f1ba","ios7-paperplane-outline":"\\f1b9","ios7-partlysunny":"\\f1bc","ios7-partlysunny-outline":"\\f1bb","ios7-pause":"\\f1be","ios7-pause-outline":"\\f1bd","ios7-paw":"\\f331","ios7-paw-outline":"\\f330","ios7-people":"\\f1c0","ios7-people-outline":"\\f1bf","ios7-person":"\\f1c2","ios7-person-outline":"\\f1c1","ios7-personadd":"\\f1c4","ios7-personadd-outline":"\\f1c3","ios7-photos":"\\f1c6","ios7-photos-outline":"\\f1c5","ios7-pie":"\\f28b","ios7-pie-outline":"\\f28a","ios7-play":"\\f1c8","ios7-play-outline":"\\f1c7","ios7-plus":"\\f1cb","ios7-plus-empty":"\\f1c9","ios7-plus-outline":"\\f1ca","ios7-pricetag":"\\f28d","ios7-pricetag-outline":"\\f28c","ios7-pricetags":"\\f333","ios7-pricetags-outline":"\\f332","ios7-printer":"\\f1cd","ios7-printer-outline":"\\f1cc","ios7-pulse":"\\f335","ios7-pulse-strong":"\\f334","ios7-rainy":"\\f1cf","ios7-rainy-outline":"\\f1ce","ios7-recording":"\\f1d1","ios7-recording-outline":"\\f1d0","ios7-redo":"\\f1d3","ios7-redo-outline":"\\f1d2","ios7-refresh":"\\f1d6","ios7-refresh-empty":"\\f1d4","ios7-refresh-outline":"\\f1d5","ios7-reload":"\\f28e","ios7-reloading":"\\f28e","ios7-reverse-camera":"\\f337","ios7-reverse-camera-outline":"\\f336","ios7-rewind":"\\f1d8","ios7-rewind-outline":"\\f1d7","ios7-search":"\\f1da","ios7-search-strong":"\\f1d9","ios7-settings":"\\f339","ios7-settings-strong":"\\f338","ios7-shrink":"\\f30e","ios7-skipbackward":"\\f1dc","ios7-skipbackward-outline":"\\f1db","ios7-skipforward":"\\f1de","ios7-skipforward-outline":"\\f1dd","ios7-snowy":"\\f309","ios7-speedometer":"\\f290","ios7-speedometer-outline":"\\f28f","ios7-star":"\\f1e0","ios7-star-half":"\\f33a","ios7-star-outline":"\\f1df","ios7-stopwatch":"\\f1e2","ios7-stopwatch-outline":"\\f1e1","ios7-sunny":"\\f1e4","ios7-sunny-outline":"\\f1e3","ios7-telephone":"\\f1e6","ios7-telephone-outline":"\\f1e5","ios7-tennisball":"\\f33c","ios7-tennisball-outline":"\\f33b","ios7-thunderstorm":"\\f1e8","ios7-thunderstorm-outline":"\\f1e7","ios7-time":"\\f292","ios7-time-outline":"\\f291","ios7-timer":"\\f1ea","ios7-timer-outline":"\\f1e9","ios7-toggle":"\\f33e","ios7-toggle-outline":"\\f33d","ios7-trash":"\\f1ec","ios7-trash-outline":"\\f1eb","ios7-undo":"\\f1ee","ios7-undo-outline":"\\f1ed","ios7-unlocked":"\\f1f0","ios7-unlocked-outline":"\\f1ef","ios7-upload":"\\f1f2","ios7-upload-outline":"\\f1f1","ios7-videocam":"\\f1f4","ios7-videocam-outline":"\\f1f3","ios7-volume-high":"\\f1f5","ios7-volume-low":"\\f1f6","ios7-wineglass":"\\f294","ios7-wineglass-outline":"\\f293","ios7-world":"\\f1f8","ios7-world-outline":"\\f1f7","ipad":"\\f1f9","iphone":"\\f1fa","ipod":"\\f1fb","jet":"\\f295","key":"\\f296","knife":"\\f297","laptop":"\\f1fc","leaf":"\\f1fd","levels":"\\f298","lightbulb":"\\f299","link":"\\f1fe","load-a":"\\f29a","load-b":"\\f29b","load-c":"\\f29c","load-d":"\\f29d","loading-a":"\\f29a","loading-b":"\\f29b","loading-c":"\\f29c","loading-d":"\\f29d","location":"\\f1ff","locked":"\\f200","log-in":"\\f29e","log-out":"\\f29f","loop":"\\f201","looping":"\\f201","magnet":"\\f2a0","male":"\\f2a1","man":"\\f202","map":"\\f203","medkit":"\\f2a2","merge":"\\f33f","mic-a":"\\f204","mic-b":"\\f205","mic-c":"\\f206","minus":"\\f209","minus-circled":"\\f207","minus-round":"\\f208","model-s":"\\f2c1","monitor":"\\f20a","more":"\\f20b","mouse":"\\f340","music-note":"\\f20c","navicon":"\\f20e","navicon-round":"\\f20d","navigate":"\\f2a3","network":"\\f341","no-smoking":"\\f2c2","nuclear":"\\f2a4","outlet":"\\f342","paper-airplane":"\\f2c3","paperclip":"\\f20f","pause":"\\f210","person":"\\f213","person-add":"\\f211","person-stalker":"\\f212","pie-graph":"\\f2a5","pin":"\\f2a6","pinpoint":"\\f2a7","pizza":"\\f2a8","plane":"\\f214","planet":"\\f343","play":"\\f215","playstation":"\\f30a","plus":"\\f218","plus-circled":"\\f216","plus-round":"\\f217","podium":"\\f344","pound":"\\f219","power":"\\f2a9","pricetag":"\\f2aa","pricetags":"\\f2ab","printer":"\\f21a","pull-request":"\\f345","qr-scanner":"\\f346","quote":"\\f347","radio-waves":"\\f2ac","record":"\\f21b","refresh":"\\f21c","refreshing":"\\f21c","reply":"\\f21e","reply-all":"\\f21d","ribbon-a":"\\f348","ribbon-b":"\\f349","sad":"\\f34a","scissors":"\\f34b","search":"\\f21f","settings":"\\f2ad","share":"\\f220","shuffle":"\\f221","skip-backward":"\\f222","skip-forward":"\\f223","social-android":"\\f225","social-android-outline":"\\f224","social-apple":"\\f227","social-apple-outline":"\\f226","social-bitcoin":"\\f2af","social-bitcoin-outline":"\\f2ae","social-buffer":"\\f229","social-buffer-outline":"\\f228","social-designernews":"\\f22b","social-designernews-outline":"\\f22a","social-dribbble":"\\f22d","social-dribbble-outline":"\\f22c","social-dropbox":"\\f22f","social-dropbox-outline":"\\f22e","social-facebook":"\\f231","social-facebook-outline":"\\f230","social-foursquare":"\\f34d","social-foursquare-outline":"\\f34c","social-freebsd-devil":"\\f2c4","social-github":"\\f233","social-github-outline":"\\f232","social-google":"\\f34f","social-google-outline":"\\f34e","social-googleplus":"\\f235","social-googleplus-outline":"\\f234","social-hackernews":"\\f237","social-hackernews-outline":"\\f236","social-instagram":"\\f351","social-instagram-outline":"\\f350","social-linkedin":"\\f239","social-linkedin-outline":"\\f238","social-pinterest":"\\f2b1","social-pinterest-outline":"\\f2b0","social-reddit":"\\f23b","social-reddit-outline":"\\f23a","social-rss":"\\f23d","social-rss-outline":"\\f23c","social-skype":"\\f23f","social-skype-outline":"\\f23e","social-tumblr":"\\f241","social-tumblr-outline":"\\f240","social-tux":"\\f2c5","social-twitter":"\\f243","social-twitter-outline":"\\f242","social-usd":"\\f353","social-usd-outline":"\\f352","social-vimeo":"\\f245","social-vimeo-outline":"\\f244","social-windows":"\\f247","social-windows-outline":"\\f246","social-wordpress":"\\f249","social-wordpress-outline":"\\f248","social-yahoo":"\\f24b","social-yahoo-outline":"\\f24a","social-youtube":"\\f24d","social-youtube-outline":"\\f24c","speakerphone":"\\f2b2","speedometer":"\\f2b3","spoon":"\\f2b4","star":"\\f24e","stats-bars":"\\f2b5","steam":"\\f30b","stop":"\\f24f","thermometer":"\\f2b6","thumbsdown":"\\f250","thumbsup":"\\f251","toggle":"\\f355","toggle-filled":"\\f354","trash-a":"\\f252","trash-b":"\\f253","trophy":"\\f356","umbrella":"\\f2b7","university":"\\f357","unlocked":"\\f254","upload":"\\f255","usb":"\\f2b8","videocamera":"\\f256","volume-high":"\\f257","volume-low":"\\f258","volume-medium":"\\f259","volume-mute":"\\f25a","wand":"\\f358","waterdrop":"\\f25b","wifi":"\\f25c","wineglass":"\\f2b9","woman":"\\f25d","wrench":"\\f2ba","xbox":"\\f30c"}}}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc