jekyll-theme-prettydocs-full 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +7 -0
- data/_data/default/base.yml +8 -0
- data/_data/default/cards.yml +35 -0
- data/_data/default/contact.yml +24 -0
- data/_data/default/faqs.yml +46 -0
- data/_data/default/timeline.yml +33 -0
- data/_includes/_partials/item.html +11 -0
- data/_includes/_partials/post.html +40 -0
- data/_includes/_partials/social-buttons.html +12 -0
- data/_includes/_partials/toc.html +43 -0
- data/_includes/_sections/blog_post.html +50 -0
- data/_includes/_sections/cards.html +25 -0
- data/_includes/_sections/contact.html +29 -0
- data/_includes/_sections/faqs.html +28 -0
- data/_includes/_sections/items-list.html +11 -0
- data/_includes/_sections/not-found.html +11 -0
- data/_includes/_sections/resources.html +68 -0
- data/_includes/_sections/timeline.html +40 -0
- data/_includes/_shower/setup.md +39 -0
- data/_includes/_shower/showerify.html +125 -0
- data/_includes/_theme/footer.html +8 -0
- data/_includes/_theme/head.html +43 -0
- data/_includes/_theme/header.html +36 -0
- data/_includes/_theme/js.html +11 -0
- data/_includes/_utils/common +29 -0
- data/_includes/_utils/picture +18 -0
- data/_layouts/compress.html +9 -0
- data/_layouts/default.html +19 -0
- data/_layouts/faqs.html +9 -0
- data/_layouts/landing.html +18 -0
- data/_layouts/page.html +18 -0
- data/_layouts/post.html +5 -0
- data/_layouts/shower.html +27 -0
- data/_sass/globals/_base.scss +44 -0
- data/_sass/globals/_mixins.scss +175 -0
- data/_sass/partials/_base.scss +108 -0
- data/_sass/partials/_buttons.scss +97 -0
- data/_sass/partials/_cards.scss +170 -0
- data/_sass/partials/_contact.scss +29 -0
- data/_sass/partials/_doc.scss +521 -0
- data/_sass/partials/_footer.scss +9 -0
- data/_sass/partials/_header.scss +87 -0
- data/_sass/partials/_helper.scss +42 -0
- data/_sass/partials/_landing.scss +61 -0
- data/_sass/partials/_post.scss +32 -0
- data/_sass/partials/_resources.scss +10 -0
- data/_sass/partials/_toc.scss +163 -0
- data/_sass/prettydocs-jekyll.scss +20 -0
- data/_sass/vendor/_shower.scss +535 -0
- data/_sass/vendor/_timeline.scss +221 -0
- data/_sass/vendor/shower/defaults.scss +47 -0
- data/_sass/vendor/shower/reset.scss +46 -0
- data/_sass/vendor/shower/screen.scss +549 -0
- data/_sass/vendor/timeline/functions/desaturated-lighten.scss +7 -0
- data/_sass/vendor/timeline/functions/map-deep-get.scss +9 -0
- data/_sass/vendor/timeline/functions/map-set.scss +5 -0
- data/_sass/vendor/timeline/functions/mutate-colors.scss +9 -0
- data/_sass/vendor/timeline/mixins/timeline-element.scss +23 -0
- data/_sass/vendor/timeline/mixins/timeline-event-variant.scss +20 -0
- data/_sass/vendor/timeline/mixins/timeline-item-arrow-color-variant.scss +6 -0
- data/_sass/vendor/timeline/mixins/timeline-item-arrow-size-variant.scss +17 -0
- data/_sass/vendor/timeline/mixins/timeline-item-right-side-position.scss +21 -0
- data/_sass/vendor/timeline/mixins/timeline-item-start-margins.scss +9 -0
- data/_sass/vendor/timeline/mixins/timeline-item-variant.scss +28 -0
- data/_sass/vendor/timeline/mixins/timeline-label-variant.scss +3 -0
- data/_sass/vendor/timeline/mixins/timeline-line-variant.scss +5 -0
- data/_sass/vendor/timeline/mixins/timeline-point-color-variant.scss +4 -0
- data/_sass/vendor/timeline/mixins/timeline-point-size-variant.scss +12 -0
- data/_sass/vendor/timeline/mixins/timeline-responsive-variant.scss +26 -0
- data/_sass/vendor/timeline/mixins/timeline-row-clearfix.scss +10 -0
- data/_sass/vendor/timeline/mixins/timeline-single-column.scss +56 -0
- data/_sass/vendor/timeline/mixins/transform-center.scss +3 -0
- data/_sass/vendor/timeline/variables.scss +90 -0
- data/assets/css/main.scss +4 -0
- data/assets/css/shower.scss +4 -0
- data/assets/images/empty.gif +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/labtocat.png +0 -0
- data/assets/js/main.js +45 -0
- data/assets/plugins/elegant_font/Licensing/gpl_license.txt +339 -0
- data/assets/plugins/elegant_font/Licensing/mit_license.txt +21 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.eot +0 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.svg +1832 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.ttf +0 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.woff +0 -0
- data/assets/plugins/elegant_font/css/index.html +3019 -0
- data/assets/plugins/elegant_font/css/lte-ie7.js +387 -0
- data/assets/plugins/elegant_font/css/style.css +1159 -0
- data/assets/plugins/elegant_font/images/PNG/arrow-up-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_back.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2dwnn_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot_up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_condense.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_condense_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt3.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_move.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_adjust-horiz.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_adjust-vert.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_archive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_archive_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_bag.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_bag_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_balance.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_blocked.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_book.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_book_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-checked.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-empty.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-selected.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_briefcase.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_briefcase_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_building.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_building_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calculator_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calendar.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calulator.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_camera.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_camera_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_chat.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_chat_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_circle-empty.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_circle-slelected.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clipboard.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clock.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clock_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-download_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-upload_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cog.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cogs.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_comment.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_comment_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_compass.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_compass_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cone.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cone_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_contacts.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_contacts_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_creditcard.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_currency.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_currency_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cursor.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cursor_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_datareport.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_datareport_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_desktop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_dislike.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_dislike_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_document.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_document_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_documents.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_documents_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drawer.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drawer_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drive_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_easel.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_easel_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-circle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-oct.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-oct_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-triangle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-triangle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_film.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_floppy.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_floppy_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_flowchart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_flowchart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-add.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-add_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-open.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-open_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder_download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder_upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_genius.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_gift.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_gift_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe-2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_grid-2x2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_grid-3x3.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_group.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_headphones.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_heart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_heart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_hourglass.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_house.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_house_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id-2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id-2_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_image.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_images.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_info.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_info_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_key.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_key_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_laptop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lifesaver.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lightbulb.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lightbulb_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_like.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_like_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_link.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_link_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_loading.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock-open.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock-open_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mail.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mail_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_map.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_map_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mic.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mic_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus-06.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus-box.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mobile.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mug.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mug_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_music.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ol.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_paperclip.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil-edit.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil-edit_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pens.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pens_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_percent.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_percent_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_phone.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_piechart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pin_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus-box.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_printer-alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_printer.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_profile.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pushpin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pushpin_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_puzzle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_puzzle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_refresh.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ribbon.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ribbon_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_rook.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_shield.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_shield_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star-half.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star-half_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_table.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tablet.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tag.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tag_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tags.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tags_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_target.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tool.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_toolbox.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_toolbox_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tools.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_trash.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_trash_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ul.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_vol-mute.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_vol-mute_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-high.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-high_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-low.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-low_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_wallet.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_wallet_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-in.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-in_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-out.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-out_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_stumbleupon_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_stumbleupon_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumbleupon.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube_square.png +0 -0
- data/assets/plugins/elegant_font/images/SVG/arrow-up-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_back.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2dwnn_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot_up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_condense.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_condense_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt3.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_move.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_adjust-horiz.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_adjust-vert.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_archive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_archive_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_bag.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_bag_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_balance.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_blocked.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_book.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_book_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-checked.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-empty.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-selected.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_briefcase.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_briefcase_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_building.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_building_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calculator_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calendar.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calulator.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_camera.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_camera_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_chat.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_chat_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_circle-empty.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_circle-slelected.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clipboard.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clock.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clock_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-download_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-upload_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cog.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cogs.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_comment.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_comment_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_compass.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_compass_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cone.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cone_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_contacts.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_contacts_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_creditcard.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_currency.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_currency_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cursor.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cursor_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_datareport.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_datareport_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_desktop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_dislike.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_dislike_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_document.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_document_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_documents.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_documents_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drawer.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drawer_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drive_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_easel.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_easel_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-circle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-oct.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-oct_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-triangle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-triangle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_film.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_floppy.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_floppy_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_flowchart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_flowchart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-add.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-add_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-open.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-open_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder_download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder_upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_genius.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_gift.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_gift_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe-2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_grid-2x2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_grid-3x3.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_group.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_headphones.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_heart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_heart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_hourglass.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_house.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_house_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id-2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id-2_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_image.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_images.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_info.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_info_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_key.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_key_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_laptop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lifesaver.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lightbulb.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lightbulb_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_like.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_like_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_link.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_link_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_loading.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock-open.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock-open_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mail.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mail_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_map.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_map_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-circle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-circle_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-square_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-square_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mic.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mic_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus-06.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus-box.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mobile.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mug.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mug_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_music.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ol.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_paperclip.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil-edit.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil-edit_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pens.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pens_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_percent.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_percent_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_phone.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_piechart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pin_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus-box.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_printer-alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_printer.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_profile.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pushpin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pushpin_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_puzzle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_puzzle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_refresh.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ribbon.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ribbon_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_rook.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_shield.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_shield_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star-half.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star-half_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_table.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tablet.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tag.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tag_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tags.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tags_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_target.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tool.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_toolbox.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_toolbox_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tools.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_trash.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_trash_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ul.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_vol-mute.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_vol-mute_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-high.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-high_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-low.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-low_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_wallet.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_wallet_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-in.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-in_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-out.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-out_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_stumbleupon_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_stumbleupon_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumbleupon.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube_square.svg +1 -0
- data/assets/plugins/prism/min/prism-min.js +2 -0
- data/assets/plugins/prism/prism.css +163 -0
- data/assets/plugins/prism/prism.js +18 -0
- metadata +929 -0
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 26,0L 6,0 C 2.686,0,0,2.686,0,6l0,20 c0,3.314, 2.686,6, 6,6l 20,0 c 3.314,0, 6-2.686, 6-6L 32,6 C 32,2.686, 29.314,0, 26,0z M 21.998,14.8L 17.2,14.8 L 17.198,19.19c0,1.114-0.014,1.756, 0.104,2.072c 0.118,0.314, 0.41,0.64, 0.73,0.828 c 0.426,0.256, 0.91,0.382, 1.456,0.382c 0.972,0, 1.546-0.128, 2.508-0.76L 21.996,24.6 c-0.82,0.386-1.534,0.61-2.2,0.766 C 19.132,25.522, 18.414,25.6, 17.64,25.6c-0.878,0-1.396-0.11-2.070-0.332c-0.674-0.222-1.25-0.54-1.726-0.948 c-0.478-0.41-0.806-0.848-0.992-1.31c-0.184-0.462-0.276-1.132-0.276-2.010L 12.576,14.268 L 10.002,14.268 l0-2.72 c 0.754-0.244, 1.598-0.596, 2.134-1.054c 0.538-0.458, 0.97-1.006, 1.296-1.648C 13.756,8.208, 13.98,7.39, 14.104,6.4L 17.2,6.4 l0,4.8 l 4.798,0 L 21.998,14.8 z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32.003997802734375" height="32" viewBox="0 0 32.003997802734375 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 31.118,3.48c-1.268,0.752-2.674,1.298-4.17,1.594C 25.75,3.796, 24.044,3, 22.156,3 c-3.626,0-6.566,2.94-6.566,6.564c0,0.514, 0.058,1.016, 0.17,1.496c-5.456-0.274-10.294-2.888-13.532-6.86 C 1.662,5.168, 1.34,6.296, 1.34,7.5c0,2.278, 1.16,4.288, 2.92,5.464C 3.184,12.928, 2.172,12.632, 1.286,12.14c0,0.028,0,0.054,0,0.082 c0,3.18, 2.264,5.834, 5.266,6.438C 6.002,18.81, 5.422,18.89, 4.822,18.89c-0.424,0-0.834-0.042-1.236-0.118 c 0.836,2.608, 3.26,4.506, 6.132,4.56c-2.246,1.76-5.078,2.81-8.154,2.81c-0.53,0-1.052-0.032-1.566-0.092 C 2.904,27.912, 6.354,29, 10.062,29c 12.076,0, 18.68-10.004, 18.68-18.68c0-0.284-0.006-0.568-0.020-0.85 c 1.286-0.922, 2.4-2.078, 3.28-3.394c-1.178,0.522-2.442,0.876-3.77,1.034C 29.588,6.298, 30.628,5.010, 31.118,3.48z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 16,0C 7.164,0,0,7.164,0,16s 7.164,16, 16,16s 16-7.164, 16-16C 32,7.162, 24.836,0, 16,0z M 23.96,12.408 c 0.008,0.17, 0.012,0.34, 0.012,0.51c0,5.206-3.962,11.208-11.208,11.208c-2.224,0-4.294-0.652-6.038-1.77 c 0.308,0.036, 0.622,0.056, 0.94,0.056c 1.846,0, 3.544-0.63, 4.892-1.686c-1.724-0.032-3.178-1.172-3.68-2.736 C 9.12,18.036, 9.364,18.060, 9.62,18.060c 0.36,0, 0.708-0.048, 1.038-0.138C 8.856,17.56, 7.498,15.968, 7.498,14.060c0-0.016,0-0.032,0-0.050 c 0.532,0.296, 1.138,0.472, 1.784,0.494C 8.226,13.798, 7.53,12.592, 7.53,11.226c0-0.722, 0.194-1.398, 0.532-1.98 c 1.942,2.384, 4.846,3.952, 8.12,4.116C 16.114,13.074, 16.080,12.772, 16.080,12.464c0-2.174, 1.764-3.938, 3.94-3.938 c 1.132,0, 2.156,0.478, 2.876,1.244c 0.898-0.178, 1.742-0.506, 2.502-0.956c-0.294,0.92-0.918,1.692-1.732,2.18 c 0.796-0.094, 1.556-0.308, 2.262-0.62C 25.4,11.162, 24.73,11.856, 23.96,12.408z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 26,0L 6,0 C 2.686,0,0,2.686,0,6l0,20 c0,3.314, 2.686,6, 6,6l 20,0 c 3.314,0, 6-2.686, 6-6L 32,6 C 32,2.686, 29.314,0, 26,0z M 23.96,12.408c 0.008,0.17, 0.012,0.34, 0.012,0.51c0,5.206-3.962,11.208-11.208,11.208c-2.224,0-4.294-0.652-6.038-1.77 c 0.308,0.036, 0.622,0.056, 0.94,0.056c 1.846,0, 3.544-0.63, 4.892-1.686c-1.724-0.032-3.178-1.172-3.68-2.736 C 9.12,18.036, 9.364,18.060, 9.62,18.060c 0.36,0, 0.708-0.048, 1.038-0.138C 8.856,17.56, 7.498,15.968, 7.498,14.060c0-0.016,0-0.032,0-0.050 c 0.532,0.296, 1.138,0.472, 1.784,0.494C 8.226,13.798, 7.53,12.592, 7.53,11.226c0-0.722, 0.194-1.398, 0.532-1.98 c 1.942,2.384, 4.846,3.952, 8.12,4.116C 16.114,13.074, 16.080,12.772, 16.080,12.464c0-2.174, 1.764-3.938, 3.94-3.938 c 1.132,0, 2.156,0.478, 2.876,1.244c 0.898-0.178, 1.742-0.506, 2.502-0.956c-0.294,0.92-0.918,1.692-1.732,2.18 c 0.796-0.094, 1.556-0.308, 2.262-0.62C 25.4,11.162, 24.73,11.856, 23.96,12.408z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="33.62799835205078" height="32.56800079345703" viewBox="0 0 33.62799835205078 32.56800079345703" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 18.356,9.554c 3.656-2.194, 5.608,0.892, 3.736,4.386c-1.868,3.492-3.574,5.768-4.468,5.768 c-0.892,0-1.578-2.336-2.6-6.42C 13.968,9.066, 13.974,1.462, 9.582,2.324C 5.442,3.138,0,9.636,0,9.636L 1.3,11.34 c0,0, 2.68-2.112, 3.574-1.056c 0.894,1.056, 4.304,13.812, 5.442,16.164c 0.994,2.064, 3.734,4.792, 6.742,2.844 c 3.004-1.948, 12.994-10.478, 14.784-20.55C 33.628-1.328, 19.82,0.782, 18.356,9.554z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 16,0C 7.164,0,0,7.164,0,16s 7.164,16, 16,16s 16-7.164, 16-16C 32,7.162, 24.836,0, 16,0z M 25.504,11.646 c-1.074,6.044-7.068,11.162-8.87,12.33c-1.804,1.168-3.448-0.468-4.046-1.706C 11.906,20.858, 9.86,13.204, 9.324,12.57 C 8.788,11.936, 7.18,13.204, 7.18,13.204L 6.4,12.182c0,0, 3.266-3.898, 5.75-4.388C 14.784,7.276, 14.78,11.84, 15.414,14.372 c 0.614,2.45, 1.024,3.852, 1.56,3.852c 0.536,0, 1.56-1.366, 2.68-3.46c 1.124-2.096-0.048-3.948-2.242-2.632 C 18.292,6.87, 26.576,5.604, 25.504,11.646z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 26,0L 6,0 C 2.686,0,0,2.686,0,6l0,20 c0,3.314, 2.686,6, 6,6l 20,0 c 3.314,0, 6-2.686, 6-6L 32,6 C 32,2.686, 29.314,0, 26,0z M 25.504,11.646c-1.074,6.044-7.068,11.162-8.87,12.33c-1.804,1.168-3.448-0.468-4.046-1.706C 11.906,20.858, 9.86,13.204, 9.324,12.57 C 8.788,11.936, 7.18,13.204, 7.18,13.204L 6.4,12.182c0,0, 3.266-3.898, 5.75-4.388C 14.784,7.276, 14.78,11.84, 15.414,14.372 c 0.614,2.45, 1.024,3.852, 1.56,3.852c 0.536,0, 1.56-1.366, 2.68-3.46c 1.124-2.096-0.048-3.948-2.242-2.632 C 18.292,6.87, 26.576,5.604, 25.504,11.646z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 16,0C 7.164,0,0,7.164,0,16s 7.164,16, 16,16s 16-7.164, 16-16S 24.836,0, 16,0z M 2.286,16c0-1.936, 0.428-3.776, 1.188-5.436 l 6.542,17.456C 5.44,25.856, 2.286,21.286, 2.286,16z M 16,29.358c-1.346,0-2.644-0.192-3.874-0.544L 16.24,17.168l 4.214,11.248 c 0.028,0.066, 0.062,0.128, 0.098,0.186C 19.13,29.090, 17.598,29.358, 16,29.358z M 17.886,9.738c 0.826-0.042, 1.57-0.126, 1.57-0.126 c 0.74-0.086, 0.652-1.142-0.086-1.102c0,0-2.222,0.17-3.654,0.17c-1.346,0-3.612-0.17-3.612-0.17 C 11.364,8.468, 11.278,9.568, 12.016,9.612c0,0, 0.7,0.084, 1.438,0.126L 15.59,15.44l-3.002,8.766L 7.596,9.738 c 0.828-0.042, 1.57-0.126, 1.57-0.126c 0.738-0.086, 0.652-1.142-0.086-1.102c0,0-2.222,0.17-3.654,0.17 c-0.256,0-0.56-0.006-0.882-0.016C 6.994,5.038, 11.21,2.642, 16,2.642c 3.57,0, 6.82,1.33, 9.262,3.506 c-0.060-0.004-0.116-0.012-0.178-0.012c-1.348,0-2.304,1.142-2.304,2.37c0,1.102, 0.652,2.032, 1.346,3.134 c 0.524,0.892, 1.132,2.034, 1.132,3.684c0,1.142-0.45,2.47-1.042,4.32l-1.37,4.45L 17.886,9.738z M 29.714,16 c0,4.928-2.742,9.23-6.82,11.542l 4.19-11.794c 0.782-1.906, 1.042-3.428, 1.042-4.784c0-0.492-0.032-0.948-0.092-1.374 C 29.104,11.494, 29.714,13.678, 29.714,16z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 16,0C 7.164,0,0,7.164,0,16s 7.164,16, 16,16s 16-7.164, 16-16S 24.836,0, 16,0z M 2.286,16c0-1.936, 0.428-3.776, 1.188-5.436 l 6.542,17.456C 5.44,25.856, 2.286,21.286, 2.286,16z M 16,29.358c-1.346,0-2.644-0.192-3.874-0.544L 16.24,17.168l 4.214,11.248 c 0.028,0.066, 0.062,0.128, 0.098,0.186C 19.13,29.090, 17.598,29.358, 16,29.358z M 17.886,9.738c 0.826-0.042, 1.57-0.126, 1.57-0.126 c 0.74-0.086, 0.652-1.142-0.086-1.102c0,0-2.222,0.17-3.654,0.17c-1.346,0-3.612-0.17-3.612-0.17 C 11.364,8.468, 11.278,9.568, 12.016,9.612c0,0, 0.7,0.084, 1.438,0.126L 15.59,15.44l-3.002,8.766L 7.596,9.738 c 0.828-0.042, 1.57-0.126, 1.57-0.126c 0.738-0.086, 0.652-1.142-0.086-1.102c0,0-2.222,0.17-3.654,0.17 c-0.256,0-0.56-0.006-0.882-0.016C 6.994,5.038, 11.21,2.642, 16,2.642c 3.57,0, 6.82,1.33, 9.262,3.506 c-0.060-0.004-0.116-0.012-0.178-0.012c-1.348,0-2.304,1.142-2.304,2.37c0,1.102, 0.652,2.032, 1.346,3.134 c 0.524,0.892, 1.132,2.034, 1.132,3.684c0,1.142-0.45,2.47-1.042,4.32l-1.37,4.45L 17.886,9.738z M 29.714,16 c0,4.928-2.742,9.23-6.82,11.542l 4.19-11.794c 0.782-1.906, 1.042-3.428, 1.042-4.784c0-0.492-0.032-0.948-0.092-1.374 C 29.104,11.494, 29.714,13.678, 29.714,16z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 26,0L 6,0 C 2.686,0,0,2.686,0,6l0,20 c0,3.314, 2.686,6, 6,6l 20,0 c 3.314,0, 6-2.686, 6-6L 32,6 C 32,2.686, 29.314,0, 26,0z M 3.68,16c0-1.74, 0.384-3.392, 1.068-4.882l 5.876,15.682C 6.514,24.854, 3.68,20.75, 3.68,16z M 16,28c-1.21,0-2.376-0.172-3.48-0.488 l 3.856-10.074l 3.628,9.716c 0.024,0.060, 0.056,0.114, 0.088,0.166C 18.812,27.76, 17.436,28, 16,28z M 17.694,10.374 C 18.436,10.336, 19.104,10.26, 19.104,10.26c 0.666-0.078, 0.586-1.026-0.078-0.99c0,0-1.996,0.152-3.284,0.152 c-1.21,0-3.244-0.152-3.244-0.152C 11.836,9.234, 11.758,10.222, 12.42,10.26c0,0, 0.628,0.076, 1.292,0.112l 1.92,5.124l-2.944,7.878 L 8.45,10.374C 9.192,10.336, 9.86,10.26, 9.86,10.26c 0.664-0.078, 0.586-1.026-0.078-0.99c0,0-1.996,0.152-3.284,0.152 c-0.23,0-0.504-0.006-0.792-0.014C 7.91,6.152, 11.696,4, 16,4c 3.208,0, 6.128,1.196, 8.32,3.15c-0.054-0.004-0.104-0.010-0.16-0.010 c-1.212,0-2.070,1.026-2.070,2.13c0,0.99, 0.586,1.826, 1.21,2.816c 0.47,0.8, 0.804,1.242, 0.804,2.724 c0,1.026-0.404,2.22-0.936,3.88l-1.23,3.998L 17.694,10.374z M 22.192,26.37l 3.764-10.596c 0.702-1.712, 0.936-3.080, 0.936-4.298 c0-0.442-0.028-0.852-0.082-1.234C 27.772,11.952, 28.32,13.914, 28.32,16C 28.32,20.428, 25.856,24.292, 22.192,26.37z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32.183998107910156" height="32" viewBox="0 0 32.183998107910156 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 27.672,5.046c-7.286-0.49-15.924-0.624-23.344,0C 2.024,5.304, 0.446,8.108, 0.274,10.238 c-0.364,4.474-0.364,7.020,0,11.494c 0.174,2.13, 1.712,4.95, 4.056,5.246c 7.508,0.492, 16.102,0.56, 23.344,0 c 2.268-0.394, 3.882-3.116, 4.056-5.246c 0.364-4.474, 0.364-7.298,0-11.774C 31.554,7.828, 30.282,5.142, 27.672,5.046z M 12,21.66L 12,10.19 l 10,5.736L 12,21.66z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 16,0C 7.164,0,0,7.164,0,16s 7.164,16, 16,16s 16-7.164, 16-16C 32,7.162, 24.836,0, 16,0z M 25.83,19.582 c-0.108,1.332-1.118,3.032-2.534,3.278c-4.526,0.35-9.898,0.308-14.59,0c-1.464-0.184-2.426-1.948-2.534-3.278 c-0.228-2.796-0.228-4.388,0-7.184C 6.28,11.068, 7.266,9.314, 8.706,9.154c 4.638-0.39, 10.036-0.306, 14.59,0 c 1.632,0.060, 2.426,1.738, 2.534,3.070C 26.056,15.020, 26.056,16.786, 25.83,19.582zM 14,20L 20,16L 14,12 z"></path></g></svg>
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8"?> <!-- Generator: IcoMoon.io --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g><path d="M 14,20L 20,16L 14,12 zM 26,0L 6,0 C 2.686,0,0,2.686,0,6l0,20 c0,3.314, 2.686,6, 6,6l 20,0 c 3.314,0, 6-2.686, 6-6L 32,6 C 32,2.686, 29.314,0, 26,0z M 25.83,19.582c-0.108,1.332-1.118,3.032-2.534,3.278c-4.526,0.35-9.898,0.308-14.59,0c-1.464-0.184-2.426-1.948-2.534-3.278 c-0.228-2.796-0.228-4.388,0-7.184C 6.28,11.068, 7.266,9.314, 8.706,9.154c 4.638-0.39, 10.036-0.306, 14.59,0 c 1.632,0.060, 2.426,1.738, 2.534,3.070C 26.056,15.020, 26.056,16.786, 25.83,19.582z"></path></g></svg>
         | 
| @@ -0,0 +1,2 @@ | |
| 1 | 
            +
            var _self="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{},Prism=function(){var e=/\blang(?:uage)?-(?!\*)(\w+)\b/i,n=_self.Prism={util:{encode:function(e){return e instanceof t?new t(e.type,n.util.encode(e.content),e.alias):"Array"===n.util.type(e)?e.map(n.util.encode):e.replace(/&/g,"&").replace(/</g,"<").replace(/\u00a0/g," ")},type:function(e){return Object.prototype.toString.call(e).match(/\[object (\w+)\]/)[1]},clone:function(e){var t=n.util.type(e);switch(t){case"Object":var i={};for(var a in e)e.hasOwnProperty(a)&&(i[a]=n.util.clone(e[a]));return i;case"Array":return e.map&&e.map(function(e){return n.util.clone(e)})}return e}},languages:{extend:function(e,t){var i=n.util.clone(n.languages[e]);for(var a in t)i[a]=t[a];return i},insertBefore:function(e,t,i,a){a=a||n.languages;var s=a[e];if(2==arguments.length){i=arguments[1];for(var r in i)i.hasOwnProperty(r)&&(s[r]=i[r]);return s}var o={};for(var l in s)if(s.hasOwnProperty(l)){if(l==t)for(var r in i)i.hasOwnProperty(r)&&(o[r]=i[r]);o[l]=s[l]}return n.languages.DFS(n.languages,function(n,t){t===a[e]&&n!=e&&(this[n]=o)}),a[e]=o},DFS:function(e,t,i){for(var a in e)e.hasOwnProperty(a)&&(t.call(e,a,e[a],i||a),"Object"===n.util.type(e[a])?n.languages.DFS(e[a],t):"Array"===n.util.type(e[a])&&n.languages.DFS(e[a],t,a))}},plugins:{},highlightAll:function(e,t){for(var i,a=document.querySelectorAll('code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'),s=0;i=a[s++];)n.highlightElement(i,e===!0,t)},highlightElement:function(t,i,a){for(var s,r,o=t;o&&!e.test(o.className);)o=o.parentNode;o&&(s=(o.className.match(e)||[,""])[1],r=n.languages[s]),t.className=t.className.replace(e,"").replace(/\s+/g," ")+" language-"+s,o=t.parentNode,/pre/i.test(o.nodeName)&&(o.className=o.className.replace(e,"").replace(/\s+/g," ")+" language-"+s);var l=t.textContent,p={element:t,language:s,grammar:r,code:l};if(!l||!r)return void n.hooks.run("complete",p);if(n.hooks.run("before-highlight",p),i&&_self.Worker){var c=new Worker(n.filename);c.onmessage=function(e){p.highlightedCode=e.data,n.hooks.run("before-insert",p),p.element.innerHTML=p.highlightedCode,a&&a.call(p.element),n.hooks.run("after-highlight",p),n.hooks.run("complete",p)},c.postMessage(JSON.stringify({language:p.language,code:p.code,immediateClose:!0}))}else p.highlightedCode=n.highlight(p.code,p.grammar,p.language),n.hooks.run("before-insert",p),p.element.innerHTML=p.highlightedCode,a&&a.call(t),n.hooks.run("after-highlight",p),n.hooks.run("complete",p)},highlight:function(e,i,a){var s=n.tokenize(e,i);return t.stringify(n.util.encode(s),a)},tokenize:function(e,t){var i=n.Token,a=[e],s=t.rest;if(s){for(var r in s)t[r]=s[r];delete t.rest}e:for(var r in t)if(t.hasOwnProperty(r)&&t[r]){var o=t[r];o="Array"===n.util.type(o)?o:[o];for(var l=0;l<o.length;++l){var p=o[l],c=p.inside,d=!!p.lookbehind,m=0,u=p.alias;p=p.pattern||p;for(var g=0;g<a.length;g++){var f=a[g];if(a.length>e.length)break e;if(!(f instanceof i)){p.lastIndex=0;var b=p.exec(f);if(b){d&&(m=b[1].length);var h=b.index-1+m,b=b[0].slice(m),v=b.length,w=h+v,k=f.slice(0,h+1),y=f.slice(w+1),x=[g,1];k&&x.push(k);var _=new i(r,c?n.tokenize(b,c):b,u);x.push(_),y&&x.push(y),Array.prototype.splice.apply(a,x)}}}}}return a},hooks:{all:{},add:function(e,t){var i=n.hooks.all;i[e]=i[e]||[],i[e].push(t)},run:function(e,t){var i=n.hooks.all[e];if(i&&i.length)for(var a,s=0;a=i[s++];)a(t)}}},t=n.Token=function(e,n,t){this.type=e,this.content=n,this.alias=t};if(t.stringify=function(e,i,a){if("string"==typeof e)return e;if("Array"===n.util.type(e))return e.map(function(n){return t.stringify(n,i,e)}).join("");var s={type:e.type,content:t.stringify(e.content,i,a),tag:"span",classes:["token",e.type],attributes:{},language:i,parent:a};if("comment"==s.type&&(s.attributes.spellcheck="true"),e.alias){var r="Array"===n.util.type(e.alias)?e.alias:[e.alias];Array.prototype.push.apply(s.classes,r)}n.hooks.run("wrap",s);var o="";for(var l in s.attributes)o+=(o?" ":"")+l+'="'+(s.attributes[l]||"")+'"';return"<"+s.tag+' class="'+s.classes.join(" ")+'" '+o+">"+s.content+"</"+s.tag+">"},!_self.document)return _self.addEventListener?(_self.addEventListener("message",function(e){var t=JSON.parse(e.data),i=t.language,a=t.code,s=t.immediateClose;_self.postMessage(n.highlight(a,n.languages[i],i)),s&&_self.close()},!1),_self.Prism):_self.Prism;var i=document.getElementsByTagName("script");return i=i[i.length-1],i&&(n.filename=i.src,document.addEventListener&&!i.hasAttribute("data-manual")&&document.addEventListener("DOMContentLoaded",n.highlightAll)),_self.Prism}();"undefined"!=typeof module&&module.exports&&(module.exports=Prism),"undefined"!=typeof global&&(global.Prism=Prism),Prism.languages.markup={comment:/<!--[\w\W]*?-->/,prolog:/<\?[\w\W]+?\?>/,doctype:/<!DOCTYPE[\w\W]+?>/,cdata:/<!\[CDATA\[[\w\W]*?]]>/i,tag:{pattern:/<\/?(?!\d)[^\s>\/=.$<]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\w\W])*\1|[^\s'">=]+))?)*\s*\/?>/i,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/i,inside:{punctuation:/[=>"']/}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},Prism.hooks.add("wrap",function(e){"entity"===e.type&&(e.attributes.title=e.content.replace(/&/,"&"))}),Prism.languages.xml=Prism.languages.markup,Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup,Prism.languages.css={comment:/\/\*[\w\W]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^\{\}\s][^\{\};]*?(?=\s*\{)/,string:/("|')(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1/,property:/(\b|\B)[\w-]+(?=\s*:)/i,important:/\B!important\b/i,"function":/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/},Prism.languages.css.atrule.inside.rest=Prism.util.clone(Prism.languages.css),Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/(<style[\w\W]*?>)[\w\W]*?(?=<\/style>)/i,lookbehind:!0,inside:Prism.languages.css,alias:"language-css"}}),Prism.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|').*?\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:Prism.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:Prism.languages.css}},alias:"language-css"}},Prism.languages.markup.tag)),Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\w\W]*?\*\//,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0}],string:/(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,"class-name":{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/i,lookbehind:!0,inside:{punctuation:/(\.|\\)/}},keyword:/\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,"boolean":/\b(true|false)\b/,"function":/[a-z0-9_]+(?=\()/i,number:/\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,punctuation:/[{}[\];(),.:]/},Prism.languages.javascript=Prism.languages.extend("clike",{keyword:/\b(as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,number:/\b-?(0x[\dA-Fa-f]+|0b[01]+|0o[0-7]+|\d*\.?\d+([Ee][+-]?\d+)?|NaN|Infinity)\b/,"function":/[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*(?=\()/i}),Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/(^|[^\/])\/(?!\/)(\[.+?]|\\.|[^\/\\\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})]))/,lookbehind:!0}}),Prism.languages.insertBefore("javascript","class-name",{"template-string":{pattern:/`(?:\\`|\\?[^`])*`/,inside:{interpolation:{pattern:/\$\{[^}]+\}/,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}}}),Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{script:{pattern:/(<script[\w\W]*?>)[\w\W]*?(?=<\/script>)/i,lookbehind:!0,inside:Prism.languages.javascript,alias:"language-javascript"}}),Prism.languages.js=Prism.languages.javascript,!function(e){e.languages.ruby=e.languages.extend("clike",{comment:/#(?!\{[^\r\n]*?\}).*/,keyword:/\b(alias|and|BEGIN|begin|break|case|class|def|define_method|defined|do|each|else|elsif|END|end|ensure|false|for|if|in|module|new|next|nil|not|or|raise|redo|require|rescue|retry|return|self|super|then|throw|true|undef|unless|until|when|while|yield)\b/});var n={pattern:/#\{[^}]+\}/,inside:{delimiter:{pattern:/^#\{|\}$/,alias:"tag"},rest:e.util.clone(e.languages.ruby)}};e.languages.insertBefore("ruby","keyword",{regex:[{pattern:/%r([^a-zA-Z0-9\s\{\(\[<])(?:[^\\]|\\[\s\S])*?\1[gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r\((?:[^()\\]|\\[\s\S])*\)[gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}[gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r\[(?:[^\[\]\\]|\\[\s\S])*\][gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r<(?:[^<>\\]|\\[\s\S])*>[gim]{0,3}/,inside:{interpolation:n}},{pattern:/(^|[^\/])\/(?!\/)(\[.+?]|\\.|[^\/\r\n])+\/[gim]{0,3}(?=\s*($|[\r\n,.;})]))/,lookbehind:!0}],variable:/[@$]+[a-zA-Z_][a-zA-Z_0-9]*(?:[?!]|\b)/,symbol:/:[a-zA-Z_][a-zA-Z_0-9]*(?:[?!]|\b)/}),e.languages.insertBefore("ruby","number",{builtin:/\b(Array|Bignum|Binding|Class|Continuation|Dir|Exception|FalseClass|File|Stat|File|Fixnum|Fload|Hash|Integer|IO|MatchData|Method|Module|NilClass|Numeric|Object|Proc|Range|Regexp|String|Struct|TMS|Symbol|ThreadGroup|Thread|Time|TrueClass)\b/,constant:/\b[A-Z][a-zA-Z_0-9]*(?:[?!]|\b)/}),e.languages.ruby.string=[{pattern:/%[qQiIwWxs]?([^a-zA-Z0-9\s\{\(\[<])(?:[^\\]|\\[\s\S])*?\1/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\((?:[^()\\]|\\[\s\S])*\)/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\[(?:[^\[\]\\]|\\[\s\S])*\]/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?<(?:[^<>\\]|\\[\s\S])*>/,inside:{interpolation:n}},{pattern:/("|')(#\{[^}]+\}|\\(?:\r?\n|\r)|\\?.)*?\1/,inside:{interpolation:n}}]}(Prism),Prism.languages.git={comment:/^#.*/m,deleted:/^[-–].*/m,inserted:/^\+.*/m,string:/("|')(\\?.)*?\1/m,command:{pattern:/^.*\$ git .*$/m,inside:{parameter:/\s(--|-)\w+/m}},coord:/^@@.*@@$/m,commit_sha1:/^commit \w{40}$/m},!function(e){e.languages.haml={"multiline-comment":{pattern:/((?:^|\r?\n|\r)([\t ]*))(?:\/|-#).*((?:\r?\n|\r)\2[\t ]+.+)*/,lookbehind:!0,alias:"comment"},"multiline-code":[{pattern:/((?:^|\r?\n|\r)([\t ]*)(?:[~-]|[&!]?=)).*,[\t ]*((?:\r?\n|\r)\2[\t ]+.*,[\t ]*)*((?:\r?\n|\r)\2[\t ]+.+)/,lookbehind:!0,inside:{rest:e.languages.ruby}},{pattern:/((?:^|\r?\n|\r)([\t ]*)(?:[~-]|[&!]?=)).*\|[\t ]*((?:\r?\n|\r)\2[\t ]+.*\|[\t ]*)*/,lookbehind:!0,inside:{rest:e.languages.ruby}}],filter:{pattern:/((?:^|\r?\n|\r)([\t ]*)):[\w-]+((?:\r?\n|\r)(?:\2[\t ]+.+|\s*?(?=\r?\n|\r)))+/,lookbehind:!0,inside:{"filter-name":{pattern:/^:[\w-]+/,alias:"variable"}}},markup:{pattern:/((?:^|\r?\n|\r)[\t ]*)<.+/,lookbehind:!0,inside:{rest:e.languages.markup}},doctype:{pattern:/((?:^|\r?\n|\r)[\t ]*)!!!(?: .+)?/,lookbehind:!0},tag:{pattern:/((?:^|\r?\n|\r)[\t ]*)[%.#][\w\-#.]*[\w\-](?:\([^)]+\)|\{(?:\{[^}]+\}|[^}])+\}|\[[^\]]+\])*[\/<>]*/,lookbehind:!0,inside:{attributes:[{pattern:/(^|[^#])\{(?:\{[^}]+\}|[^}])+\}/,lookbehind:!0,inside:{rest:e.languages.ruby}},{pattern:/\([^)]+\)/,inside:{"attr-value":{pattern:/(=\s*)(?:"(?:\\?.)*?"|[^)\s]+)/,lookbehind:!0},"attr-name":/[\w:-]+(?=\s*!?=|\s*[,)])/,punctuation:/[=(),]/}},{pattern:/\[[^\]]+\]/,inside:{rest:e.languages.ruby}}],punctuation:/[<>]/}},code:{pattern:/((?:^|\r?\n|\r)[\t ]*(?:[~-]|[&!]?=)).+/,lookbehind:!0,inside:{rest:e.languages.ruby}},interpolation:{pattern:/#\{[^}]+\}/,inside:{delimiter:{pattern:/^#\{|\}$/,alias:"punctuation"},rest:e.languages.ruby}},punctuation:{pattern:/((?:^|\r?\n|\r)[\t ]*)[~=\-&!]+/,lookbehind:!0}};for(var n="((?:^|\\r?\\n|\\r)([\\t ]*)):{{filter_name}}((?:\\r?\\n|\\r)(?:\\2[\\t ]+.+|\\s*?(?=\\r?\\n|\\r)))+",t=["css",{filter:"coffee",language:"coffeescript"},"erb","javascript","less","markdown","ruby","scss","textile"],i={},a=0,s=t.length;s>a;a++){var r=t[a];r="string"==typeof r?{filter:r,language:r}:r,e.languages[r.language]&&(i["filter-"+r.filter]={pattern:RegExp(n.replace("{{filter_name}}",r.filter)),lookbehind:!0,inside:{"filter-name":{pattern:/^:[\w-]+/,alias:"variable"},rest:e.languages[r.language]}})}e.languages.insertBefore("haml","filter",i)}(Prism),!function(e){var n=/\{\{\{[\w\W]+?\}\}\}|\{\{[\w\W]+?\}\}/g;e.languages.handlebars=e.languages.extend("markup",{handlebars:{pattern:n,inside:{delimiter:{pattern:/^\{\{\{?|\}\}\}?$/i,alias:"punctuation"},string:/(["'])(\\?.)*?\1/,number:/\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee][+-]?\d+)?)\b/,"boolean":/\b(true|false)\b/,block:{pattern:/^(\s*~?\s*)[#\/]\S+?(?=\s*~?\s*$|\s)/i,lookbehind:!0,alias:"keyword"},brackets:{pattern:/\[[^\]]+\]/,inside:{punctuation:/\[|\]/,variable:/[\w\W]+/}},punctuation:/[!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]/,variable:/[^!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~\s]+/}}}),e.languages.insertBefore("handlebars","tag",{"handlebars-comment":{pattern:/\{\{![\w\W]*?\}\}/,alias:["handlebars","comment"]}}),e.hooks.add("before-highlight",function(e){"handlebars"===e.language&&(e.tokenStack=[],e.backupCode=e.code,e.code=e.code.replace(n,function(n){return e.tokenStack.push(n),"___HANDLEBARS"+e.tokenStack.length+"___"}))}),e.hooks.add("before-insert",function(e){"handlebars"===e.language&&(e.code=e.backupCode,delete e.backupCode)}),e.hooks.add("after-highlight",function(n){if("handlebars"===n.language){for(var t,i=0;t=n.tokenStack[i];i++)n.highlightedCode=n.highlightedCode.replace("___HANDLEBARS"+(i+1)+"___",e.highlight(t,n.grammar,"handlebars").replace(/\$/g,"$$$$"));n.element.innerHTML=n.highlightedCode}})}(Prism),Prism.languages.http={"request-line":{pattern:/^(POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\b\shttps?:\/\/\S+\sHTTP\/[0-9.]+/m,inside:{property:/^(POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\b/,"attr-name":/:\w+/}},"response-status":{pattern:/^HTTP\/1.[01] [0-9]+.*/m,inside:{property:{pattern:/(^HTTP\/1.[01] )[0-9]+.*/i,lookbehind:!0}}},"header-name":{pattern:/^[\w-]+:(?=.)/m,alias:"keyword"}};var httpLanguages={"application/json":Prism.languages.javascript,"application/xml":Prism.languages.markup,"text/xml":Prism.languages.markup,"text/html":Prism.languages.markup};for(var contentType in httpLanguages)if(httpLanguages[contentType]){var options={};options[contentType]={pattern:new RegExp("(content-type:\\s*"+contentType+"[\\w\\W]*?)(?:\\r?\\n|\\r){2}[\\w\\W]*","i"),lookbehind:!0,inside:{rest:httpLanguages[contentType]}},Prism.languages.insertBefore("http","header-name",options)}Prism.languages.php=Prism.languages.extend("clike",{keyword:/\b(and|or|xor|array|as|break|case|cfunction|class|const|continue|declare|default|die|do|else|elseif|enddeclare|endfor|endforeach|endif|endswitch|endwhile|extends|for|foreach|function|include|include_once|global|if|new|return|static|switch|use|require|require_once|var|while|abstract|interface|public|implements|private|protected|parent|throw|null|echo|print|trait|namespace|final|yield|goto|instanceof|finally|try|catch)\b/i,constant:/\b[A-Z0-9_]{2,}\b/,comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0}}),Prism.languages.insertBefore("php","class-name",{"shell-comment":{pattern:/(^|[^\\])#.*/,lookbehind:!0,alias:"comment"}}),Prism.languages.insertBefore("php","keyword",{delimiter:/\?>|<\?(?:php)?/i,variable:/\$\w+\b/i,"package":{pattern:/(\\|namespace\s+|use\s+)[\w\\]+/,lookbehind:!0,inside:{punctuation:/\\/}}}),Prism.languages.insertBefore("php","operator",{property:{pattern:/(->)[\w]+/,lookbehind:!0}}),Prism.languages.markup&&(Prism.hooks.add("before-highlight",function(e){"php"===e.language&&(e.tokenStack=[],e.backupCode=e.code,e.code=e.code.replace(/(?:<\?php|<\?)[\w\W]*?(?:\?>)/gi,function(n){return e.tokenStack.push(n),"{{{PHP"+e.tokenStack.length+"}}}"}))}),Prism.hooks.add("before-insert",function(e){"php"===e.language&&(e.code=e.backupCode,delete e.backupCode)}),Prism.hooks.add("after-highlight",function(e){if("php"===e.language){for(var n,t=0;n=e.tokenStack[t];t++)e.highlightedCode=e.highlightedCode.replace("{{{PHP"+(t+1)+"}}}",Prism.highlight(n,e.grammar,"php").replace(/\$/g,"$$$$"));e.element.innerHTML=e.highlightedCode}}),Prism.hooks.add("wrap",function(e){"php"===e.language&&"markup"===e.type&&(e.content=e.content.replace(/(\{\{\{PHP[0-9]+\}\}\})/g,'<span class="token php">$1</span>'))}),Prism.languages.insertBefore("php","comment",{markup:{pattern:/<[^?]\/?(.*?)>/,inside:Prism.languages.markup},php:/\{\{\{PHP[0-9]+\}\}\}/})),Prism.languages.python={"triple-quoted-string":{pattern:/"""[\s\S]+?"""|'''[\s\S]+?'''/,alias:"string"},comment:{pattern:/(^|[^\\])#.*/,lookbehind:!0},string:/("|')(?:\\?.)*?\1/,"function":{pattern:/((?:^|\s)def[ \t]+)[a-zA-Z_][a-zA-Z0-9_]*(?=\()/g,lookbehind:!0},"class-name":{pattern:/(\bclass\s+)[a-z0-9_]+/i,lookbehind:!0},keyword:/\b(?:as|assert|async|await|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|pass|print|raise|return|try|while|with|yield)\b/,"boolean":/\b(?:True|False)\b/,number:/\b-?(?:0[bo])?(?:(?:\d|0x[\da-f])[\da-f]*\.?\d*|\.\d+)(?:e[+-]?\d+)?j?\b/i,operator:/[-+%=]=?|!=|\*\*?=?|\/\/?=?|<[<=>]?|>[=>]?|[&|^~]|\b(?:or|and|not)\b/,punctuation:/[{}[\];(),.:]/},!function(e){e.languages.sass=e.languages.extend("css",{comment:{pattern:/^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t]+.+)*/m,lookbehind:!0}}),e.languages.insertBefore("sass","atrule",{"atrule-line":{pattern:/^(?:[ \t]*)[@+=].+/m,inside:{atrule:/(?:@[\w-]+|[+=])/m}}}),delete e.languages.sass.atrule;var n=/((\$[-_\w]+)|(#\{\$[-_\w]+\}))/i,t=[/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|or|not)\b/,{pattern:/(\s+)-(?=\s)/,lookbehind:!0}];e.languages.insertBefore("sass","property",{"variable-line":{pattern:/^[ \t]*\$.+/m,inside:{punctuation:/:/,variable:n,operator:t}},"property-line":{pattern:/^[ \t]*(?:[^:\s]+ *:.*|:[^:\s]+.*)/m,inside:{property:[/[^:\s]+(?=\s*:)/,{pattern:/(:)[^:\s]+/,lookbehind:!0}],punctuation:/:/,variable:n,operator:t,important:e.languages.sass.important}}}),delete e.languages.sass.property,delete e.languages.sass.important,delete e.languages.sass.selector,e.languages.insertBefore("sass","punctuation",{selector:{pattern:/([ \t]*)\S(?:,?[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,?[^,\r\n]+)*)*/,lookbehind:!0}})}(Prism),Prism.languages.scss=Prism.languages.extend("css",{comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0},atrule:{pattern:/@[\w-]+(?:\([^()]+\)|[^(])*?(?=\s+[{;])/,inside:{rule:/@[\w-]+/}},url:/(?:[-a-z]+-)*url(?=\()/i,selector:{pattern:/(?=\S)[^@;\{\}\(\)]?([^@;\{\}\(\)]|&|#\{\$[-_\w]+\})+(?=\s*\{(\}|\s|[^\}]+(:|\{)[^\}]+))/m,inside:{placeholder:/%[-_\w]+/}}}),Prism.languages.insertBefore("scss","atrule",{keyword:[/@(?:if|else(?: if)?|for|each|while|import|extend|debug|warn|mixin|include|function|return|content)/i,{pattern:/( +)(?:from|through)(?= )/,lookbehind:!0}]}),Prism.languages.insertBefore("scss","property",{variable:/\$[-_\w]+|#\{\$[-_\w]+\}/}),Prism.languages.insertBefore("scss","function",{placeholder:{pattern:/%[-_\w]+/,alias:"selector"},statement:/\B!(?:default|optional)\b/i,"boolean":/\b(?:true|false)\b/,"null":/\bnull\b/,operator:{pattern:/(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|or|not)(?=\s)/,lookbehind:!0}}),Prism.languages.scss.atrule.inside.rest=Prism.util.clone(Prism.languages.scss),Prism.languages.vim={string:/"(?:[^"\\\r\n]|\\.)*"|'(?:[^'\r\n]|'')*'/,comment:/".*/,"function":/\w+(?=\()/,keyword:/\b(?:ab|abbreviate|abc|abclear|abo|aboveleft|al|all|arga|argadd|argd|argdelete|argdo|arge|argedit|argg|argglobal|argl|arglocal|ar|args|argu|argument|as|ascii|bad|badd|ba|ball|bd|bdelete|be|bel|belowright|bf|bfirst|bl|blast|bm|bmodified|bn|bnext|bN|bNext|bo|botright|bp|bprevious|brea|break|breaka|breakadd|breakd|breakdel|breakl|breaklist|br|brewind|bro|browse|bufdo|b|buffer|buffers|bun|bunload|bw|bwipeout|ca|cabbrev|cabc|cabclear|caddb|caddbuffer|cad|caddexpr|caddf|caddfile|cal|call|cat|catch|cb|cbuffer|cc|ccl|cclose|cd|ce|center|cex|cexpr|cf|cfile|cfir|cfirst|cgetb|cgetbuffer|cgete|cgetexpr|cg|cgetfile|c|change|changes|chd|chdir|che|checkpath|checkt|checktime|cla|clast|cl|clist|clo|close|cmapc|cmapclear|cnew|cnewer|cn|cnext|cN|cNext|cnf|cnfile|cNfcNfile|cnorea|cnoreabbrev|col|colder|colo|colorscheme|comc|comclear|comp|compiler|conf|confirm|con|continue|cope|copen|co|copy|cpf|cpfile|cp|cprevious|cq|cquit|cr|crewind|cuna|cunabbrev|cu|cunmap|cw|cwindow|debugg|debuggreedy|delc|delcommand|d|delete|delf|delfunction|delm|delmarks|diffg|diffget|diffoff|diffpatch|diffpu|diffput|diffsplit|diffthis|diffu|diffupdate|dig|digraphs|di|display|dj|djump|dl|dlist|dr|drop|ds|dsearch|dsp|dsplit|earlier|echoe|echoerr|echom|echomsg|echon|e|edit|el|else|elsei|elseif|em|emenu|endfo|endfor|endf|endfunction|endfun|en|endif|endt|endtry|endw|endwhile|ene|enew|ex|exi|exit|exu|exusage|f|file|files|filetype|fina|finally|fin|find|fini|finish|fir|first|fix|fixdel|fo|fold|foldc|foldclose|folddoc|folddoclosed|foldd|folddoopen|foldo|foldopen|for|fu|fun|function|go|goto|gr|grep|grepa|grepadd|ha|hardcopy|h|help|helpf|helpfind|helpg|helpgrep|helpt|helptags|hid|hide|his|history|ia|iabbrev|iabc|iabclear|if|ij|ijump|il|ilist|imapc|imapclear|in|inorea|inoreabbrev|isearch|isp|isplit|iuna|iunabbrev|iu|iunmap|j|join|ju|jumps|k|keepalt|keepj|keepjumps|kee|keepmarks|laddb|laddbuffer|lad|laddexpr|laddf|laddfile|lan|language|la|last|later|lb|lbuffer|lc|lcd|lch|lchdir|lcl|lclose|let|left|lefta|leftabove|lex|lexpr|lf|lfile|lfir|lfirst|lgetb|lgetbuffer|lgete|lgetexpr|lg|lgetfile|lgr|lgrep|lgrepa|lgrepadd|lh|lhelpgrep|l|list|ll|lla|llast|lli|llist|lmak|lmake|lm|lmap|lmapc|lmapclear|lnew|lnewer|lne|lnext|lN|lNext|lnf|lnfile|lNf|lNfile|ln|lnoremap|lo|loadview|loc|lockmarks|lockv|lockvar|lol|lolder|lop|lopen|lpf|lpfile|lp|lprevious|lr|lrewind|ls|lt|ltag|lu|lunmap|lv|lvimgrep|lvimgrepa|lvimgrepadd|lw|lwindow|mak|make|ma|mark|marks|mat|match|menut|menutranslate|mk|mkexrc|mks|mksession|mksp|mkspell|mkvie|mkview|mkv|mkvimrc|mod|mode|m|move|mzf|mzfile|mz|mzscheme|nbkey|new|n|next|N|Next|nmapc|nmapclear|noh|nohlsearch|norea|noreabbrev|nu|number|nun|nunmap|omapc|omapclear|on|only|o|open|opt|options|ou|ounmap|pc|pclose|ped|pedit|pe|perl|perld|perldo|po|pop|popu|popu|popup|pp|ppop|pre|preserve|prev|previous|p|print|P|Print|profd|profdel|prof|profile|promptf|promptfind|promptr|promptrepl|ps|psearch|pta|ptag|ptf|ptfirst|ptj|ptjump|ptl|ptlast|ptn|ptnext|ptN|ptNext|ptp|ptprevious|ptr|ptrewind|pts|ptselect|pu|put|pw|pwd|pyf|pyfile|py|python|qa|qall|q|quit|quita|quitall|r|read|rec|recover|redi|redir|red|redo|redr|redraw|redraws|redrawstatus|reg|registers|res|resize|ret|retab|retu|return|rew|rewind|ri|right|rightb|rightbelow|rub|ruby|rubyd|rubydo|rubyf|rubyfile|ru|runtime|rv|rviminfo|sal|sall|san|sandbox|sa|sargument|sav|saveas|sba|sball|sbf|sbfirst|sbl|sblast|sbm|sbmodified|sbn|sbnext|sbN|sbNext|sbp|sbprevious|sbr|sbrewind|sb|sbuffer|scripte|scriptencoding|scrip|scriptnames|se|set|setf|setfiletype|setg|setglobal|setl|setlocal|sf|sfind|sfir|sfirst|sh|shell|sign|sil|silent|sim|simalt|sla|slast|sl|sleep|sm|smagic|sm|smap|smapc|smapclear|sme|smenu|sn|snext|sN|sNext|sni|sniff|sno|snomagic|snor|snoremap|snoreme|snoremenu|sor|sort|so|source|spelld|spelldump|spe|spellgood|spelli|spellinfo|spellr|spellrepall|spellu|spellundo|spellw|spellwrong|sp|split|spr|sprevious|sre|srewind|sta|stag|startg|startgreplace|star|startinsert|startr|startreplace|stj|stjump|st|stop|stopi|stopinsert|sts|stselect|sun|sunhide|sunm|sunmap|sus|suspend|sv|sview|syncbind|t|tab|tabc|tabclose|tabd|tabdo|tabe|tabedit|tabf|tabfind|tabfir|tabfirst|tabl|tablast|tabm|tabmove|tabnew|tabn|tabnext|tabN|tabNext|tabo|tabonly|tabp|tabprevious|tabr|tabrewind|tabs|ta|tag|tags|tc|tcl|tcld|tcldo|tclf|tclfile|te|tearoff|tf|tfirst|th|throw|tj|tjump|tl|tlast|tm|tm|tmenu|tn|tnext|tN|tNext|to|topleft|tp|tprevious|tr|trewind|try|ts|tselect|tu|tu|tunmenu|una|unabbreviate|u|undo|undoj|undojoin|undol|undolist|unh|unhide|unlet|unlo|unlockvar|unm|unmap|up|update|verb|verbose|ve|version|vert|vertical|vie|view|vim|vimgrep|vimgrepa|vimgrepadd|vi|visual|viu|viusage|vmapc|vmapclear|vne|vnew|vs|vsplit|vu|vunmap|wa|wall|wh|while|winc|wincmd|windo|winp|winpos|win|winsize|wn|wnext|wN|wNext|wp|wprevious|wq|wqa|wqall|w|write|ws|wsverb|wv|wviminfo|X|xa|xall|x|xit|xm|xmap|xmapc|xmapclear|xme|xmenu|XMLent|XMLns|xn|xnoremap|xnoreme|xnoremenu|xu|xunmap|y|yank)\b/,builtin:/\b(?:autocmd|acd|ai|akm|aleph|allowrevins|altkeymap|ambiwidth|ambw|anti|antialias|arab|arabic|arabicshape|ari|arshape|autochdir|autoindent|autoread|autowrite|autowriteall|aw|awa|background|backspace|backup|backupcopy|backupdir|backupext|backupskip|balloondelay|ballooneval|balloonexpr|bdir|bdlay|beval|bex|bexpr|bg|bh|bin|binary|biosk|bioskey|bk|bkc|bomb|breakat|brk|browsedir|bs|bsdir|bsk|bt|bufhidden|buflisted|buftype|casemap|ccv|cdpath|cedit|cfu|ch|charconvert|ci|cin|cindent|cink|cinkeys|cino|cinoptions|cinw|cinwords|clipboard|cmdheight|cmdwinheight|cmp|cms|columns|com|comments|commentstring|compatible|complete|completefunc|completeopt|consk|conskey|copyindent|cot|cpo|cpoptions|cpt|cscopepathcomp|cscopeprg|cscopequickfix|cscopetag|cscopetagorder|cscopeverbose|cspc|csprg|csqf|cst|csto|csverb|cuc|cul|cursorcolumn|cursorline|cwh|debug|deco|def|define|delcombine|dex|dg|dict|dictionary|diff|diffexpr|diffopt|digraph|dip|dir|directory|dy|ea|ead|eadirection|eb|ed|edcompatible|ef|efm|ei|ek|enc|encoding|endofline|eol|ep|equalalways|equalprg|errorbells|errorfile|errorformat|esckeys|et|eventignore|expandtab|exrc|fcl|fcs|fdc|fde|fdi|fdl|fdls|fdm|fdn|fdo|fdt|fen|fenc|fencs|fex|ff|ffs|fileencoding|fileencodings|fileformat|fileformats|fillchars|fk|fkmap|flp|fml|fmr|foldcolumn|foldenable|foldexpr|foldignore|foldlevel|foldlevelstart|foldmarker|foldmethod|foldminlines|foldnestmax|foldtext|formatexpr|formatlistpat|formatoptions|formatprg|fp|fs|fsync|ft|gcr|gd|gdefault|gfm|gfn|gfs|gfw|ghr|gp|grepformat|grepprg|gtl|gtt|guicursor|guifont|guifontset|guifontwide|guiheadroom|guioptions|guipty|guitablabel|guitabtooltip|helpfile|helpheight|helplang|hf|hh|hi|hidden|highlight|hk|hkmap|hkmapp|hkp|hl|hlg|hls|hlsearch|ic|icon|iconstring|ignorecase|im|imactivatekey|imak|imc|imcmdline|imd|imdisable|imi|iminsert|ims|imsearch|inc|include|includeexpr|incsearch|inde|indentexpr|indentkeys|indk|inex|inf|infercase|insertmode|isf|isfname|isi|isident|isk|iskeyword|isprint|joinspaces|js|key|keymap|keymodel|keywordprg|km|kmp|kp|langmap|langmenu|laststatus|lazyredraw|lbr|lcs|linebreak|lines|linespace|lisp|lispwords|listchars|loadplugins|lpl|lsp|lz|macatsui|magic|makeef|makeprg|matchpairs|matchtime|maxcombine|maxfuncdepth|maxmapdepth|maxmem|maxmempattern|maxmemtot|mco|mef|menuitems|mfd|mh|mis|mkspellmem|ml|mls|mm|mmd|mmp|mmt|modeline|modelines|modifiable|modified|more|mouse|mousef|mousefocus|mousehide|mousem|mousemodel|mouses|mouseshape|mouset|mousetime|mp|mps|msm|mzq|mzquantum|nf|nrformats|numberwidth|nuw|odev|oft|ofu|omnifunc|opendevice|operatorfunc|opfunc|osfiletype|pa|para|paragraphs|paste|pastetoggle|patchexpr|patchmode|path|pdev|penc|pex|pexpr|pfn|ph|pheader|pi|pm|pmbcs|pmbfn|popt|preserveindent|previewheight|previewwindow|printdevice|printencoding|printexpr|printfont|printheader|printmbcharset|printmbfont|printoptions|prompt|pt|pumheight|pvh|pvw|qe|quoteescape|readonly|remap|report|restorescreen|revins|rightleft|rightleftcmd|rl|rlc|ro|rs|rtp|ruf|ruler|rulerformat|runtimepath|sbo|sc|scb|scr|scroll|scrollbind|scrolljump|scrolloff|scrollopt|scs|sect|sections|secure|sel|selection|selectmode|sessionoptions|sft|shcf|shellcmdflag|shellpipe|shellquote|shellredir|shellslash|shelltemp|shelltype|shellxquote|shiftround|shiftwidth|shm|shortmess|shortname|showbreak|showcmd|showfulltag|showmatch|showmode|showtabline|shq|si|sidescroll|sidescrolloff|siso|sj|slm|smartcase|smartindent|smarttab|smc|smd|softtabstop|sol|spc|spell|spellcapcheck|spellfile|spelllang|spellsuggest|spf|spl|splitbelow|splitright|sps|sr|srr|ss|ssl|ssop|stal|startofline|statusline|stl|stmp|su|sua|suffixes|suffixesadd|sw|swapfile|swapsync|swb|swf|switchbuf|sws|sxq|syn|synmaxcol|syntax|tabline|tabpagemax|tabstop|tagbsearch|taglength|tagrelative|tagstack|tal|tb|tbi|tbidi|tbis|tbs|tenc|term|termbidi|termencoding|terse|textauto|textmode|textwidth|tgst|thesaurus|tildeop|timeout|timeoutlen|title|titlelen|titleold|titlestring|toolbar|toolbariconsize|top|tpm|tsl|tsr|ttimeout|ttimeoutlen|ttm|tty|ttybuiltin|ttyfast|ttym|ttymouse|ttyscroll|ttytype|tw|tx|uc|ul|undolevels|updatecount|updatetime|ut|vb|vbs|vdir|verbosefile|vfile|viewdir|viewoptions|viminfo|virtualedit|visualbell|vop|wak|warn|wb|wc|wcm|wd|weirdinvert|wfh|wfw|whichwrap|wi|wig|wildchar|wildcharm|wildignore|wildmenu|wildmode|wildoptions|wim|winaltkeys|window|winfixheight|winfixwidth|winheight|winminheight|winminwidth|winwidth|wiv|wiw|wm|wmh|wmnu|wmw|wop|wrap|wrapmargin|wrapscan|writeany|writebackup|writedelay|ww|noacd|noai|noakm|noallowrevins|noaltkeymap|noanti|noantialias|noar|noarab|noarabic|noarabicshape|noari|noarshape|noautochdir|noautoindent|noautoread|noautowrite|noautowriteall|noaw|noawa|nobackup|noballooneval|nobeval|nobin|nobinary|nobiosk|nobioskey|nobk|nobl|nobomb|nobuflisted|nocf|noci|nocin|nocindent|nocompatible|noconfirm|noconsk|noconskey|nocopyindent|nocp|nocscopetag|nocscopeverbose|nocst|nocsverb|nocuc|nocul|nocursorcolumn|nocursorline|nodeco|nodelcombine|nodg|nodiff|nodigraph|nodisable|noea|noeb|noed|noedcompatible|noek|noendofline|noeol|noequalalways|noerrorbells|noesckeys|noet|noex|noexpandtab|noexrc|nofen|nofk|nofkmap|nofoldenable|nogd|nogdefault|noguipty|nohid|nohidden|nohk|nohkmap|nohkmapp|nohkp|nohls|noic|noicon|noignorecase|noim|noimc|noimcmdline|noimd|noincsearch|noinf|noinfercase|noinsertmode|nois|nojoinspaces|nojs|nolazyredraw|nolbr|nolinebreak|nolisp|nolist|noloadplugins|nolpl|nolz|noma|nomacatsui|nomagic|nomh|noml|nomod|nomodeline|nomodifiable|nomodified|nomore|nomousef|nomousefocus|nomousehide|nonu|nonumber|noodev|noopendevice|nopaste|nopi|nopreserveindent|nopreviewwindow|noprompt|nopvw|noreadonly|noremap|norestorescreen|norevins|nori|norightleft|norightleftcmd|norl|norlc|noro|nors|noru|noruler|nosb|nosc|noscb|noscrollbind|noscs|nosecure|nosft|noshellslash|noshelltemp|noshiftround|noshortname|noshowcmd|noshowfulltag|noshowmatch|noshowmode|nosi|nosm|nosmartcase|nosmartindent|nosmarttab|nosmd|nosn|nosol|nospell|nosplitbelow|nosplitright|nospr|nosr|nossl|nosta|nostartofline|nostmp|noswapfile|noswf|nota|notagbsearch|notagrelative|notagstack|notbi|notbidi|notbs|notermbidi|noterse|notextauto|notextmode|notf|notgst|notildeop|notimeout|notitle|noto|notop|notr|nottimeout|nottybuiltin|nottyfast|notx|novb|novisualbell|nowa|nowarn|nowb|noweirdinvert|nowfh|nowfw|nowildmenu|nowinfixheight|nowinfixwidth|nowiv|nowmnu|nowrap|nowrapscan|nowrite|nowriteany|nowritebackup|nows|invacd|invai|invakm|invallowrevins|invaltkeymap|invanti|invantialias|invar|invarab|invarabic|invarabicshape|invari|invarshape|invautochdir|invautoindent|invautoread|invautowrite|invautowriteall|invaw|invawa|invbackup|invballooneval|invbeval|invbin|invbinary|invbiosk|invbioskey|invbk|invbl|invbomb|invbuflisted|invcf|invci|invcin|invcindent|invcompatible|invconfirm|invconsk|invconskey|invcopyindent|invcp|invcscopetag|invcscopeverbose|invcst|invcsverb|invcuc|invcul|invcursorcolumn|invcursorline|invdeco|invdelcombine|invdg|invdiff|invdigraph|invdisable|invea|inveb|inved|invedcompatible|invek|invendofline|inveol|invequalalways|inverrorbells|invesckeys|invet|invex|invexpandtab|invexrc|invfen|invfk|invfkmap|invfoldenable|invgd|invgdefault|invguipty|invhid|invhidden|invhk|invhkmap|invhkmapp|invhkp|invhls|invhlsearch|invic|invicon|invignorecase|invim|invimc|invimcmdline|invimd|invincsearch|invinf|invinfercase|invinsertmode|invis|invjoinspaces|invjs|invlazyredraw|invlbr|invlinebreak|invlisp|invlist|invloadplugins|invlpl|invlz|invma|invmacatsui|invmagic|invmh|invml|invmod|invmodeline|invmodifiable|invmodified|invmore|invmousef|invmousefocus|invmousehide|invnu|invnumber|invodev|invopendevice|invpaste|invpi|invpreserveindent|invpreviewwindow|invprompt|invpvw|invreadonly|invremap|invrestorescreen|invrevins|invri|invrightleft|invrightleftcmd|invrl|invrlc|invro|invrs|invru|invruler|invsb|invsc|invscb|invscrollbind|invscs|invsecure|invsft|invshellslash|invshelltemp|invshiftround|invshortname|invshowcmd|invshowfulltag|invshowmatch|invshowmode|invsi|invsm|invsmartcase|invsmartindent|invsmarttab|invsmd|invsn|invsol|invspell|invsplitbelow|invsplitright|invspr|invsr|invssl|invsta|invstartofline|invstmp|invswapfile|invswf|invta|invtagbsearch|invtagrelative|invtagstack|invtbi|invtbidi|invtbs|invtermbidi|invterse|invtextauto|invtextmode|invtf|invtgst|invtildeop|invtimeout|invtitle|invto|invtop|invtr|invttimeout|invttybuiltin|invttyfast|invtx|invvb|invvisualbell|invwa|invwarn|invwb|invweirdinvert|invwfh|invwfw|invwildmenu|invwinfixheight|invwinfixwidth|invwiv|invwmnu|invwrap|invwrapscan|invwrite|invwriteany|invwritebackup|invws|t_AB|t_AF|t_al|t_AL|t_bc|t_cd|t_ce|t_Ce|t_cl|t_cm|t_Co|t_cs|t_Cs|t_CS|t_CV|t_da|t_db|t_dl|t_DL|t_EI|t_F1|t_F2|t_F3|t_F4|t_F5|t_F6|t_F7|t_F8|t_F9|t_fs|t_IE|t_IS|t_k1|t_K1|t_k2|t_k3|t_K3|t_k4|t_K4|t_k5|t_K5|t_k6|t_K6|t_k7|t_K7|t_k8|t_K8|t_k9|t_K9|t_KA|t_kb|t_kB|t_KB|t_KC|t_kd|t_kD|t_KD|t_ke|t_KE|t_KF|t_KG|t_kh|t_KH|t_kI|t_KI|t_KJ|t_KK|t_kl|t_KL|t_kN|t_kP|t_kr|t_ks|t_ku|t_le|t_mb|t_md|t_me|t_mr|t_ms|t_nd|t_op|t_RI|t_RV|t_Sb|t_se|t_Sf|t_SI|t_so|t_sr|t_te|t_ti|t_ts|t_ue|t_us|t_ut|t_vb|t_ve|t_vi|t_vs|t_WP|t_WS|t_xs|t_ZH|t_ZR)\b/,
         | 
| 2 | 
            +
            number:/\b(?:0x[\da-f]+|\d+(?:\.\d+)?)\b/i,operator:/\|\||&&|[-+.]=?|[=!](?:[=~][#?]?)?|[<>]=?[#?]?|[*\/%?]|\b(?:is(?:not)?)\b/,punctuation:/[{}[\](),;:]/},Prism.languages.yaml={scalar:{pattern:/([\-:]\s*(![^\s]+)?[ \t]*[|>])[ \t]*(?:((?:\r?\n|\r)[ \t]+)[^\r\n]+(?:\3[^\r\n]+)*)/,lookbehind:!0,alias:"string"},comment:/#.*/,key:{pattern:/(\s*[:\-,[{\r\n?][ \t]*(![^\s]+)?[ \t]*)[^\r\n{[\]},#]+?(?=\s*:\s)/,lookbehind:!0,alias:"atrule"},directive:{pattern:/(^[ \t]*)%.+/m,lookbehind:!0,alias:"important"},datetime:{pattern:/([:\-,[{]\s*(![^\s]+)?[ \t]*)(\d{4}-\d\d?-\d\d?([tT]|[ \t]+)\d\d?:\d{2}:\d{2}(\.\d*)?[ \t]*(Z|[-+]\d\d?(:\d{2})?)?|\d{4}-\d{2}-\d{2}|\d\d?:\d{2}(:\d{2}(\.\d*)?)?)(?=[ \t]*($|,|]|}))/m,lookbehind:!0,alias:"number"},"boolean":{pattern:/([:\-,[{]\s*(![^\s]+)?[ \t]*)(true|false)[ \t]*(?=$|,|]|})/im,lookbehind:!0,alias:"important"},"null":{pattern:/([:\-,[{]\s*(![^\s]+)?[ \t]*)(null|~)[ \t]*(?=$|,|]|})/im,lookbehind:!0,alias:"important"},string:{pattern:/([:\-,[{]\s*(![^\s]+)?[ \t]*)("(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')(?=[ \t]*($|,|]|}))/m,lookbehind:!0},number:{pattern:/([:\-,[{]\s*(![^\s]+)?[ \t]*)[+\-]?(0x[\da-f]+|0o[0-7]+|(\d+\.?\d*|\.?\d+)(e[\+\-]?\d+)?|\.inf|\.nan)[ \t]*(?=$|,|]|})/im,lookbehind:!0},tag:/![^\s]+/,important:/[&*][\w]+/,punctuation:/---|[:[\]{}\-,|>?]|\.\.\./},!function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("complete",function(e){if(e.code){var n=e.element.parentNode,t=/\s*\bline-numbers\b\s*/;if(n&&/pre/i.test(n.nodeName)&&(t.test(n.className)||t.test(e.element.className))&&!e.element.querySelector(".line-numbers-rows")){t.test(e.element.className)&&(e.element.className=e.element.className.replace(t,"")),t.test(n.className)||(n.className+=" line-numbers");var i,a=e.code.match(/\n(?!$)/g),s=a?a.length+1:1,r=new Array(s+1);r=r.join("<span></span>"),i=document.createElement("span"),i.className="line-numbers-rows",i.innerHTML=r,n.hasAttribute("data-start")&&(n.style.counterReset="linenumber "+(parseInt(n.getAttribute("data-start"),10)-1)),e.element.appendChild(i)}}})}();
         | 
| @@ -0,0 +1,163 @@ | |
| 1 | 
            +
            /* http://prismjs.com/download.html?themes=prism-okaidia&languages=markup+css+clike+javascript+ruby+git+haml+handlebars+http+php+python+sass+scss+vim+yaml&plugins=line-numbers */
         | 
| 2 | 
            +
            /**
         | 
| 3 | 
            +
             * okaidia theme for JavaScript, CSS and HTML
         | 
| 4 | 
            +
             * Loosely based on Monokai textmate theme by http://www.monokai.nl/
         | 
| 5 | 
            +
             * @author ocodia
         | 
| 6 | 
            +
             */
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            code[class*="language-"],
         | 
| 9 | 
            +
            pre[class*="language-"] {
         | 
| 10 | 
            +
            	color: #f8f8f2;
         | 
| 11 | 
            +
            	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
         | 
| 12 | 
            +
            	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
         | 
| 13 | 
            +
            	direction: ltr;
         | 
| 14 | 
            +
            	text-align: left;
         | 
| 15 | 
            +
            	white-space: pre;
         | 
| 16 | 
            +
            	word-spacing: normal;
         | 
| 17 | 
            +
            	word-break: normal;
         | 
| 18 | 
            +
            	word-wrap: normal;
         | 
| 19 | 
            +
            	line-height: 1.5;
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            	-moz-tab-size: 4;
         | 
| 22 | 
            +
            	-o-tab-size: 4;
         | 
| 23 | 
            +
            	tab-size: 4;
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            	-webkit-hyphens: none;
         | 
| 26 | 
            +
            	-moz-hyphens: none;
         | 
| 27 | 
            +
            	-ms-hyphens: none;
         | 
| 28 | 
            +
            	hyphens: none;
         | 
| 29 | 
            +
            }
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            /* Code blocks */
         | 
| 32 | 
            +
            pre[class*="language-"] {
         | 
| 33 | 
            +
            	padding: 1em;
         | 
| 34 | 
            +
            	margin: .5em 0;
         | 
| 35 | 
            +
            	overflow: auto;
         | 
| 36 | 
            +
            	border-radius: 0.3em;
         | 
| 37 | 
            +
            }
         | 
| 38 | 
            +
             | 
| 39 | 
            +
            :not(pre) > code[class*="language-"],
         | 
| 40 | 
            +
            pre[class*="language-"] {
         | 
| 41 | 
            +
            	background: #272822;
         | 
| 42 | 
            +
            }
         | 
| 43 | 
            +
             | 
| 44 | 
            +
            /* Inline code */
         | 
| 45 | 
            +
            :not(pre) > code[class*="language-"] {
         | 
| 46 | 
            +
            	padding: .1em;
         | 
| 47 | 
            +
            	border-radius: .3em;
         | 
| 48 | 
            +
            	white-space: normal;
         | 
| 49 | 
            +
            }
         | 
| 50 | 
            +
             | 
| 51 | 
            +
            .token.comment,
         | 
| 52 | 
            +
            .token.prolog,
         | 
| 53 | 
            +
            .token.doctype,
         | 
| 54 | 
            +
            .token.cdata {
         | 
| 55 | 
            +
            	color: slategray;
         | 
| 56 | 
            +
            }
         | 
| 57 | 
            +
             | 
| 58 | 
            +
            .token.punctuation {
         | 
| 59 | 
            +
            	color: #f8f8f2;
         | 
| 60 | 
            +
            }
         | 
| 61 | 
            +
             | 
| 62 | 
            +
            .namespace {
         | 
| 63 | 
            +
            	opacity: .7;
         | 
| 64 | 
            +
            }
         | 
| 65 | 
            +
             | 
| 66 | 
            +
            .token.property,
         | 
| 67 | 
            +
            .token.tag,
         | 
| 68 | 
            +
            .token.constant,
         | 
| 69 | 
            +
            .token.symbol,
         | 
| 70 | 
            +
            .token.deleted {
         | 
| 71 | 
            +
            	color: #f92672;
         | 
| 72 | 
            +
            }
         | 
| 73 | 
            +
             | 
| 74 | 
            +
            .token.boolean,
         | 
| 75 | 
            +
            .token.number {
         | 
| 76 | 
            +
            	color: #ae81ff;
         | 
| 77 | 
            +
            }
         | 
| 78 | 
            +
             | 
| 79 | 
            +
            .token.selector,
         | 
| 80 | 
            +
            .token.attr-name,
         | 
| 81 | 
            +
            .token.string,
         | 
| 82 | 
            +
            .token.char,
         | 
| 83 | 
            +
            .token.builtin,
         | 
| 84 | 
            +
            .token.inserted {
         | 
| 85 | 
            +
            	color: #a6e22e;
         | 
| 86 | 
            +
            }
         | 
| 87 | 
            +
             | 
| 88 | 
            +
            .token.operator,
         | 
| 89 | 
            +
            .token.entity,
         | 
| 90 | 
            +
            .token.url,
         | 
| 91 | 
            +
            .language-css .token.string,
         | 
| 92 | 
            +
            .style .token.string,
         | 
| 93 | 
            +
            .token.variable {
         | 
| 94 | 
            +
            	color: #f8f8f2;
         | 
| 95 | 
            +
            }
         | 
| 96 | 
            +
             | 
| 97 | 
            +
            .token.atrule,
         | 
| 98 | 
            +
            .token.attr-value,
         | 
| 99 | 
            +
            .token.function {
         | 
| 100 | 
            +
            	color: #e6db74;
         | 
| 101 | 
            +
            }
         | 
| 102 | 
            +
             | 
| 103 | 
            +
            .token.keyword {
         | 
| 104 | 
            +
            	color: #66d9ef;
         | 
| 105 | 
            +
            }
         | 
| 106 | 
            +
             | 
| 107 | 
            +
            .token.regex,
         | 
| 108 | 
            +
            .token.important {
         | 
| 109 | 
            +
            	color: #fd971f;
         | 
| 110 | 
            +
            }
         | 
| 111 | 
            +
             | 
| 112 | 
            +
            .token.important,
         | 
| 113 | 
            +
            .token.bold {
         | 
| 114 | 
            +
            	font-weight: bold;
         | 
| 115 | 
            +
            }
         | 
| 116 | 
            +
            .token.italic {
         | 
| 117 | 
            +
            	font-style: italic;
         | 
| 118 | 
            +
            }
         | 
| 119 | 
            +
             | 
| 120 | 
            +
            .token.entity {
         | 
| 121 | 
            +
            	cursor: help;
         | 
| 122 | 
            +
            }
         | 
| 123 | 
            +
             | 
| 124 | 
            +
            pre.line-numbers {
         | 
| 125 | 
            +
            	position: relative;
         | 
| 126 | 
            +
            	padding-left: 3.8em;
         | 
| 127 | 
            +
            	counter-reset: linenumber;
         | 
| 128 | 
            +
            }
         | 
| 129 | 
            +
             | 
| 130 | 
            +
            pre.line-numbers > code {
         | 
| 131 | 
            +
            	position: relative;
         | 
| 132 | 
            +
            }
         | 
| 133 | 
            +
             | 
| 134 | 
            +
            .line-numbers .line-numbers-rows {
         | 
| 135 | 
            +
            	position: absolute;
         | 
| 136 | 
            +
            	pointer-events: none;
         | 
| 137 | 
            +
            	top: 0;
         | 
| 138 | 
            +
            	font-size: 100%;
         | 
| 139 | 
            +
            	left: -3.8em;
         | 
| 140 | 
            +
            	width: 3em; /* works for line-numbers below 1000 lines */
         | 
| 141 | 
            +
            	letter-spacing: -1px;
         | 
| 142 | 
            +
            	border-right: 1px solid #999;
         | 
| 143 | 
            +
             | 
| 144 | 
            +
            	-webkit-user-select: none;
         | 
| 145 | 
            +
            	-moz-user-select: none;
         | 
| 146 | 
            +
            	-ms-user-select: none;
         | 
| 147 | 
            +
            	user-select: none;
         | 
| 148 | 
            +
             | 
| 149 | 
            +
            }
         | 
| 150 | 
            +
             | 
| 151 | 
            +
            	.line-numbers-rows > span {
         | 
| 152 | 
            +
            		pointer-events: none;
         | 
| 153 | 
            +
            		display: block;
         | 
| 154 | 
            +
            		counter-increment: linenumber;
         | 
| 155 | 
            +
            	}
         | 
| 156 | 
            +
             | 
| 157 | 
            +
            		.line-numbers-rows > span:before {
         | 
| 158 | 
            +
            			content: counter(linenumber);
         | 
| 159 | 
            +
            			color: #999;
         | 
| 160 | 
            +
            			display: block;
         | 
| 161 | 
            +
            			padding-right: 0.8em;
         | 
| 162 | 
            +
            			text-align: right;
         | 
| 163 | 
            +
            		}
         | 
| @@ -0,0 +1,18 @@ | |
| 1 | 
            +
            /* http://prismjs.com/download.html?themes=prism-okaidia&languages=markup+css+clike+javascript+ruby+git+haml+handlebars+http+php+python+sass+scss+vim+yaml&plugins=line-numbers */
         | 
| 2 | 
            +
            var _self="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{},Prism=function(){var e=/\blang(?:uage)?-(?!\*)(\w+)\b/i,t=_self.Prism={util:{encode:function(e){return e instanceof n?new n(e.type,t.util.encode(e.content),e.alias):"Array"===t.util.type(e)?e.map(t.util.encode):e.replace(/&/g,"&").replace(/</g,"<").replace(/\u00a0/g," ")},type:function(e){return Object.prototype.toString.call(e).match(/\[object (\w+)\]/)[1]},clone:function(e){var n=t.util.type(e);switch(n){case"Object":var a={};for(var r in e)e.hasOwnProperty(r)&&(a[r]=t.util.clone(e[r]));return a;case"Array":return e.map&&e.map(function(e){return t.util.clone(e)})}return e}},languages:{extend:function(e,n){var a=t.util.clone(t.languages[e]);for(var r in n)a[r]=n[r];return a},insertBefore:function(e,n,a,r){r=r||t.languages;var l=r[e];if(2==arguments.length){a=arguments[1];for(var i in a)a.hasOwnProperty(i)&&(l[i]=a[i]);return l}var o={};for(var s in l)if(l.hasOwnProperty(s)){if(s==n)for(var i in a)a.hasOwnProperty(i)&&(o[i]=a[i]);o[s]=l[s]}return t.languages.DFS(t.languages,function(t,n){n===r[e]&&t!=e&&(this[t]=o)}),r[e]=o},DFS:function(e,n,a){for(var r in e)e.hasOwnProperty(r)&&(n.call(e,r,e[r],a||r),"Object"===t.util.type(e[r])?t.languages.DFS(e[r],n):"Array"===t.util.type(e[r])&&t.languages.DFS(e[r],n,r))}},plugins:{},highlightAll:function(e,n){for(var a,r=document.querySelectorAll('code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'),l=0;a=r[l++];)t.highlightElement(a,e===!0,n)},highlightElement:function(n,a,r){for(var l,i,o=n;o&&!e.test(o.className);)o=o.parentNode;o&&(l=(o.className.match(e)||[,""])[1],i=t.languages[l]),n.className=n.className.replace(e,"").replace(/\s+/g," ")+" language-"+l,o=n.parentNode,/pre/i.test(o.nodeName)&&(o.className=o.className.replace(e,"").replace(/\s+/g," ")+" language-"+l);var s=n.textContent,u={element:n,language:l,grammar:i,code:s};if(!s||!i)return t.hooks.run("complete",u),void 0;if(t.hooks.run("before-highlight",u),a&&_self.Worker){var g=new Worker(t.filename);g.onmessage=function(e){u.highlightedCode=e.data,t.hooks.run("before-insert",u),u.element.innerHTML=u.highlightedCode,r&&r.call(u.element),t.hooks.run("after-highlight",u),t.hooks.run("complete",u)},g.postMessage(JSON.stringify({language:u.language,code:u.code,immediateClose:!0}))}else u.highlightedCode=t.highlight(u.code,u.grammar,u.language),t.hooks.run("before-insert",u),u.element.innerHTML=u.highlightedCode,r&&r.call(n),t.hooks.run("after-highlight",u),t.hooks.run("complete",u)},highlight:function(e,a,r){var l=t.tokenize(e,a);return n.stringify(t.util.encode(l),r)},tokenize:function(e,n){var a=t.Token,r=[e],l=n.rest;if(l){for(var i in l)n[i]=l[i];delete n.rest}e:for(var i in n)if(n.hasOwnProperty(i)&&n[i]){var o=n[i];o="Array"===t.util.type(o)?o:[o];for(var s=0;s<o.length;++s){var u=o[s],g=u.inside,c=!!u.lookbehind,f=0,h=u.alias;u=u.pattern||u;for(var p=0;p<r.length;p++){var d=r[p];if(r.length>e.length)break e;if(!(d instanceof a)){u.lastIndex=0;var m=u.exec(d);if(m){c&&(f=m[1].length);var y=m.index-1+f,m=m[0].slice(f),v=m.length,k=y+v,b=d.slice(0,y+1),w=d.slice(k+1),P=[p,1];b&&P.push(b);var A=new a(i,g?t.tokenize(m,g):m,h);P.push(A),w&&P.push(w),Array.prototype.splice.apply(r,P)}}}}}return r},hooks:{all:{},add:function(e,n){var a=t.hooks.all;a[e]=a[e]||[],a[e].push(n)},run:function(e,n){var a=t.hooks.all[e];if(a&&a.length)for(var r,l=0;r=a[l++];)r(n)}}},n=t.Token=function(e,t,n){this.type=e,this.content=t,this.alias=n};if(n.stringify=function(e,a,r){if("string"==typeof e)return e;if("Array"===t.util.type(e))return e.map(function(t){return n.stringify(t,a,e)}).join("");var l={type:e.type,content:n.stringify(e.content,a,r),tag:"span",classes:["token",e.type],attributes:{},language:a,parent:r};if("comment"==l.type&&(l.attributes.spellcheck="true"),e.alias){var i="Array"===t.util.type(e.alias)?e.alias:[e.alias];Array.prototype.push.apply(l.classes,i)}t.hooks.run("wrap",l);var o="";for(var s in l.attributes)o+=(o?" ":"")+s+'="'+(l.attributes[s]||"")+'"';return"<"+l.tag+' class="'+l.classes.join(" ")+'" '+o+">"+l.content+"</"+l.tag+">"},!_self.document)return _self.addEventListener?(_self.addEventListener("message",function(e){var n=JSON.parse(e.data),a=n.language,r=n.code,l=n.immediateClose;_self.postMessage(t.highlight(r,t.languages[a],a)),l&&_self.close()},!1),_self.Prism):_self.Prism;var a=document.getElementsByTagName("script");return a=a[a.length-1],a&&(t.filename=a.src,document.addEventListener&&!a.hasAttribute("data-manual")&&document.addEventListener("DOMContentLoaded",t.highlightAll)),_self.Prism}();"undefined"!=typeof module&&module.exports&&(module.exports=Prism),"undefined"!=typeof global&&(global.Prism=Prism);
         | 
| 3 | 
            +
            Prism.languages.markup={comment:/<!--[\w\W]*?-->/,prolog:/<\?[\w\W]+?\?>/,doctype:/<!DOCTYPE[\w\W]+?>/,cdata:/<!\[CDATA\[[\w\W]*?]]>/i,tag:{pattern:/<\/?(?!\d)[^\s>\/=.$<]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\w\W])*\1|[^\s'">=]+))?)*\s*\/?>/i,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/i,inside:{punctuation:/[=>"']/}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},Prism.hooks.add("wrap",function(a){"entity"===a.type&&(a.attributes.title=a.content.replace(/&/,"&"))}),Prism.languages.xml=Prism.languages.markup,Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup;
         | 
| 4 | 
            +
            Prism.languages.css={comment:/\/\*[\w\W]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^\{\}\s][^\{\};]*?(?=\s*\{)/,string:/("|')(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1/,property:/(\b|\B)[\w-]+(?=\s*:)/i,important:/\B!important\b/i,"function":/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/},Prism.languages.css.atrule.inside.rest=Prism.util.clone(Prism.languages.css),Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/(<style[\w\W]*?>)[\w\W]*?(?=<\/style>)/i,lookbehind:!0,inside:Prism.languages.css,alias:"language-css"}}),Prism.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|').*?\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:Prism.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:Prism.languages.css}},alias:"language-css"}},Prism.languages.markup.tag));
         | 
| 5 | 
            +
            Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\w\W]*?\*\//,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0}],string:/(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,"class-name":{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/i,lookbehind:!0,inside:{punctuation:/(\.|\\)/}},keyword:/\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,"boolean":/\b(true|false)\b/,"function":/[a-z0-9_]+(?=\()/i,number:/\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,punctuation:/[{}[\];(),.:]/};
         | 
| 6 | 
            +
            Prism.languages.javascript=Prism.languages.extend("clike",{keyword:/\b(as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,number:/\b-?(0x[\dA-Fa-f]+|0b[01]+|0o[0-7]+|\d*\.?\d+([Ee][+-]?\d+)?|NaN|Infinity)\b/,"function":/[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*(?=\()/i}),Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/(^|[^\/])\/(?!\/)(\[.+?]|\\.|[^\/\\\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})]))/,lookbehind:!0}}),Prism.languages.insertBefore("javascript","class-name",{"template-string":{pattern:/`(?:\\`|\\?[^`])*`/,inside:{interpolation:{pattern:/\$\{[^}]+\}/,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}}}),Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{script:{pattern:/(<script[\w\W]*?>)[\w\W]*?(?=<\/script>)/i,lookbehind:!0,inside:Prism.languages.javascript,alias:"language-javascript"}}),Prism.languages.js=Prism.languages.javascript;
         | 
| 7 | 
            +
            !function(e){e.languages.ruby=e.languages.extend("clike",{comment:/#(?!\{[^\r\n]*?\}).*/,keyword:/\b(alias|and|BEGIN|begin|break|case|class|def|define_method|defined|do|each|else|elsif|END|end|ensure|false|for|if|in|module|new|next|nil|not|or|raise|redo|require|rescue|retry|return|self|super|then|throw|true|undef|unless|until|when|while|yield)\b/});var n={pattern:/#\{[^}]+\}/,inside:{delimiter:{pattern:/^#\{|\}$/,alias:"tag"},rest:e.util.clone(e.languages.ruby)}};e.languages.insertBefore("ruby","keyword",{regex:[{pattern:/%r([^a-zA-Z0-9\s\{\(\[<])(?:[^\\]|\\[\s\S])*?\1[gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r\((?:[^()\\]|\\[\s\S])*\)[gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}[gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r\[(?:[^\[\]\\]|\\[\s\S])*\][gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r<(?:[^<>\\]|\\[\s\S])*>[gim]{0,3}/,inside:{interpolation:n}},{pattern:/(^|[^\/])\/(?!\/)(\[.+?]|\\.|[^\/\r\n])+\/[gim]{0,3}(?=\s*($|[\r\n,.;})]))/,lookbehind:!0}],variable:/[@$]+[a-zA-Z_][a-zA-Z_0-9]*(?:[?!]|\b)/,symbol:/:[a-zA-Z_][a-zA-Z_0-9]*(?:[?!]|\b)/}),e.languages.insertBefore("ruby","number",{builtin:/\b(Array|Bignum|Binding|Class|Continuation|Dir|Exception|FalseClass|File|Stat|File|Fixnum|Fload|Hash|Integer|IO|MatchData|Method|Module|NilClass|Numeric|Object|Proc|Range|Regexp|String|Struct|TMS|Symbol|ThreadGroup|Thread|Time|TrueClass)\b/,constant:/\b[A-Z][a-zA-Z_0-9]*(?:[?!]|\b)/}),e.languages.ruby.string=[{pattern:/%[qQiIwWxs]?([^a-zA-Z0-9\s\{\(\[<])(?:[^\\]|\\[\s\S])*?\1/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\((?:[^()\\]|\\[\s\S])*\)/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\[(?:[^\[\]\\]|\\[\s\S])*\]/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?<(?:[^<>\\]|\\[\s\S])*>/,inside:{interpolation:n}},{pattern:/("|')(#\{[^}]+\}|\\(?:\r?\n|\r)|\\?.)*?\1/,inside:{interpolation:n}}]}(Prism);
         | 
| 8 | 
            +
            Prism.languages.git={comment:/^#.*/m,deleted:/^[-–].*/m,inserted:/^\+.*/m,string:/("|')(\\?.)*?\1/m,command:{pattern:/^.*\$ git .*$/m,inside:{parameter:/\s(--|-)\w+/m}},coord:/^@@.*@@$/m,commit_sha1:/^commit \w{40}$/m};
         | 
| 9 | 
            +
            !function(e){e.languages.haml={"multiline-comment":{pattern:/((?:^|\r?\n|\r)([\t ]*))(?:\/|-#).*((?:\r?\n|\r)\2[\t ]+.+)*/,lookbehind:!0,alias:"comment"},"multiline-code":[{pattern:/((?:^|\r?\n|\r)([\t ]*)(?:[~-]|[&!]?=)).*,[\t ]*((?:\r?\n|\r)\2[\t ]+.*,[\t ]*)*((?:\r?\n|\r)\2[\t ]+.+)/,lookbehind:!0,inside:{rest:e.languages.ruby}},{pattern:/((?:^|\r?\n|\r)([\t ]*)(?:[~-]|[&!]?=)).*\|[\t ]*((?:\r?\n|\r)\2[\t ]+.*\|[\t ]*)*/,lookbehind:!0,inside:{rest:e.languages.ruby}}],filter:{pattern:/((?:^|\r?\n|\r)([\t ]*)):[\w-]+((?:\r?\n|\r)(?:\2[\t ]+.+|\s*?(?=\r?\n|\r)))+/,lookbehind:!0,inside:{"filter-name":{pattern:/^:[\w-]+/,alias:"variable"}}},markup:{pattern:/((?:^|\r?\n|\r)[\t ]*)<.+/,lookbehind:!0,inside:{rest:e.languages.markup}},doctype:{pattern:/((?:^|\r?\n|\r)[\t ]*)!!!(?: .+)?/,lookbehind:!0},tag:{pattern:/((?:^|\r?\n|\r)[\t ]*)[%.#][\w\-#.]*[\w\-](?:\([^)]+\)|\{(?:\{[^}]+\}|[^}])+\}|\[[^\]]+\])*[\/<>]*/,lookbehind:!0,inside:{attributes:[{pattern:/(^|[^#])\{(?:\{[^}]+\}|[^}])+\}/,lookbehind:!0,inside:{rest:e.languages.ruby}},{pattern:/\([^)]+\)/,inside:{"attr-value":{pattern:/(=\s*)(?:"(?:\\?.)*?"|[^)\s]+)/,lookbehind:!0},"attr-name":/[\w:-]+(?=\s*!?=|\s*[,)])/,punctuation:/[=(),]/}},{pattern:/\[[^\]]+\]/,inside:{rest:e.languages.ruby}}],punctuation:/[<>]/}},code:{pattern:/((?:^|\r?\n|\r)[\t ]*(?:[~-]|[&!]?=)).+/,lookbehind:!0,inside:{rest:e.languages.ruby}},interpolation:{pattern:/#\{[^}]+\}/,inside:{delimiter:{pattern:/^#\{|\}$/,alias:"punctuation"},rest:e.languages.ruby}},punctuation:{pattern:/((?:^|\r?\n|\r)[\t ]*)[~=\-&!]+/,lookbehind:!0}};for(var t="((?:^|\\r?\\n|\\r)([\\t ]*)):{{filter_name}}((?:\\r?\\n|\\r)(?:\\2[\\t ]+.+|\\s*?(?=\\r?\\n|\\r)))+",r=["css",{filter:"coffee",language:"coffeescript"},"erb","javascript","less","markdown","ruby","scss","textile"],n={},a=0,i=r.length;i>a;a++){var l=r[a];l="string"==typeof l?{filter:l,language:l}:l,e.languages[l.language]&&(n["filter-"+l.filter]={pattern:RegExp(t.replace("{{filter_name}}",l.filter)),lookbehind:!0,inside:{"filter-name":{pattern:/^:[\w-]+/,alias:"variable"},rest:e.languages[l.language]}})}e.languages.insertBefore("haml","filter",n)}(Prism);
         | 
| 10 | 
            +
            !function(e){var a=/\{\{\{[\w\W]+?\}\}\}|\{\{[\w\W]+?\}\}/g;e.languages.handlebars=e.languages.extend("markup",{handlebars:{pattern:a,inside:{delimiter:{pattern:/^\{\{\{?|\}\}\}?$/i,alias:"punctuation"},string:/(["'])(\\?.)*?\1/,number:/\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee][+-]?\d+)?)\b/,"boolean":/\b(true|false)\b/,block:{pattern:/^(\s*~?\s*)[#\/]\S+?(?=\s*~?\s*$|\s)/i,lookbehind:!0,alias:"keyword"},brackets:{pattern:/\[[^\]]+\]/,inside:{punctuation:/\[|\]/,variable:/[\w\W]+/}},punctuation:/[!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]/,variable:/[^!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~\s]+/}}}),e.languages.insertBefore("handlebars","tag",{"handlebars-comment":{pattern:/\{\{![\w\W]*?\}\}/,alias:["handlebars","comment"]}}),e.hooks.add("before-highlight",function(e){"handlebars"===e.language&&(e.tokenStack=[],e.backupCode=e.code,e.code=e.code.replace(a,function(a){return e.tokenStack.push(a),"___HANDLEBARS"+e.tokenStack.length+"___"}))}),e.hooks.add("before-insert",function(e){"handlebars"===e.language&&(e.code=e.backupCode,delete e.backupCode)}),e.hooks.add("after-highlight",function(a){if("handlebars"===a.language){for(var n,t=0;n=a.tokenStack[t];t++)a.highlightedCode=a.highlightedCode.replace("___HANDLEBARS"+(t+1)+"___",e.highlight(n,a.grammar,"handlebars").replace(/\$/g,"$$$$"));a.element.innerHTML=a.highlightedCode}})}(Prism);
         | 
| 11 | 
            +
            Prism.languages.http={"request-line":{pattern:/^(POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\b\shttps?:\/\/\S+\sHTTP\/[0-9.]+/m,inside:{property:/^(POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\b/,"attr-name":/:\w+/}},"response-status":{pattern:/^HTTP\/1.[01] [0-9]+.*/m,inside:{property:{pattern:/(^HTTP\/1.[01] )[0-9]+.*/i,lookbehind:!0}}},"header-name":{pattern:/^[\w-]+:(?=.)/m,alias:"keyword"}};var httpLanguages={"application/json":Prism.languages.javascript,"application/xml":Prism.languages.markup,"text/xml":Prism.languages.markup,"text/html":Prism.languages.markup};for(var contentType in httpLanguages)if(httpLanguages[contentType]){var options={};options[contentType]={pattern:new RegExp("(content-type:\\s*"+contentType+"[\\w\\W]*?)(?:\\r?\\n|\\r){2}[\\w\\W]*","i"),lookbehind:!0,inside:{rest:httpLanguages[contentType]}},Prism.languages.insertBefore("http","header-name",options)};
         | 
| 12 | 
            +
            Prism.languages.php=Prism.languages.extend("clike",{keyword:/\b(and|or|xor|array|as|break|case|cfunction|class|const|continue|declare|default|die|do|else|elseif|enddeclare|endfor|endforeach|endif|endswitch|endwhile|extends|for|foreach|function|include|include_once|global|if|new|return|static|switch|use|require|require_once|var|while|abstract|interface|public|implements|private|protected|parent|throw|null|echo|print|trait|namespace|final|yield|goto|instanceof|finally|try|catch)\b/i,constant:/\b[A-Z0-9_]{2,}\b/,comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0}}),Prism.languages.insertBefore("php","class-name",{"shell-comment":{pattern:/(^|[^\\])#.*/,lookbehind:!0,alias:"comment"}}),Prism.languages.insertBefore("php","keyword",{delimiter:/\?>|<\?(?:php)?/i,variable:/\$\w+\b/i,"package":{pattern:/(\\|namespace\s+|use\s+)[\w\\]+/,lookbehind:!0,inside:{punctuation:/\\/}}}),Prism.languages.insertBefore("php","operator",{property:{pattern:/(->)[\w]+/,lookbehind:!0}}),Prism.languages.markup&&(Prism.hooks.add("before-highlight",function(e){"php"===e.language&&(e.tokenStack=[],e.backupCode=e.code,e.code=e.code.replace(/(?:<\?php|<\?)[\w\W]*?(?:\?>)/gi,function(a){return e.tokenStack.push(a),"{{{PHP"+e.tokenStack.length+"}}}"}))}),Prism.hooks.add("before-insert",function(e){"php"===e.language&&(e.code=e.backupCode,delete e.backupCode)}),Prism.hooks.add("after-highlight",function(e){if("php"===e.language){for(var a,n=0;a=e.tokenStack[n];n++)e.highlightedCode=e.highlightedCode.replace("{{{PHP"+(n+1)+"}}}",Prism.highlight(a,e.grammar,"php").replace(/\$/g,"$$$$"));e.element.innerHTML=e.highlightedCode}}),Prism.hooks.add("wrap",function(e){"php"===e.language&&"markup"===e.type&&(e.content=e.content.replace(/(\{\{\{PHP[0-9]+\}\}\})/g,'<span class="token php">$1</span>'))}),Prism.languages.insertBefore("php","comment",{markup:{pattern:/<[^?]\/?(.*?)>/,inside:Prism.languages.markup},php:/\{\{\{PHP[0-9]+\}\}\}/}));
         | 
| 13 | 
            +
            Prism.languages.python={"triple-quoted-string":{pattern:/"""[\s\S]+?"""|'''[\s\S]+?'''/,alias:"string"},comment:{pattern:/(^|[^\\])#.*/,lookbehind:!0},string:/("|')(?:\\?.)*?\1/,"function":{pattern:/((?:^|\s)def[ \t]+)[a-zA-Z_][a-zA-Z0-9_]*(?=\()/g,lookbehind:!0},"class-name":{pattern:/(\bclass\s+)[a-z0-9_]+/i,lookbehind:!0},keyword:/\b(?:as|assert|async|await|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|pass|print|raise|return|try|while|with|yield)\b/,"boolean":/\b(?:True|False)\b/,number:/\b-?(?:0[bo])?(?:(?:\d|0x[\da-f])[\da-f]*\.?\d*|\.\d+)(?:e[+-]?\d+)?j?\b/i,operator:/[-+%=]=?|!=|\*\*?=?|\/\/?=?|<[<=>]?|>[=>]?|[&|^~]|\b(?:or|and|not)\b/,punctuation:/[{}[\];(),.:]/};
         | 
| 14 | 
            +
            !function(e){e.languages.sass=e.languages.extend("css",{comment:{pattern:/^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t]+.+)*/m,lookbehind:!0}}),e.languages.insertBefore("sass","atrule",{"atrule-line":{pattern:/^(?:[ \t]*)[@+=].+/m,inside:{atrule:/(?:@[\w-]+|[+=])/m}}}),delete e.languages.sass.atrule;var a=/((\$[-_\w]+)|(#\{\$[-_\w]+\}))/i,t=[/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|or|not)\b/,{pattern:/(\s+)-(?=\s)/,lookbehind:!0}];e.languages.insertBefore("sass","property",{"variable-line":{pattern:/^[ \t]*\$.+/m,inside:{punctuation:/:/,variable:a,operator:t}},"property-line":{pattern:/^[ \t]*(?:[^:\s]+ *:.*|:[^:\s]+.*)/m,inside:{property:[/[^:\s]+(?=\s*:)/,{pattern:/(:)[^:\s]+/,lookbehind:!0}],punctuation:/:/,variable:a,operator:t,important:e.languages.sass.important}}}),delete e.languages.sass.property,delete e.languages.sass.important,delete e.languages.sass.selector,e.languages.insertBefore("sass","punctuation",{selector:{pattern:/([ \t]*)\S(?:,?[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,?[^,\r\n]+)*)*/,lookbehind:!0}})}(Prism);
         | 
| 15 | 
            +
            Prism.languages.scss=Prism.languages.extend("css",{comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0},atrule:{pattern:/@[\w-]+(?:\([^()]+\)|[^(])*?(?=\s+[{;])/,inside:{rule:/@[\w-]+/}},url:/(?:[-a-z]+-)*url(?=\()/i,selector:{pattern:/(?=\S)[^@;\{\}\(\)]?([^@;\{\}\(\)]|&|#\{\$[-_\w]+\})+(?=\s*\{(\}|\s|[^\}]+(:|\{)[^\}]+))/m,inside:{placeholder:/%[-_\w]+/}}}),Prism.languages.insertBefore("scss","atrule",{keyword:[/@(?:if|else(?: if)?|for|each|while|import|extend|debug|warn|mixin|include|function|return|content)/i,{pattern:/( +)(?:from|through)(?= )/,lookbehind:!0}]}),Prism.languages.insertBefore("scss","property",{variable:/\$[-_\w]+|#\{\$[-_\w]+\}/}),Prism.languages.insertBefore("scss","function",{placeholder:{pattern:/%[-_\w]+/,alias:"selector"},statement:/\B!(?:default|optional)\b/i,"boolean":/\b(?:true|false)\b/,"null":/\bnull\b/,operator:{pattern:/(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|or|not)(?=\s)/,lookbehind:!0}}),Prism.languages.scss.atrule.inside.rest=Prism.util.clone(Prism.languages.scss);
         | 
| 16 | 
            +
            Prism.languages.vim={string:/"(?:[^"\\\r\n]|\\.)*"|'(?:[^'\r\n]|'')*'/,comment:/".*/,"function":/\w+(?=\()/,keyword:/\b(?:ab|abbreviate|abc|abclear|abo|aboveleft|al|all|arga|argadd|argd|argdelete|argdo|arge|argedit|argg|argglobal|argl|arglocal|ar|args|argu|argument|as|ascii|bad|badd|ba|ball|bd|bdelete|be|bel|belowright|bf|bfirst|bl|blast|bm|bmodified|bn|bnext|bN|bNext|bo|botright|bp|bprevious|brea|break|breaka|breakadd|breakd|breakdel|breakl|breaklist|br|brewind|bro|browse|bufdo|b|buffer|buffers|bun|bunload|bw|bwipeout|ca|cabbrev|cabc|cabclear|caddb|caddbuffer|cad|caddexpr|caddf|caddfile|cal|call|cat|catch|cb|cbuffer|cc|ccl|cclose|cd|ce|center|cex|cexpr|cf|cfile|cfir|cfirst|cgetb|cgetbuffer|cgete|cgetexpr|cg|cgetfile|c|change|changes|chd|chdir|che|checkpath|checkt|checktime|cla|clast|cl|clist|clo|close|cmapc|cmapclear|cnew|cnewer|cn|cnext|cN|cNext|cnf|cnfile|cNfcNfile|cnorea|cnoreabbrev|col|colder|colo|colorscheme|comc|comclear|comp|compiler|conf|confirm|con|continue|cope|copen|co|copy|cpf|cpfile|cp|cprevious|cq|cquit|cr|crewind|cuna|cunabbrev|cu|cunmap|cw|cwindow|debugg|debuggreedy|delc|delcommand|d|delete|delf|delfunction|delm|delmarks|diffg|diffget|diffoff|diffpatch|diffpu|diffput|diffsplit|diffthis|diffu|diffupdate|dig|digraphs|di|display|dj|djump|dl|dlist|dr|drop|ds|dsearch|dsp|dsplit|earlier|echoe|echoerr|echom|echomsg|echon|e|edit|el|else|elsei|elseif|em|emenu|endfo|endfor|endf|endfunction|endfun|en|endif|endt|endtry|endw|endwhile|ene|enew|ex|exi|exit|exu|exusage|f|file|files|filetype|fina|finally|fin|find|fini|finish|fir|first|fix|fixdel|fo|fold|foldc|foldclose|folddoc|folddoclosed|foldd|folddoopen|foldo|foldopen|for|fu|fun|function|go|goto|gr|grep|grepa|grepadd|ha|hardcopy|h|help|helpf|helpfind|helpg|helpgrep|helpt|helptags|hid|hide|his|history|ia|iabbrev|iabc|iabclear|if|ij|ijump|il|ilist|imapc|imapclear|in|inorea|inoreabbrev|isearch|isp|isplit|iuna|iunabbrev|iu|iunmap|j|join|ju|jumps|k|keepalt|keepj|keepjumps|kee|keepmarks|laddb|laddbuffer|lad|laddexpr|laddf|laddfile|lan|language|la|last|later|lb|lbuffer|lc|lcd|lch|lchdir|lcl|lclose|let|left|lefta|leftabove|lex|lexpr|lf|lfile|lfir|lfirst|lgetb|lgetbuffer|lgete|lgetexpr|lg|lgetfile|lgr|lgrep|lgrepa|lgrepadd|lh|lhelpgrep|l|list|ll|lla|llast|lli|llist|lmak|lmake|lm|lmap|lmapc|lmapclear|lnew|lnewer|lne|lnext|lN|lNext|lnf|lnfile|lNf|lNfile|ln|lnoremap|lo|loadview|loc|lockmarks|lockv|lockvar|lol|lolder|lop|lopen|lpf|lpfile|lp|lprevious|lr|lrewind|ls|lt|ltag|lu|lunmap|lv|lvimgrep|lvimgrepa|lvimgrepadd|lw|lwindow|mak|make|ma|mark|marks|mat|match|menut|menutranslate|mk|mkexrc|mks|mksession|mksp|mkspell|mkvie|mkview|mkv|mkvimrc|mod|mode|m|move|mzf|mzfile|mz|mzscheme|nbkey|new|n|next|N|Next|nmapc|nmapclear|noh|nohlsearch|norea|noreabbrev|nu|number|nun|nunmap|omapc|omapclear|on|only|o|open|opt|options|ou|ounmap|pc|pclose|ped|pedit|pe|perl|perld|perldo|po|pop|popu|popu|popup|pp|ppop|pre|preserve|prev|previous|p|print|P|Print|profd|profdel|prof|profile|promptf|promptfind|promptr|promptrepl|ps|psearch|pta|ptag|ptf|ptfirst|ptj|ptjump|ptl|ptlast|ptn|ptnext|ptN|ptNext|ptp|ptprevious|ptr|ptrewind|pts|ptselect|pu|put|pw|pwd|pyf|pyfile|py|python|qa|qall|q|quit|quita|quitall|r|read|rec|recover|redi|redir|red|redo|redr|redraw|redraws|redrawstatus|reg|registers|res|resize|ret|retab|retu|return|rew|rewind|ri|right|rightb|rightbelow|rub|ruby|rubyd|rubydo|rubyf|rubyfile|ru|runtime|rv|rviminfo|sal|sall|san|sandbox|sa|sargument|sav|saveas|sba|sball|sbf|sbfirst|sbl|sblast|sbm|sbmodified|sbn|sbnext|sbN|sbNext|sbp|sbprevious|sbr|sbrewind|sb|sbuffer|scripte|scriptencoding|scrip|scriptnames|se|set|setf|setfiletype|setg|setglobal|setl|setlocal|sf|sfind|sfir|sfirst|sh|shell|sign|sil|silent|sim|simalt|sla|slast|sl|sleep|sm|smagic|sm|smap|smapc|smapclear|sme|smenu|sn|snext|sN|sNext|sni|sniff|sno|snomagic|snor|snoremap|snoreme|snoremenu|sor|sort|so|source|spelld|spelldump|spe|spellgood|spelli|spellinfo|spellr|spellrepall|spellu|spellundo|spellw|spellwrong|sp|split|spr|sprevious|sre|srewind|sta|stag|startg|startgreplace|star|startinsert|startr|startreplace|stj|stjump|st|stop|stopi|stopinsert|sts|stselect|sun|sunhide|sunm|sunmap|sus|suspend|sv|sview|syncbind|t|tab|tabc|tabclose|tabd|tabdo|tabe|tabedit|tabf|tabfind|tabfir|tabfirst|tabl|tablast|tabm|tabmove|tabnew|tabn|tabnext|tabN|tabNext|tabo|tabonly|tabp|tabprevious|tabr|tabrewind|tabs|ta|tag|tags|tc|tcl|tcld|tcldo|tclf|tclfile|te|tearoff|tf|tfirst|th|throw|tj|tjump|tl|tlast|tm|tm|tmenu|tn|tnext|tN|tNext|to|topleft|tp|tprevious|tr|trewind|try|ts|tselect|tu|tu|tunmenu|una|unabbreviate|u|undo|undoj|undojoin|undol|undolist|unh|unhide|unlet|unlo|unlockvar|unm|unmap|up|update|verb|verbose|ve|version|vert|vertical|vie|view|vim|vimgrep|vimgrepa|vimgrepadd|vi|visual|viu|viusage|vmapc|vmapclear|vne|vnew|vs|vsplit|vu|vunmap|wa|wall|wh|while|winc|wincmd|windo|winp|winpos|win|winsize|wn|wnext|wN|wNext|wp|wprevious|wq|wqa|wqall|w|write|ws|wsverb|wv|wviminfo|X|xa|xall|x|xit|xm|xmap|xmapc|xmapclear|xme|xmenu|XMLent|XMLns|xn|xnoremap|xnoreme|xnoremenu|xu|xunmap|y|yank)\b/,builtin:/\b(?:autocmd|acd|ai|akm|aleph|allowrevins|altkeymap|ambiwidth|ambw|anti|antialias|arab|arabic|arabicshape|ari|arshape|autochdir|autoindent|autoread|autowrite|autowriteall|aw|awa|background|backspace|backup|backupcopy|backupdir|backupext|backupskip|balloondelay|ballooneval|balloonexpr|bdir|bdlay|beval|bex|bexpr|bg|bh|bin|binary|biosk|bioskey|bk|bkc|bomb|breakat|brk|browsedir|bs|bsdir|bsk|bt|bufhidden|buflisted|buftype|casemap|ccv|cdpath|cedit|cfu|ch|charconvert|ci|cin|cindent|cink|cinkeys|cino|cinoptions|cinw|cinwords|clipboard|cmdheight|cmdwinheight|cmp|cms|columns|com|comments|commentstring|compatible|complete|completefunc|completeopt|consk|conskey|copyindent|cot|cpo|cpoptions|cpt|cscopepathcomp|cscopeprg|cscopequickfix|cscopetag|cscopetagorder|cscopeverbose|cspc|csprg|csqf|cst|csto|csverb|cuc|cul|cursorcolumn|cursorline|cwh|debug|deco|def|define|delcombine|dex|dg|dict|dictionary|diff|diffexpr|diffopt|digraph|dip|dir|directory|dy|ea|ead|eadirection|eb|ed|edcompatible|ef|efm|ei|ek|enc|encoding|endofline|eol|ep|equalalways|equalprg|errorbells|errorfile|errorformat|esckeys|et|eventignore|expandtab|exrc|fcl|fcs|fdc|fde|fdi|fdl|fdls|fdm|fdn|fdo|fdt|fen|fenc|fencs|fex|ff|ffs|fileencoding|fileencodings|fileformat|fileformats|fillchars|fk|fkmap|flp|fml|fmr|foldcolumn|foldenable|foldexpr|foldignore|foldlevel|foldlevelstart|foldmarker|foldmethod|foldminlines|foldnestmax|foldtext|formatexpr|formatlistpat|formatoptions|formatprg|fp|fs|fsync|ft|gcr|gd|gdefault|gfm|gfn|gfs|gfw|ghr|gp|grepformat|grepprg|gtl|gtt|guicursor|guifont|guifontset|guifontwide|guiheadroom|guioptions|guipty|guitablabel|guitabtooltip|helpfile|helpheight|helplang|hf|hh|hi|hidden|highlight|hk|hkmap|hkmapp|hkp|hl|hlg|hls|hlsearch|ic|icon|iconstring|ignorecase|im|imactivatekey|imak|imc|imcmdline|imd|imdisable|imi|iminsert|ims|imsearch|inc|include|includeexpr|incsearch|inde|indentexpr|indentkeys|indk|inex|inf|infercase|insertmode|isf|isfname|isi|isident|isk|iskeyword|isprint|joinspaces|js|key|keymap|keymodel|keywordprg|km|kmp|kp|langmap|langmenu|laststatus|lazyredraw|lbr|lcs|linebreak|lines|linespace|lisp|lispwords|listchars|loadplugins|lpl|lsp|lz|macatsui|magic|makeef|makeprg|matchpairs|matchtime|maxcombine|maxfuncdepth|maxmapdepth|maxmem|maxmempattern|maxmemtot|mco|mef|menuitems|mfd|mh|mis|mkspellmem|ml|mls|mm|mmd|mmp|mmt|modeline|modelines|modifiable|modified|more|mouse|mousef|mousefocus|mousehide|mousem|mousemodel|mouses|mouseshape|mouset|mousetime|mp|mps|msm|mzq|mzquantum|nf|nrformats|numberwidth|nuw|odev|oft|ofu|omnifunc|opendevice|operatorfunc|opfunc|osfiletype|pa|para|paragraphs|paste|pastetoggle|patchexpr|patchmode|path|pdev|penc|pex|pexpr|pfn|ph|pheader|pi|pm|pmbcs|pmbfn|popt|preserveindent|previewheight|previewwindow|printdevice|printencoding|printexpr|printfont|printheader|printmbcharset|printmbfont|printoptions|prompt|pt|pumheight|pvh|pvw|qe|quoteescape|readonly|remap|report|restorescreen|revins|rightleft|rightleftcmd|rl|rlc|ro|rs|rtp|ruf|ruler|rulerformat|runtimepath|sbo|sc|scb|scr|scroll|scrollbind|scrolljump|scrolloff|scrollopt|scs|sect|sections|secure|sel|selection|selectmode|sessionoptions|sft|shcf|shellcmdflag|shellpipe|shellquote|shellredir|shellslash|shelltemp|shelltype|shellxquote|shiftround|shiftwidth|shm|shortmess|shortname|showbreak|showcmd|showfulltag|showmatch|showmode|showtabline|shq|si|sidescroll|sidescrolloff|siso|sj|slm|smartcase|smartindent|smarttab|smc|smd|softtabstop|sol|spc|spell|spellcapcheck|spellfile|spelllang|spellsuggest|spf|spl|splitbelow|splitright|sps|sr|srr|ss|ssl|ssop|stal|startofline|statusline|stl|stmp|su|sua|suffixes|suffixesadd|sw|swapfile|swapsync|swb|swf|switchbuf|sws|sxq|syn|synmaxcol|syntax|tabline|tabpagemax|tabstop|tagbsearch|taglength|tagrelative|tagstack|tal|tb|tbi|tbidi|tbis|tbs|tenc|term|termbidi|termencoding|terse|textauto|textmode|textwidth|tgst|thesaurus|tildeop|timeout|timeoutlen|title|titlelen|titleold|titlestring|toolbar|toolbariconsize|top|tpm|tsl|tsr|ttimeout|ttimeoutlen|ttm|tty|ttybuiltin|ttyfast|ttym|ttymouse|ttyscroll|ttytype|tw|tx|uc|ul|undolevels|updatecount|updatetime|ut|vb|vbs|vdir|verbosefile|vfile|viewdir|viewoptions|viminfo|virtualedit|visualbell|vop|wak|warn|wb|wc|wcm|wd|weirdinvert|wfh|wfw|whichwrap|wi|wig|wildchar|wildcharm|wildignore|wildmenu|wildmode|wildoptions|wim|winaltkeys|window|winfixheight|winfixwidth|winheight|winminheight|winminwidth|winwidth|wiv|wiw|wm|wmh|wmnu|wmw|wop|wrap|wrapmargin|wrapscan|writeany|writebackup|writedelay|ww|noacd|noai|noakm|noallowrevins|noaltkeymap|noanti|noantialias|noar|noarab|noarabic|noarabicshape|noari|noarshape|noautochdir|noautoindent|noautoread|noautowrite|noautowriteall|noaw|noawa|nobackup|noballooneval|nobeval|nobin|nobinary|nobiosk|nobioskey|nobk|nobl|nobomb|nobuflisted|nocf|noci|nocin|nocindent|nocompatible|noconfirm|noconsk|noconskey|nocopyindent|nocp|nocscopetag|nocscopeverbose|nocst|nocsverb|nocuc|nocul|nocursorcolumn|nocursorline|nodeco|nodelcombine|nodg|nodiff|nodigraph|nodisable|noea|noeb|noed|noedcompatible|noek|noendofline|noeol|noequalalways|noerrorbells|noesckeys|noet|noex|noexpandtab|noexrc|nofen|nofk|nofkmap|nofoldenable|nogd|nogdefault|noguipty|nohid|nohidden|nohk|nohkmap|nohkmapp|nohkp|nohls|noic|noicon|noignorecase|noim|noimc|noimcmdline|noimd|noincsearch|noinf|noinfercase|noinsertmode|nois|nojoinspaces|nojs|nolazyredraw|nolbr|nolinebreak|nolisp|nolist|noloadplugins|nolpl|nolz|noma|nomacatsui|nomagic|nomh|noml|nomod|nomodeline|nomodifiable|nomodified|nomore|nomousef|nomousefocus|nomousehide|nonu|nonumber|noodev|noopendevice|nopaste|nopi|nopreserveindent|nopreviewwindow|noprompt|nopvw|noreadonly|noremap|norestorescreen|norevins|nori|norightleft|norightleftcmd|norl|norlc|noro|nors|noru|noruler|nosb|nosc|noscb|noscrollbind|noscs|nosecure|nosft|noshellslash|noshelltemp|noshiftround|noshortname|noshowcmd|noshowfulltag|noshowmatch|noshowmode|nosi|nosm|nosmartcase|nosmartindent|nosmarttab|nosmd|nosn|nosol|nospell|nosplitbelow|nosplitright|nospr|nosr|nossl|nosta|nostartofline|nostmp|noswapfile|noswf|nota|notagbsearch|notagrelative|notagstack|notbi|notbidi|notbs|notermbidi|noterse|notextauto|notextmode|notf|notgst|notildeop|notimeout|notitle|noto|notop|notr|nottimeout|nottybuiltin|nottyfast|notx|novb|novisualbell|nowa|nowarn|nowb|noweirdinvert|nowfh|nowfw|nowildmenu|nowinfixheight|nowinfixwidth|nowiv|nowmnu|nowrap|nowrapscan|nowrite|nowriteany|nowritebackup|nows|invacd|invai|invakm|invallowrevins|invaltkeymap|invanti|invantialias|invar|invarab|invarabic|invarabicshape|invari|invarshape|invautochdir|invautoindent|invautoread|invautowrite|invautowriteall|invaw|invawa|invbackup|invballooneval|invbeval|invbin|invbinary|invbiosk|invbioskey|invbk|invbl|invbomb|invbuflisted|invcf|invci|invcin|invcindent|invcompatible|invconfirm|invconsk|invconskey|invcopyindent|invcp|invcscopetag|invcscopeverbose|invcst|invcsverb|invcuc|invcul|invcursorcolumn|invcursorline|invdeco|invdelcombine|invdg|invdiff|invdigraph|invdisable|invea|inveb|inved|invedcompatible|invek|invendofline|inveol|invequalalways|inverrorbells|invesckeys|invet|invex|invexpandtab|invexrc|invfen|invfk|invfkmap|invfoldenable|invgd|invgdefault|invguipty|invhid|invhidden|invhk|invhkmap|invhkmapp|invhkp|invhls|invhlsearch|invic|invicon|invignorecase|invim|invimc|invimcmdline|invimd|invincsearch|invinf|invinfercase|invinsertmode|invis|invjoinspaces|invjs|invlazyredraw|invlbr|invlinebreak|invlisp|invlist|invloadplugins|invlpl|invlz|invma|invmacatsui|invmagic|invmh|invml|invmod|invmodeline|invmodifiable|invmodified|invmore|invmousef|invmousefocus|invmousehide|invnu|invnumber|invodev|invopendevice|invpaste|invpi|invpreserveindent|invpreviewwindow|invprompt|invpvw|invreadonly|invremap|invrestorescreen|invrevins|invri|invrightleft|invrightleftcmd|invrl|invrlc|invro|invrs|invru|invruler|invsb|invsc|invscb|invscrollbind|invscs|invsecure|invsft|invshellslash|invshelltemp|invshiftround|invshortname|invshowcmd|invshowfulltag|invshowmatch|invshowmode|invsi|invsm|invsmartcase|invsmartindent|invsmarttab|invsmd|invsn|invsol|invspell|invsplitbelow|invsplitright|invspr|invsr|invssl|invsta|invstartofline|invstmp|invswapfile|invswf|invta|invtagbsearch|invtagrelative|invtagstack|invtbi|invtbidi|invtbs|invtermbidi|invterse|invtextauto|invtextmode|invtf|invtgst|invtildeop|invtimeout|invtitle|invto|invtop|invtr|invttimeout|invttybuiltin|invttyfast|invtx|invvb|invvisualbell|invwa|invwarn|invwb|invweirdinvert|invwfh|invwfw|invwildmenu|invwinfixheight|invwinfixwidth|invwiv|invwmnu|invwrap|invwrapscan|invwrite|invwriteany|invwritebackup|invws|t_AB|t_AF|t_al|t_AL|t_bc|t_cd|t_ce|t_Ce|t_cl|t_cm|t_Co|t_cs|t_Cs|t_CS|t_CV|t_da|t_db|t_dl|t_DL|t_EI|t_F1|t_F2|t_F3|t_F4|t_F5|t_F6|t_F7|t_F8|t_F9|t_fs|t_IE|t_IS|t_k1|t_K1|t_k2|t_k3|t_K3|t_k4|t_K4|t_k5|t_K5|t_k6|t_K6|t_k7|t_K7|t_k8|t_K8|t_k9|t_K9|t_KA|t_kb|t_kB|t_KB|t_KC|t_kd|t_kD|t_KD|t_ke|t_KE|t_KF|t_KG|t_kh|t_KH|t_kI|t_KI|t_KJ|t_KK|t_kl|t_KL|t_kN|t_kP|t_kr|t_ks|t_ku|t_le|t_mb|t_md|t_me|t_mr|t_ms|t_nd|t_op|t_RI|t_RV|t_Sb|t_se|t_Sf|t_SI|t_so|t_sr|t_te|t_ti|t_ts|t_ue|t_us|t_ut|t_vb|t_ve|t_vi|t_vs|t_WP|t_WS|t_xs|t_ZH|t_ZR)\b/,number:/\b(?:0x[\da-f]+|\d+(?:\.\d+)?)\b/i,operator:/\|\||&&|[-+.]=?|[=!](?:[=~][#?]?)?|[<>]=?[#?]?|[*\/%?]|\b(?:is(?:not)?)\b/,punctuation:/[{}[\](),;:]/};
         | 
| 17 | 
            +
            Prism.languages.yaml={scalar:{pattern:/([\-:]\s*(![^\s]+)?[ \t]*[|>])[ \t]*(?:((?:\r?\n|\r)[ \t]+)[^\r\n]+(?:\3[^\r\n]+)*)/,lookbehind:!0,alias:"string"},comment:/#.*/,key:{pattern:/(\s*[:\-,[{\r\n?][ \t]*(![^\s]+)?[ \t]*)[^\r\n{[\]},#]+?(?=\s*:\s)/,lookbehind:!0,alias:"atrule"},directive:{pattern:/(^[ \t]*)%.+/m,lookbehind:!0,alias:"important"},datetime:{pattern:/([:\-,[{]\s*(![^\s]+)?[ \t]*)(\d{4}-\d\d?-\d\d?([tT]|[ \t]+)\d\d?:\d{2}:\d{2}(\.\d*)?[ \t]*(Z|[-+]\d\d?(:\d{2})?)?|\d{4}-\d{2}-\d{2}|\d\d?:\d{2}(:\d{2}(\.\d*)?)?)(?=[ \t]*($|,|]|}))/m,lookbehind:!0,alias:"number"},"boolean":{pattern:/([:\-,[{]\s*(![^\s]+)?[ \t]*)(true|false)[ \t]*(?=$|,|]|})/im,lookbehind:!0,alias:"important"},"null":{pattern:/([:\-,[{]\s*(![^\s]+)?[ \t]*)(null|~)[ \t]*(?=$|,|]|})/im,lookbehind:!0,alias:"important"},string:{pattern:/([:\-,[{]\s*(![^\s]+)?[ \t]*)("(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')(?=[ \t]*($|,|]|}))/m,lookbehind:!0},number:{pattern:/([:\-,[{]\s*(![^\s]+)?[ \t]*)[+\-]?(0x[\da-f]+|0o[0-7]+|(\d+\.?\d*|\.?\d+)(e[\+\-]?\d+)?|\.inf|\.nan)[ \t]*(?=$|,|]|})/im,lookbehind:!0},tag:/![^\s]+/,important:/[&*][\w]+/,punctuation:/---|[:[\]{}\-,|>?]|\.\.\./};
         | 
| 18 | 
            +
            !function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("complete",function(e){if(e.code){var t=e.element.parentNode,s=/\s*\bline-numbers\b\s*/;if(t&&/pre/i.test(t.nodeName)&&(s.test(t.className)||s.test(e.element.className))&&!e.element.querySelector(".line-numbers-rows")){s.test(e.element.className)&&(e.element.className=e.element.className.replace(s,"")),s.test(t.className)||(t.className+=" line-numbers");var n,a=e.code.match(/\n(?!$)/g),l=a?a.length+1:1,m=new Array(l+1);m=m.join("<span></span>"),n=document.createElement("span"),n.className="line-numbers-rows",n.innerHTML=m,t.hasAttribute("data-start")&&(t.style.counterReset="linenumber "+(parseInt(t.getAttribute("data-start"),10)-1)),e.element.appendChild(n)}}})}();
         | 
    
        metadata
    ADDED
    
    | @@ -0,0 +1,929 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: jekyll-theme-prettydocs-full
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 1.0.0
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors:
         | 
| 7 | 
            +
            - Connor Christie
         | 
| 8 | 
            +
            - Alexandru Coman
         | 
| 9 | 
            +
            autorequire: 
         | 
| 10 | 
            +
            bindir: bin
         | 
| 11 | 
            +
            cert_chain: []
         | 
| 12 | 
            +
            date: 2018-08-06 00:00:00.000000000 Z
         | 
| 13 | 
            +
            dependencies:
         | 
| 14 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 15 | 
            +
              name: jekyll
         | 
| 16 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 17 | 
            +
                requirements:
         | 
| 18 | 
            +
                - - "~>"
         | 
| 19 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 20 | 
            +
                    version: '3.3'
         | 
| 21 | 
            +
              type: :development
         | 
| 22 | 
            +
              prerelease: false
         | 
| 23 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 24 | 
            +
                requirements:
         | 
| 25 | 
            +
                - - "~>"
         | 
| 26 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 27 | 
            +
                    version: '3.3'
         | 
| 28 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 29 | 
            +
              name: bundler
         | 
| 30 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 31 | 
            +
                requirements:
         | 
| 32 | 
            +
                - - "~>"
         | 
| 33 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 34 | 
            +
                    version: '1.12'
         | 
| 35 | 
            +
              type: :development
         | 
| 36 | 
            +
              prerelease: false
         | 
| 37 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 38 | 
            +
                requirements:
         | 
| 39 | 
            +
                - - "~>"
         | 
| 40 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 41 | 
            +
                    version: '1.12'
         | 
| 42 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 43 | 
            +
              name: jekyll-paginate
         | 
| 44 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 45 | 
            +
                requirements:
         | 
| 46 | 
            +
                - - "~>"
         | 
| 47 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 48 | 
            +
                    version: '1.0'
         | 
| 49 | 
            +
              type: :runtime
         | 
| 50 | 
            +
              prerelease: false
         | 
| 51 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 52 | 
            +
                requirements:
         | 
| 53 | 
            +
                - - "~>"
         | 
| 54 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 55 | 
            +
                    version: '1.0'
         | 
| 56 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 57 | 
            +
              name: jekyll-sitemap
         | 
| 58 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 59 | 
            +
                requirements:
         | 
| 60 | 
            +
                - - "~>"
         | 
| 61 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 62 | 
            +
                    version: '1.1'
         | 
| 63 | 
            +
              type: :runtime
         | 
| 64 | 
            +
              prerelease: false
         | 
| 65 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 66 | 
            +
                requirements:
         | 
| 67 | 
            +
                - - "~>"
         | 
| 68 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 69 | 
            +
                    version: '1.1'
         | 
| 70 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 71 | 
            +
              name: liquid-md5
         | 
| 72 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 73 | 
            +
                requirements:
         | 
| 74 | 
            +
                - - "~>"
         | 
| 75 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 76 | 
            +
                    version: 0.0.3
         | 
| 77 | 
            +
              type: :runtime
         | 
| 78 | 
            +
              prerelease: false
         | 
| 79 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 80 | 
            +
                requirements:
         | 
| 81 | 
            +
                - - "~>"
         | 
| 82 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 83 | 
            +
                    version: 0.0.3
         | 
| 84 | 
            +
            description: PrettyDocs-Jekyll is a free project documentation theme designed for
         | 
| 85 | 
            +
              developers & startups.
         | 
| 86 | 
            +
            email:
         | 
| 87 | 
            +
            - chillercraft@hotmail.com
         | 
| 88 | 
            +
            - alexandru.coman@tss-yonder.com
         | 
| 89 | 
            +
            executables: []
         | 
| 90 | 
            +
            extensions: []
         | 
| 91 | 
            +
            extra_rdoc_files: []
         | 
| 92 | 
            +
            files:
         | 
| 93 | 
            +
            - README.md
         | 
| 94 | 
            +
            - _data/default/base.yml
         | 
| 95 | 
            +
            - _data/default/cards.yml
         | 
| 96 | 
            +
            - _data/default/contact.yml
         | 
| 97 | 
            +
            - _data/default/faqs.yml
         | 
| 98 | 
            +
            - _data/default/timeline.yml
         | 
| 99 | 
            +
            - _includes/_partials/item.html
         | 
| 100 | 
            +
            - _includes/_partials/post.html
         | 
| 101 | 
            +
            - _includes/_partials/social-buttons.html
         | 
| 102 | 
            +
            - _includes/_partials/toc.html
         | 
| 103 | 
            +
            - _includes/_sections/blog_post.html
         | 
| 104 | 
            +
            - _includes/_sections/cards.html
         | 
| 105 | 
            +
            - _includes/_sections/contact.html
         | 
| 106 | 
            +
            - _includes/_sections/faqs.html
         | 
| 107 | 
            +
            - _includes/_sections/items-list.html
         | 
| 108 | 
            +
            - _includes/_sections/not-found.html
         | 
| 109 | 
            +
            - _includes/_sections/resources.html
         | 
| 110 | 
            +
            - _includes/_sections/timeline.html
         | 
| 111 | 
            +
            - _includes/_shower/setup.md
         | 
| 112 | 
            +
            - _includes/_shower/showerify.html
         | 
| 113 | 
            +
            - _includes/_theme/footer.html
         | 
| 114 | 
            +
            - _includes/_theme/head.html
         | 
| 115 | 
            +
            - _includes/_theme/header.html
         | 
| 116 | 
            +
            - _includes/_theme/js.html
         | 
| 117 | 
            +
            - _includes/_utils/common
         | 
| 118 | 
            +
            - _includes/_utils/picture
         | 
| 119 | 
            +
            - _layouts/compress.html
         | 
| 120 | 
            +
            - _layouts/default.html
         | 
| 121 | 
            +
            - _layouts/faqs.html
         | 
| 122 | 
            +
            - _layouts/landing.html
         | 
| 123 | 
            +
            - _layouts/page.html
         | 
| 124 | 
            +
            - _layouts/post.html
         | 
| 125 | 
            +
            - _layouts/shower.html
         | 
| 126 | 
            +
            - _sass/globals/_base.scss
         | 
| 127 | 
            +
            - _sass/globals/_mixins.scss
         | 
| 128 | 
            +
            - _sass/partials/_base.scss
         | 
| 129 | 
            +
            - _sass/partials/_buttons.scss
         | 
| 130 | 
            +
            - _sass/partials/_cards.scss
         | 
| 131 | 
            +
            - _sass/partials/_contact.scss
         | 
| 132 | 
            +
            - _sass/partials/_doc.scss
         | 
| 133 | 
            +
            - _sass/partials/_footer.scss
         | 
| 134 | 
            +
            - _sass/partials/_header.scss
         | 
| 135 | 
            +
            - _sass/partials/_helper.scss
         | 
| 136 | 
            +
            - _sass/partials/_landing.scss
         | 
| 137 | 
            +
            - _sass/partials/_post.scss
         | 
| 138 | 
            +
            - _sass/partials/_resources.scss
         | 
| 139 | 
            +
            - _sass/partials/_toc.scss
         | 
| 140 | 
            +
            - _sass/prettydocs-jekyll.scss
         | 
| 141 | 
            +
            - _sass/vendor/_shower.scss
         | 
| 142 | 
            +
            - _sass/vendor/_timeline.scss
         | 
| 143 | 
            +
            - _sass/vendor/shower/defaults.scss
         | 
| 144 | 
            +
            - _sass/vendor/shower/reset.scss
         | 
| 145 | 
            +
            - _sass/vendor/shower/screen.scss
         | 
| 146 | 
            +
            - _sass/vendor/timeline/functions/desaturated-lighten.scss
         | 
| 147 | 
            +
            - _sass/vendor/timeline/functions/map-deep-get.scss
         | 
| 148 | 
            +
            - _sass/vendor/timeline/functions/map-set.scss
         | 
| 149 | 
            +
            - _sass/vendor/timeline/functions/mutate-colors.scss
         | 
| 150 | 
            +
            - _sass/vendor/timeline/mixins/timeline-element.scss
         | 
| 151 | 
            +
            - _sass/vendor/timeline/mixins/timeline-event-variant.scss
         | 
| 152 | 
            +
            - _sass/vendor/timeline/mixins/timeline-item-arrow-color-variant.scss
         | 
| 153 | 
            +
            - _sass/vendor/timeline/mixins/timeline-item-arrow-size-variant.scss
         | 
| 154 | 
            +
            - _sass/vendor/timeline/mixins/timeline-item-right-side-position.scss
         | 
| 155 | 
            +
            - _sass/vendor/timeline/mixins/timeline-item-start-margins.scss
         | 
| 156 | 
            +
            - _sass/vendor/timeline/mixins/timeline-item-variant.scss
         | 
| 157 | 
            +
            - _sass/vendor/timeline/mixins/timeline-label-variant.scss
         | 
| 158 | 
            +
            - _sass/vendor/timeline/mixins/timeline-line-variant.scss
         | 
| 159 | 
            +
            - _sass/vendor/timeline/mixins/timeline-point-color-variant.scss
         | 
| 160 | 
            +
            - _sass/vendor/timeline/mixins/timeline-point-size-variant.scss
         | 
| 161 | 
            +
            - _sass/vendor/timeline/mixins/timeline-responsive-variant.scss
         | 
| 162 | 
            +
            - _sass/vendor/timeline/mixins/timeline-row-clearfix.scss
         | 
| 163 | 
            +
            - _sass/vendor/timeline/mixins/timeline-single-column.scss
         | 
| 164 | 
            +
            - _sass/vendor/timeline/mixins/transform-center.scss
         | 
| 165 | 
            +
            - _sass/vendor/timeline/variables.scss
         | 
| 166 | 
            +
            - assets/css/main.scss
         | 
| 167 | 
            +
            - assets/css/shower.scss
         | 
| 168 | 
            +
            - assets/images/empty.gif
         | 
| 169 | 
            +
            - assets/images/favicon.ico
         | 
| 170 | 
            +
            - assets/images/labtocat.png
         | 
| 171 | 
            +
            - assets/js/main.js
         | 
| 172 | 
            +
            - assets/plugins/elegant_font/Licensing/gpl_license.txt
         | 
| 173 | 
            +
            - assets/plugins/elegant_font/Licensing/mit_license.txt
         | 
| 174 | 
            +
            - assets/plugins/elegant_font/css/fonts/ElegantIcons.eot
         | 
| 175 | 
            +
            - assets/plugins/elegant_font/css/fonts/ElegantIcons.svg
         | 
| 176 | 
            +
            - assets/plugins/elegant_font/css/fonts/ElegantIcons.ttf
         | 
| 177 | 
            +
            - assets/plugins/elegant_font/css/fonts/ElegantIcons.woff
         | 
| 178 | 
            +
            - assets/plugins/elegant_font/css/index.html
         | 
| 179 | 
            +
            - assets/plugins/elegant_font/css/lte-ie7.js
         | 
| 180 | 
            +
            - assets/plugins/elegant_font/css/style.css
         | 
| 181 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow-up-down.png
         | 
| 182 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_back.png
         | 
| 183 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2down.png
         | 
| 184 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2down_alt2.png
         | 
| 185 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2dwnn_alt.png
         | 
| 186 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2left.png
         | 
| 187 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt.png
         | 
| 188 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt2.png
         | 
| 189 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2right.png
         | 
| 190 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt.png
         | 
| 191 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt2.png
         | 
| 192 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2up.png
         | 
| 193 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt.png
         | 
| 194 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt2.png
         | 
| 195 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-down.png
         | 
| 196 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt.png
         | 
| 197 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt2.png
         | 
| 198 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-left.png
         | 
| 199 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt.png
         | 
| 200 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt2.png
         | 
| 201 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-right.png
         | 
| 202 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt.png
         | 
| 203 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt2.png
         | 
| 204 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-up.png
         | 
| 205 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot-up_alt2.png
         | 
| 206 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_carrot_up_alt.png
         | 
| 207 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_condense.png
         | 
| 208 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_condense_alt.png
         | 
| 209 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_down.png
         | 
| 210 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_down_alt.png
         | 
| 211 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_expand.png
         | 
| 212 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_expand_alt.png
         | 
| 213 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_expand_alt2.png
         | 
| 214 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_expand_alt3.png
         | 
| 215 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_left-down.png
         | 
| 216 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_left-down_alt.png
         | 
| 217 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_left-right.png
         | 
| 218 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_left-right_alt.png
         | 
| 219 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_left-up.png
         | 
| 220 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_left-up_alt.png
         | 
| 221 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_left.png
         | 
| 222 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_left_alt.png
         | 
| 223 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_move.png
         | 
| 224 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_right-down.png
         | 
| 225 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_right-down_alt.png
         | 
| 226 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_right-up.png
         | 
| 227 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_right-up_alt.png
         | 
| 228 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_right.png
         | 
| 229 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_right_alt.png
         | 
| 230 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-down.png
         | 
| 231 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt.png
         | 
| 232 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt2.png
         | 
| 233 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-left.png
         | 
| 234 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt.png
         | 
| 235 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt2.png
         | 
| 236 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-right.png
         | 
| 237 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt.png
         | 
| 238 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt2.png
         | 
| 239 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-up.png
         | 
| 240 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt.png
         | 
| 241 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt2.png
         | 
| 242 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_up-down_alt.png
         | 
| 243 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_up.png
         | 
| 244 | 
            +
            - assets/plugins/elegant_font/images/PNG/arrow_up_alt.png
         | 
| 245 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_adjust-horiz.png
         | 
| 246 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_adjust-vert.png
         | 
| 247 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_archive.png
         | 
| 248 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_archive_alt.png
         | 
| 249 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_bag.png
         | 
| 250 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_bag_alt.png
         | 
| 251 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_balance.png
         | 
| 252 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_blocked.png
         | 
| 253 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_book.png
         | 
| 254 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_book_alt.png
         | 
| 255 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_box-checked.png
         | 
| 256 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_box-empty.png
         | 
| 257 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_box-selected.png
         | 
| 258 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_briefcase.png
         | 
| 259 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_briefcase_alt.png
         | 
| 260 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_building.png
         | 
| 261 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_building_alt.png
         | 
| 262 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_calculator_alt.png
         | 
| 263 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_calendar.png
         | 
| 264 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_calulator.png
         | 
| 265 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_camera.png
         | 
| 266 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_camera_alt.png
         | 
| 267 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cart.png
         | 
| 268 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cart_alt.png
         | 
| 269 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_chat.png
         | 
| 270 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_chat_alt.png
         | 
| 271 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_check.png
         | 
| 272 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_check_alt.png
         | 
| 273 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_check_alt2.png
         | 
| 274 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_circle-empty.png
         | 
| 275 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_circle-slelected.png
         | 
| 276 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_clipboard.png
         | 
| 277 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_clock.png
         | 
| 278 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_clock_alt.png
         | 
| 279 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_close.png
         | 
| 280 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_close_alt.png
         | 
| 281 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_close_alt2.png
         | 
| 282 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cloud-download.png
         | 
| 283 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cloud-download_alt.png
         | 
| 284 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cloud-upload.png
         | 
| 285 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cloud-upload_alt.png
         | 
| 286 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cloud.png
         | 
| 287 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cloud_alt.png
         | 
| 288 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cog.png
         | 
| 289 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cogs.png
         | 
| 290 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_comment.png
         | 
| 291 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_comment_alt.png
         | 
| 292 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_compass.png
         | 
| 293 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_compass_alt.png
         | 
| 294 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cone.png
         | 
| 295 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cone_alt.png
         | 
| 296 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_contacts.png
         | 
| 297 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_contacts_alt.png
         | 
| 298 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_creditcard.png
         | 
| 299 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_currency.png
         | 
| 300 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_currency_alt.png
         | 
| 301 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cursor.png
         | 
| 302 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_cursor_alt.png
         | 
| 303 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_datareport.png
         | 
| 304 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_datareport_alt.png
         | 
| 305 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_desktop.png
         | 
| 306 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_dislike.png
         | 
| 307 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_dislike_alt.png
         | 
| 308 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_document.png
         | 
| 309 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_document_alt.png
         | 
| 310 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_documents.png
         | 
| 311 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_documents_alt.png
         | 
| 312 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_download.png
         | 
| 313 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_drawer.png
         | 
| 314 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_drawer_alt.png
         | 
| 315 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_drive.png
         | 
| 316 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_drive_alt.png
         | 
| 317 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_easel.png
         | 
| 318 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_easel_alt.png
         | 
| 319 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_error-circle.png
         | 
| 320 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_error-circle_alt.png
         | 
| 321 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_error-oct.png
         | 
| 322 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_error-oct_alt.png
         | 
| 323 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_error-triangle.png
         | 
| 324 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_error-triangle_alt.png
         | 
| 325 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_film.png
         | 
| 326 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_floppy.png
         | 
| 327 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_floppy_alt.png
         | 
| 328 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_flowchart.png
         | 
| 329 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_flowchart_alt.png
         | 
| 330 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_folder-add.png
         | 
| 331 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_folder-add_alt.png
         | 
| 332 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_folder-alt.png
         | 
| 333 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_folder-open.png
         | 
| 334 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_folder-open_alt.png
         | 
| 335 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_folder.png
         | 
| 336 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_folder_download.png
         | 
| 337 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_folder_upload.png
         | 
| 338 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_genius.png
         | 
| 339 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_gift.png
         | 
| 340 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_gift_alt.png
         | 
| 341 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_globe-2.png
         | 
| 342 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_globe.png
         | 
| 343 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_globe_alt.png
         | 
| 344 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_grid-2x2.png
         | 
| 345 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_grid-3x3.png
         | 
| 346 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_group.png
         | 
| 347 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_headphones.png
         | 
| 348 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_heart.png
         | 
| 349 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_heart_alt.png
         | 
| 350 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_hourglass.png
         | 
| 351 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_house.png
         | 
| 352 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_house_alt.png
         | 
| 353 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_id-2.png
         | 
| 354 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_id-2_alt.png
         | 
| 355 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_id.png
         | 
| 356 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_id_alt.png
         | 
| 357 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_image.png
         | 
| 358 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_images.png
         | 
| 359 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_info.png
         | 
| 360 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_info_alt.png
         | 
| 361 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_key.png
         | 
| 362 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_key_alt.png
         | 
| 363 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_laptop.png
         | 
| 364 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_lifesaver.png
         | 
| 365 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_lightbulb.png
         | 
| 366 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_lightbulb_alt.png
         | 
| 367 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_like.png
         | 
| 368 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_like_alt.png
         | 
| 369 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_link.png
         | 
| 370 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_link_alt.png
         | 
| 371 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_loading.png
         | 
| 372 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_lock-open.png
         | 
| 373 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_lock-open_alt.png
         | 
| 374 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_lock.png
         | 
| 375 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_lock_alt.png
         | 
| 376 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_mail.png
         | 
| 377 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_mail_alt.png
         | 
| 378 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_map.png
         | 
| 379 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_map_alt.png
         | 
| 380 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt.png
         | 
| 381 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt2.png
         | 
| 382 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_menu-square_alt.png
         | 
| 383 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_menu-square_alt2.png
         | 
| 384 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_menu.png
         | 
| 385 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_mic.png
         | 
| 386 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_mic_alt.png
         | 
| 387 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_minus-06.png
         | 
| 388 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_minus-box.png
         | 
| 389 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_minus_alt.png
         | 
| 390 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_minus_alt2.png
         | 
| 391 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_mobile.png
         | 
| 392 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_mug.png
         | 
| 393 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_mug_alt.png
         | 
| 394 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_music.png
         | 
| 395 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_ol.png
         | 
| 396 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_paperclip.png
         | 
| 397 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pause.png
         | 
| 398 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pause_alt.png
         | 
| 399 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pause_alt2.png
         | 
| 400 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pencil-edit.png
         | 
| 401 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pencil-edit_alt.png
         | 
| 402 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pencil.png
         | 
| 403 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pencil_alt.png
         | 
| 404 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pens.png
         | 
| 405 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pens_alt.png
         | 
| 406 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_percent.png
         | 
| 407 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_percent_alt.png
         | 
| 408 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_phone.png
         | 
| 409 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_piechart.png
         | 
| 410 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pin.png
         | 
| 411 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pin_alt.png
         | 
| 412 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_plus-box.png
         | 
| 413 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_plus.png
         | 
| 414 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_plus_alt.png
         | 
| 415 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_plus_alt2.png
         | 
| 416 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_printer-alt.png
         | 
| 417 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_printer.png
         | 
| 418 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_profile.png
         | 
| 419 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pushpin.png
         | 
| 420 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_pushpin_alt.png
         | 
| 421 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_puzzle.png
         | 
| 422 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_puzzle_alt.png
         | 
| 423 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_question.png
         | 
| 424 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_question_alt.png
         | 
| 425 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_question_alt2.png
         | 
| 426 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_quotations.png
         | 
| 427 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_quotations_alt.png
         | 
| 428 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_quotations_alt2.png
         | 
| 429 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_refresh.png
         | 
| 430 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_ribbon.png
         | 
| 431 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_ribbon_alt.png
         | 
| 432 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_rook.png
         | 
| 433 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_search.png
         | 
| 434 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_search2.png
         | 
| 435 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_search_alt.png
         | 
| 436 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_shield.png
         | 
| 437 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_shield_alt.png
         | 
| 438 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_star-half.png
         | 
| 439 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_star-half_alt.png
         | 
| 440 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_star.png
         | 
| 441 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_star_alt.png
         | 
| 442 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_stop.png
         | 
| 443 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_stop_alt.png
         | 
| 444 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_stop_alt2.png
         | 
| 445 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_table.png
         | 
| 446 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_tablet.png
         | 
| 447 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_tag.png
         | 
| 448 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_tag_alt.png
         | 
| 449 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_tags.png
         | 
| 450 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_tags_alt.png
         | 
| 451 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_target.png
         | 
| 452 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_tool.png
         | 
| 453 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_toolbox.png
         | 
| 454 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_toolbox_alt.png
         | 
| 455 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_tools.png
         | 
| 456 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_trash.png
         | 
| 457 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_trash_alt.png
         | 
| 458 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_ul.png
         | 
| 459 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_upload.png
         | 
| 460 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_vol-mute.png
         | 
| 461 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_vol-mute_alt.png
         | 
| 462 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_volume-high.png
         | 
| 463 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_volume-high_alt.png
         | 
| 464 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_volume-low.png
         | 
| 465 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_volume-low_alt.png
         | 
| 466 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_wallet.png
         | 
| 467 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_wallet_alt.png
         | 
| 468 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_zoom-in.png
         | 
| 469 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_zoom-in_alt.png
         | 
| 470 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_zoom-out.png
         | 
| 471 | 
            +
            - assets/plugins/elegant_font/images/PNG/icon_zoom-out_alt.png
         | 
| 472 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_blogger.png
         | 
| 473 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_blogger_circle.png
         | 
| 474 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_blogger_square.png
         | 
| 475 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_delicious.png
         | 
| 476 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_delicious_circle.png
         | 
| 477 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_delicious_square.png
         | 
| 478 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_deviantart.png
         | 
| 479 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_deviantart_circle.png
         | 
| 480 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_deviantart_square.png
         | 
| 481 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_dribbble.png
         | 
| 482 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_dribbble_circle.png
         | 
| 483 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_dribbble_square.png
         | 
| 484 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_facebook.png
         | 
| 485 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_facebook_circle.png
         | 
| 486 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_facebook_square.png
         | 
| 487 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_flickr.png
         | 
| 488 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_flickr_circle.png
         | 
| 489 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_flickr_square.png
         | 
| 490 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_googledrive.png
         | 
| 491 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_googledrive_alt2.png
         | 
| 492 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_googledrive_square.png
         | 
| 493 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_googleplus.png
         | 
| 494 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_googleplus_circle.png
         | 
| 495 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_googleplus_square.png
         | 
| 496 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_instagram.png
         | 
| 497 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_instagram_circle.png
         | 
| 498 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_instagram_square.png
         | 
| 499 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_linkedin.png
         | 
| 500 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_linkedin_circle.png
         | 
| 501 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_linkedin_square.png
         | 
| 502 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_myspace.png
         | 
| 503 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_myspace_circle.png
         | 
| 504 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_myspace_square.png
         | 
| 505 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_picassa.png
         | 
| 506 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_picassa_circle.png
         | 
| 507 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_picassa_square.png
         | 
| 508 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_pinterest.png
         | 
| 509 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_pinterest_circle.png
         | 
| 510 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_pinterest_square.png
         | 
| 511 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_rss.png
         | 
| 512 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_rss_circle.png
         | 
| 513 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_rss_square.png
         | 
| 514 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_share.png
         | 
| 515 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_share_circle.png
         | 
| 516 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_share_square.png
         | 
| 517 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_skype.png
         | 
| 518 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_skype_circle.png
         | 
| 519 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_skype_square.png
         | 
| 520 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_spotify.png
         | 
| 521 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_spotify_circle.png
         | 
| 522 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_spotify_square.png
         | 
| 523 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_stumbleupon_circle.png
         | 
| 524 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_stumbleupon_square.png
         | 
| 525 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_tumbleupon.png
         | 
| 526 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_tumblr.png
         | 
| 527 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_tumblr_circle.png
         | 
| 528 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_tumblr_square.png
         | 
| 529 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_twitter.png
         | 
| 530 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_twitter_circle.png
         | 
| 531 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_twitter_square.png
         | 
| 532 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_vimeo.png
         | 
| 533 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_vimeo_circle.png
         | 
| 534 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_vimeo_square.png
         | 
| 535 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_wordpress.png
         | 
| 536 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_wordpress_circle.png
         | 
| 537 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_wordpress_square.png
         | 
| 538 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_youtube.png
         | 
| 539 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_youtube_circle.png
         | 
| 540 | 
            +
            - assets/plugins/elegant_font/images/PNG/social_youtube_square.png
         | 
| 541 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow-up-down.svg
         | 
| 542 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_back.svg
         | 
| 543 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2down.svg
         | 
| 544 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2down_alt2.svg
         | 
| 545 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2dwnn_alt.svg
         | 
| 546 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2left.svg
         | 
| 547 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2left_alt.svg
         | 
| 548 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2left_alt2.svg
         | 
| 549 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2right.svg
         | 
| 550 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2right_alt.svg
         | 
| 551 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2right_alt2.svg
         | 
| 552 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2up.svg
         | 
| 553 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2up_alt.svg
         | 
| 554 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-2up_alt2.svg
         | 
| 555 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-down.svg
         | 
| 556 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-down_alt.svg
         | 
| 557 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-down_alt2.svg
         | 
| 558 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-left.svg
         | 
| 559 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-left_alt.svg
         | 
| 560 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-left_alt2.svg
         | 
| 561 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-right.svg
         | 
| 562 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-right_alt.svg
         | 
| 563 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-right_alt2.svg
         | 
| 564 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-up.svg
         | 
| 565 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot-up_alt2.svg
         | 
| 566 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_carrot_up_alt.svg
         | 
| 567 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_condense.svg
         | 
| 568 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_condense_alt.svg
         | 
| 569 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_down.svg
         | 
| 570 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_down_alt.svg
         | 
| 571 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_expand.svg
         | 
| 572 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_expand_alt.svg
         | 
| 573 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_expand_alt2.svg
         | 
| 574 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_expand_alt3.svg
         | 
| 575 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_left-down.svg
         | 
| 576 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_left-down_alt.svg
         | 
| 577 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_left-right.svg
         | 
| 578 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_left-right_alt.svg
         | 
| 579 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_left-up.svg
         | 
| 580 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_left-up_alt.svg
         | 
| 581 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_left.svg
         | 
| 582 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_left_alt.svg
         | 
| 583 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_move.svg
         | 
| 584 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_right-down.svg
         | 
| 585 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_right-down_alt.svg
         | 
| 586 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_right-up.svg
         | 
| 587 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_right-up_alt.svg
         | 
| 588 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_right.svg
         | 
| 589 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_right_alt.svg
         | 
| 590 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-down.svg
         | 
| 591 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-down_alt.svg
         | 
| 592 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-down_alt2.svg
         | 
| 593 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-left.svg
         | 
| 594 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-left_alt.svg
         | 
| 595 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-left_alt2.svg
         | 
| 596 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-right.svg
         | 
| 597 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-right_alt.svg
         | 
| 598 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-right_alt2.svg
         | 
| 599 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-up.svg
         | 
| 600 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-up_alt.svg
         | 
| 601 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_triangle-up_alt2.svg
         | 
| 602 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_up-down_alt.svg
         | 
| 603 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_up.svg
         | 
| 604 | 
            +
            - assets/plugins/elegant_font/images/SVG/arrow_up_alt.svg
         | 
| 605 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_adjust-horiz.svg
         | 
| 606 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_adjust-vert.svg
         | 
| 607 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_archive.svg
         | 
| 608 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_archive_alt.svg
         | 
| 609 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_bag.svg
         | 
| 610 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_bag_alt.svg
         | 
| 611 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_balance.svg
         | 
| 612 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_blocked.svg
         | 
| 613 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_book.svg
         | 
| 614 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_book_alt.svg
         | 
| 615 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_box-checked.svg
         | 
| 616 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_box-empty.svg
         | 
| 617 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_box-selected.svg
         | 
| 618 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_briefcase.svg
         | 
| 619 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_briefcase_alt.svg
         | 
| 620 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_building.svg
         | 
| 621 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_building_alt.svg
         | 
| 622 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_calculator_alt.svg
         | 
| 623 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_calendar.svg
         | 
| 624 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_calulator.svg
         | 
| 625 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_camera.svg
         | 
| 626 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_camera_alt.svg
         | 
| 627 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cart.svg
         | 
| 628 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cart_alt.svg
         | 
| 629 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_chat.svg
         | 
| 630 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_chat_alt.svg
         | 
| 631 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_check.svg
         | 
| 632 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_check_alt.svg
         | 
| 633 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_check_alt2.svg
         | 
| 634 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_circle-empty.svg
         | 
| 635 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_circle-slelected.svg
         | 
| 636 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_clipboard.svg
         | 
| 637 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_clock.svg
         | 
| 638 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_clock_alt.svg
         | 
| 639 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_close.svg
         | 
| 640 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_close_alt.svg
         | 
| 641 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_close_alt2.svg
         | 
| 642 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cloud-download.svg
         | 
| 643 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cloud-download_alt.svg
         | 
| 644 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cloud-upload.svg
         | 
| 645 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cloud-upload_alt.svg
         | 
| 646 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cloud.svg
         | 
| 647 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cloud_alt.svg
         | 
| 648 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cog.svg
         | 
| 649 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cogs.svg
         | 
| 650 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_comment.svg
         | 
| 651 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_comment_alt.svg
         | 
| 652 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_compass.svg
         | 
| 653 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_compass_alt.svg
         | 
| 654 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cone.svg
         | 
| 655 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cone_alt.svg
         | 
| 656 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_contacts.svg
         | 
| 657 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_contacts_alt.svg
         | 
| 658 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_creditcard.svg
         | 
| 659 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_currency.svg
         | 
| 660 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_currency_alt.svg
         | 
| 661 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cursor.svg
         | 
| 662 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_cursor_alt.svg
         | 
| 663 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_datareport.svg
         | 
| 664 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_datareport_alt.svg
         | 
| 665 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_desktop.svg
         | 
| 666 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_dislike.svg
         | 
| 667 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_dislike_alt.svg
         | 
| 668 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_document.svg
         | 
| 669 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_document_alt.svg
         | 
| 670 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_documents.svg
         | 
| 671 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_documents_alt.svg
         | 
| 672 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_download.svg
         | 
| 673 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_drawer.svg
         | 
| 674 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_drawer_alt.svg
         | 
| 675 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_drive.svg
         | 
| 676 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_drive_alt.svg
         | 
| 677 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_easel.svg
         | 
| 678 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_easel_alt.svg
         | 
| 679 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_error-circle.svg
         | 
| 680 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_error-circle_alt.svg
         | 
| 681 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_error-oct.svg
         | 
| 682 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_error-oct_alt.svg
         | 
| 683 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_error-triangle.svg
         | 
| 684 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_error-triangle_alt.svg
         | 
| 685 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_film.svg
         | 
| 686 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_floppy.svg
         | 
| 687 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_floppy_alt.svg
         | 
| 688 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_flowchart.svg
         | 
| 689 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_flowchart_alt.svg
         | 
| 690 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_folder-add.svg
         | 
| 691 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_folder-add_alt.svg
         | 
| 692 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_folder-alt.svg
         | 
| 693 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_folder-open.svg
         | 
| 694 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_folder-open_alt.svg
         | 
| 695 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_folder.svg
         | 
| 696 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_folder_download.svg
         | 
| 697 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_folder_upload.svg
         | 
| 698 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_genius.svg
         | 
| 699 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_gift.svg
         | 
| 700 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_gift_alt.svg
         | 
| 701 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_globe-2.svg
         | 
| 702 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_globe.svg
         | 
| 703 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_globe_alt.svg
         | 
| 704 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_grid-2x2.svg
         | 
| 705 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_grid-3x3.svg
         | 
| 706 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_group.svg
         | 
| 707 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_headphones.svg
         | 
| 708 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_heart.svg
         | 
| 709 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_heart_alt.svg
         | 
| 710 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_hourglass.svg
         | 
| 711 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_house.svg
         | 
| 712 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_house_alt.svg
         | 
| 713 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_id-2.svg
         | 
| 714 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_id-2_alt.svg
         | 
| 715 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_id.svg
         | 
| 716 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_id_alt.svg
         | 
| 717 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_image.svg
         | 
| 718 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_images.svg
         | 
| 719 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_info.svg
         | 
| 720 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_info_alt.svg
         | 
| 721 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_key.svg
         | 
| 722 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_key_alt.svg
         | 
| 723 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_laptop.svg
         | 
| 724 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_lifesaver.svg
         | 
| 725 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_lightbulb.svg
         | 
| 726 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_lightbulb_alt.svg
         | 
| 727 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_like.svg
         | 
| 728 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_like_alt.svg
         | 
| 729 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_link.svg
         | 
| 730 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_link_alt.svg
         | 
| 731 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_loading.svg
         | 
| 732 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_lock-open.svg
         | 
| 733 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_lock-open_alt.svg
         | 
| 734 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_lock.svg
         | 
| 735 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_lock_alt.svg
         | 
| 736 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_mail.svg
         | 
| 737 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_mail_alt.svg
         | 
| 738 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_map.svg
         | 
| 739 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_map_alt.svg
         | 
| 740 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_menu-circle_alt.svg
         | 
| 741 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_menu-circle_alt2.svg
         | 
| 742 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_menu-square_alt.svg
         | 
| 743 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_menu-square_alt2.svg
         | 
| 744 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_menu.svg
         | 
| 745 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_mic.svg
         | 
| 746 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_mic_alt.svg
         | 
| 747 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_minus-06.svg
         | 
| 748 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_minus-box.svg
         | 
| 749 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_minus_alt.svg
         | 
| 750 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_minus_alt2.svg
         | 
| 751 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_mobile.svg
         | 
| 752 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_mug.svg
         | 
| 753 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_mug_alt.svg
         | 
| 754 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_music.svg
         | 
| 755 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_ol.svg
         | 
| 756 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_paperclip.svg
         | 
| 757 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pause.svg
         | 
| 758 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pause_alt.svg
         | 
| 759 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pause_alt2.svg
         | 
| 760 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pencil-edit.svg
         | 
| 761 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pencil-edit_alt.svg
         | 
| 762 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pencil.svg
         | 
| 763 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pencil_alt.svg
         | 
| 764 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pens.svg
         | 
| 765 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pens_alt.svg
         | 
| 766 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_percent.svg
         | 
| 767 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_percent_alt.svg
         | 
| 768 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_phone.svg
         | 
| 769 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_piechart.svg
         | 
| 770 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pin.svg
         | 
| 771 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pin_alt.svg
         | 
| 772 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_plus-box.svg
         | 
| 773 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_plus.svg
         | 
| 774 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_plus_alt.svg
         | 
| 775 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_plus_alt2.svg
         | 
| 776 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_printer-alt.svg
         | 
| 777 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_printer.svg
         | 
| 778 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_profile.svg
         | 
| 779 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pushpin.svg
         | 
| 780 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_pushpin_alt.svg
         | 
| 781 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_puzzle.svg
         | 
| 782 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_puzzle_alt.svg
         | 
| 783 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_question.svg
         | 
| 784 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_question_alt.svg
         | 
| 785 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_question_alt2.svg
         | 
| 786 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_quotations.svg
         | 
| 787 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_quotations_alt.svg
         | 
| 788 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_quotations_alt2.svg
         | 
| 789 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_refresh.svg
         | 
| 790 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_ribbon.svg
         | 
| 791 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_ribbon_alt.svg
         | 
| 792 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_rook.svg
         | 
| 793 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_search.svg
         | 
| 794 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_search2.svg
         | 
| 795 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_search_alt.svg
         | 
| 796 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_shield.svg
         | 
| 797 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_shield_alt.svg
         | 
| 798 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_star-half.svg
         | 
| 799 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_star-half_alt.svg
         | 
| 800 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_star.svg
         | 
| 801 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_star_alt.svg
         | 
| 802 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_stop.svg
         | 
| 803 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_stop_alt.svg
         | 
| 804 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_stop_alt2.svg
         | 
| 805 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_table.svg
         | 
| 806 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_tablet.svg
         | 
| 807 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_tag.svg
         | 
| 808 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_tag_alt.svg
         | 
| 809 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_tags.svg
         | 
| 810 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_tags_alt.svg
         | 
| 811 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_target.svg
         | 
| 812 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_tool.svg
         | 
| 813 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_toolbox.svg
         | 
| 814 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_toolbox_alt.svg
         | 
| 815 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_tools.svg
         | 
| 816 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_trash.svg
         | 
| 817 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_trash_alt.svg
         | 
| 818 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_ul.svg
         | 
| 819 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_upload.svg
         | 
| 820 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_vol-mute.svg
         | 
| 821 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_vol-mute_alt.svg
         | 
| 822 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_volume-high.svg
         | 
| 823 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_volume-high_alt.svg
         | 
| 824 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_volume-low.svg
         | 
| 825 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_volume-low_alt.svg
         | 
| 826 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_wallet.svg
         | 
| 827 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_wallet_alt.svg
         | 
| 828 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_zoom-in.svg
         | 
| 829 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_zoom-in_alt.svg
         | 
| 830 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_zoom-out.svg
         | 
| 831 | 
            +
            - assets/plugins/elegant_font/images/SVG/icon_zoom-out_alt.svg
         | 
| 832 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_blogger.svg
         | 
| 833 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_blogger_circle.svg
         | 
| 834 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_blogger_square.svg
         | 
| 835 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_delicious.svg
         | 
| 836 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_delicious_circle.svg
         | 
| 837 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_delicious_square.svg
         | 
| 838 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_deviantart.svg
         | 
| 839 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_deviantart_circle.svg
         | 
| 840 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_deviantart_square.svg
         | 
| 841 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_dribbble.svg
         | 
| 842 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_dribbble_circle.svg
         | 
| 843 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_dribbble_square.svg
         | 
| 844 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_facebook.svg
         | 
| 845 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_facebook_circle.svg
         | 
| 846 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_facebook_square.svg
         | 
| 847 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_flickr.svg
         | 
| 848 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_flickr_circle.svg
         | 
| 849 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_flickr_square.svg
         | 
| 850 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_googledrive.svg
         | 
| 851 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_googledrive_alt2.svg
         | 
| 852 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_googledrive_square.svg
         | 
| 853 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_googleplus.svg
         | 
| 854 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_googleplus_circle.svg
         | 
| 855 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_googleplus_square.svg
         | 
| 856 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_instagram.svg
         | 
| 857 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_instagram_circle.svg
         | 
| 858 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_instagram_square.svg
         | 
| 859 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_linkedin.svg
         | 
| 860 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_linkedin_circle.svg
         | 
| 861 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_linkedin_square.svg
         | 
| 862 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_myspace.svg
         | 
| 863 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_myspace_circle.svg
         | 
| 864 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_myspace_square.svg
         | 
| 865 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_picassa.svg
         | 
| 866 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_picassa_circle.svg
         | 
| 867 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_picassa_square.svg
         | 
| 868 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_pinterest.svg
         | 
| 869 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_pinterest_circle.svg
         | 
| 870 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_pinterest_square.svg
         | 
| 871 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_rss.svg
         | 
| 872 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_rss_circle.svg
         | 
| 873 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_rss_square.svg
         | 
| 874 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_share.svg
         | 
| 875 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_share_circle.svg
         | 
| 876 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_share_square.svg
         | 
| 877 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_skype.svg
         | 
| 878 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_skype_circle.svg
         | 
| 879 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_skype_square.svg
         | 
| 880 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_spotify.svg
         | 
| 881 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_spotify_circle.svg
         | 
| 882 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_spotify_square.svg
         | 
| 883 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_stumbleupon_circle.svg
         | 
| 884 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_stumbleupon_square.svg
         | 
| 885 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_tumbleupon.svg
         | 
| 886 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_tumblr.svg
         | 
| 887 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_tumblr_circle.svg
         | 
| 888 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_tumblr_square.svg
         | 
| 889 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_twitter.svg
         | 
| 890 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_twitter_circle.svg
         | 
| 891 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_twitter_square.svg
         | 
| 892 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_vimeo.svg
         | 
| 893 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_vimeo_circle.svg
         | 
| 894 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_vimeo_square.svg
         | 
| 895 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_wordpress.svg
         | 
| 896 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_wordpress_circle.svg
         | 
| 897 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_wordpress_square.svg
         | 
| 898 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_youtube.svg
         | 
| 899 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_youtube_circle.svg
         | 
| 900 | 
            +
            - assets/plugins/elegant_font/images/SVG/social_youtube_square.svg
         | 
| 901 | 
            +
            - assets/plugins/prism/min/prism-min.js
         | 
| 902 | 
            +
            - assets/plugins/prism/prism.css
         | 
| 903 | 
            +
            - assets/plugins/prism/prism.js
         | 
| 904 | 
            +
            homepage: https://github.com/ConnorChristie/prettydocs-jekyll
         | 
| 905 | 
            +
            licenses:
         | 
| 906 | 
            +
            - CC-BY-3.0
         | 
| 907 | 
            +
            metadata: {}
         | 
| 908 | 
            +
            post_install_message: 
         | 
| 909 | 
            +
            rdoc_options: []
         | 
| 910 | 
            +
            require_paths:
         | 
| 911 | 
            +
            - lib
         | 
| 912 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 913 | 
            +
              requirements:
         | 
| 914 | 
            +
              - - ">="
         | 
| 915 | 
            +
                - !ruby/object:Gem::Version
         | 
| 916 | 
            +
                  version: '0'
         | 
| 917 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 918 | 
            +
              requirements:
         | 
| 919 | 
            +
              - - ">="
         | 
| 920 | 
            +
                - !ruby/object:Gem::Version
         | 
| 921 | 
            +
                  version: '0'
         | 
| 922 | 
            +
            requirements: []
         | 
| 923 | 
            +
            rubyforge_project: 
         | 
| 924 | 
            +
            rubygems_version: 2.6.14.1
         | 
| 925 | 
            +
            signing_key: 
         | 
| 926 | 
            +
            specification_version: 4
         | 
| 927 | 
            +
            summary: PrettyDocs-Jekyll is a free project documentation theme designed for developers
         | 
| 928 | 
            +
              & startups.
         | 
| 929 | 
            +
            test_files: []
         |