├── .eslintignore ├── .eslintrc.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── INSTALL.md ├── LICENSE ├── Makefile ├── README.md ├── bundle.yml ├── cli ├── assets.js ├── config.js ├── filters.js ├── seed.js ├── server.js ├── test.js └── www.js ├── client ├── .eslintrc ├── fontello │ ├── _lib │ │ └── utils.js │ ├── _variables.styl │ ├── app │ │ ├── app.js │ │ ├── app.pug │ │ ├── app.styl │ │ ├── i18n │ │ │ └── en.yml │ │ ├── import │ │ │ ├── _svg_image_flatten.js │ │ │ ├── i18n │ │ │ │ └── en.yml │ │ │ └── import.js │ │ └── session │ │ │ └── session.js │ ├── blocks │ │ ├── codes_editor │ │ │ ├── codes_editor.js │ │ │ ├── codes_editor.pug │ │ │ ├── codes_editor.styl │ │ │ └── i18n │ │ │ │ └── en.yml │ │ ├── glyph_dialog │ │ │ ├── glyph_dialog.js │ │ │ ├── glyph_dialog.pug │ │ │ ├── glyph_dialog.styl │ │ │ └── i18n │ │ │ │ └── en.yml │ │ ├── names_editor │ │ │ ├── i18n │ │ │ │ └── en.yml │ │ │ ├── names_editor.js │ │ │ ├── names_editor.pug │ │ │ └── names_editor.styl │ │ ├── selector │ │ │ ├── i18n │ │ │ │ └── en.yml │ │ │ ├── selector.js │ │ │ ├── selector.pug │ │ │ └── selector.styl │ │ ├── settings_dialog │ │ │ ├── i18n │ │ │ │ └── en.yml │ │ │ ├── settings_dialog.js │ │ │ ├── settings_dialog.pug │ │ │ └── settings_dialog.styl │ │ ├── tabs │ │ │ ├── i18n │ │ │ │ └── en.yml │ │ │ ├── tabs.js │ │ │ ├── tabs.pug │ │ │ └── tabs.styl │ │ └── toolbar │ │ │ ├── i18n │ │ │ └── en.yml │ │ │ ├── toolbar.js │ │ │ ├── toolbar.pug │ │ │ └── toolbar.styl │ ├── config.yml │ ├── layout │ │ ├── i18n │ │ │ └── en.yml │ │ ├── layout.js │ │ ├── layout.pug │ │ └── layout.styl │ ├── models │ │ ├── _lib │ │ │ ├── codes_tracker.js │ │ │ ├── fontface.js │ │ │ └── names_tracker.js │ │ ├── i18n │ │ │ └── en.yml │ │ └── models.js │ └── system │ │ ├── error.js │ │ ├── event_actions │ │ └── event_actions.js │ │ ├── io_errors │ │ ├── i18n │ │ │ └── en.yml │ │ └── io_errors.js │ │ ├── io_progress │ │ ├── i18n │ │ │ └── en.yml │ │ ├── io_progress.js │ │ ├── io_progress.pug │ │ └── io_progress.styl │ │ ├── navigate │ │ └── navigate.js │ │ ├── notify │ │ ├── notify.js │ │ └── notify.styl │ │ └── runtime_vars_init │ │ └── runtime_vars_init.js └── lib │ ├── bootstrap_custom │ ├── index.js │ ├── index.less │ └── var_override.less │ ├── bootstrap_material_design │ ├── .ruby-gemset │ ├── .ruby-version │ ├── js │ │ ├── material.js │ │ └── ripples.js │ └── less │ │ ├── _alerts.less │ │ ├── _buttons.less │ │ ├── _cards.less │ │ ├── _checkboxes.less │ │ ├── _colors.less │ │ ├── _config.yml │ │ ├── _core.less │ │ ├── _dialogs.less │ │ ├── _dividers.less │ │ ├── _form.less │ │ ├── _import-bs-less.less │ │ ├── _import-bs-sass.less │ │ ├── _inputs-size.less │ │ ├── _inputs.less │ │ ├── _lists.less │ │ ├── _mixins.less │ │ ├── _navbar.less │ │ ├── _panels.less │ │ ├── _plugins.less │ │ ├── _popups.less │ │ ├── _progress.less │ │ ├── _radios.less │ │ ├── _shadows.less │ │ ├── _sliders.less │ │ ├── _tabs.less │ │ ├── _themes.less │ │ ├── _togglebutton.less │ │ ├── _typography.less │ │ ├── _variables.less │ │ ├── _welljumbo.less │ │ ├── bootstrap-material-design.less │ │ ├── plugins │ │ ├── _plugin-dropdownjs.less │ │ ├── _plugin-nouislider.less │ │ ├── _plugin-selectize.less │ │ └── _plugin-snackbarjs.less │ │ └── ripples.less │ ├── config.yml │ ├── embedded_fonts │ ├── config.yml │ ├── font │ │ ├── fontello.woff │ │ └── fontello.woff2 │ └── fontface_fontello.css │ ├── icons │ ├── config.yml │ ├── index.css │ └── src │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── config.json │ │ ├── css │ │ ├── animation.css │ │ ├── icons-codes.css │ │ ├── icons-embedded.css │ │ ├── icons-ie7-codes.css │ │ ├── icons-ie7.css │ │ └── icons.css │ │ ├── demo.html │ │ └── font │ │ ├── icons.eot │ │ ├── icons.svg │ │ ├── icons.ttf │ │ ├── icons.woff │ │ └── icons.woff2 │ ├── init.js │ ├── jquery.numeric.js │ ├── jquery.xselectable.js │ ├── loader │ ├── .eslintrc │ ├── config.yml │ └── loader.js │ ├── polyfills │ └── config.yml │ └── typeahead │ ├── typeahead.js │ └── typeahead.less ├── config ├── .gitignore ├── application.yml ├── database.yml ├── fontello.com.yml.config ├── logger.yml ├── router.yml └── test.yml ├── embed.svgo.yml ├── etc ├── certs │ ├── fontello-dev.cert │ └── fontello-dev.key └── init │ └── fontello.conf ├── fontello-image.svg ├── internal └── fontello │ └── font_build │ ├── _lib │ ├── config.js │ └── worker.js │ └── font_build.js ├── lib ├── app │ └── bag.js ├── autoload.js ├── autoload │ └── hooks │ │ ├── init │ │ ├── i18n │ │ │ ├── get_locale_helper.js │ │ │ └── t_helpers.js │ │ ├── service_www.js │ │ └── storages.js │ │ ├── responder │ │ ├── README.md │ │ ├── bin │ │ │ ├── bin_prepare.js │ │ │ └── bin_server_method_exec.js │ │ ├── cookies.js │ │ ├── error_process.js │ │ ├── etag_304_revalidate.js │ │ ├── http │ │ │ ├── http_cleanup_uploads.js │ │ │ ├── http_prepare.js │ │ │ ├── http_render.js │ │ │ └── http_security_policy.js │ │ ├── response_log.js │ │ ├── response_send.js │ │ ├── rpc │ │ │ ├── rpc_cleanup_uploads.js │ │ │ ├── rpc_prepare.js │ │ │ └── rpc_serialize.js │ │ └── server_chain_exec.js │ │ ├── server │ │ └── README.md │ │ ├── server_bin │ │ ├── README.md │ │ ├── assets.js │ │ └── static.js │ │ ├── server_chain │ │ ├── README.md │ │ ├── assets_info_inject.js │ │ ├── for_dear_friends.js │ │ └── server_method_exec.js │ │ ├── shutdown.js │ │ └── sys │ │ └── error │ │ └── host_invalid.js ├── bundler │ ├── assets │ │ ├── base.js │ │ ├── concat.js │ │ ├── file.js │ │ └── lang.js │ ├── index.js │ ├── plugins │ │ ├── auto.js │ │ ├── autoprefixer.js │ │ ├── clean-css.js │ │ ├── jade.js │ │ ├── less.js │ │ ├── load_bin.js │ │ ├── load_text.js │ │ ├── macros.js │ │ ├── pug.js │ │ ├── sass.js │ │ ├── stylus.js │ │ ├── uglifyjs.js │ │ └── wrapper.js │ └── utils │ │ └── dependency_error.js ├── embedded_fonts │ ├── client_config.js │ └── server_config.js └── system │ ├── client │ ├── .eslintrc │ ├── kernel.js │ └── kernel │ │ ├── io.js │ │ ├── logger.js │ │ └── render.js │ ├── dummy.js │ ├── env.js │ ├── init │ ├── bundle.js │ ├── bundle │ │ ├── bin.js │ │ ├── cleanup.js │ │ ├── client.js │ │ ├── compile.js │ │ ├── create_components.js │ │ ├── css.js │ │ ├── i18n.js │ │ ├── js.js │ │ ├── manifest.js │ │ ├── map.js │ │ ├── router.js │ │ ├── server.js │ │ ├── setup.js │ │ ├── utils │ │ │ ├── fs_cached.js │ │ │ ├── load_app_config.js │ │ │ ├── resolve_module_path.js │ │ │ └── search_assets.js │ │ ├── vendor.js │ │ └── views.js │ ├── index.js │ ├── models.js │ ├── server.js │ └── utils │ │ ├── apify.js │ │ └── stopwatch.js │ ├── io.js │ ├── render │ └── common.js │ ├── router.js │ ├── runner.js │ ├── runner │ ├── application.js │ ├── exec_cli.js │ └── initialize.js │ └── worker_pool.js ├── log └── .gitkeep ├── package.json ├── root ├── favicon.ico ├── favicon.png ├── favicon.xcf ├── logo_dart_192px.svg └── snippet.png ├── server.js ├── server └── fontello │ ├── api.download.js │ ├── api.post.js │ ├── api.update.js │ ├── app.js │ ├── config.yml │ ├── font │ ├── _lib │ │ └── config_schema.js │ ├── download.js │ └── generate │ │ ├── generate.js │ │ └── i18n │ │ └── en.yml │ └── robots.js ├── src ├── awesome5.font │ ├── DEVELOPMENT.md │ ├── Makefile │ ├── README.md │ ├── config.yml │ ├── dump.svgo.yml │ ├── font │ │ ├── demo.html │ │ ├── fontawesome5.eot │ │ ├── fontawesome5.svg │ │ ├── fontawesome5.ttf │ │ └── fontawesome5.woff │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── demo │ │ ├── README.md │ │ ├── bootstrap.styl │ │ ├── demo.codes.jade │ │ └── demo.jade │ │ ├── original │ │ ├── fa-brands-400.svg │ │ ├── fa-regular-400.svg │ │ └── fa-solid-900.svg │ │ └── svg │ │ ├── accessible_icon.svg │ │ ├── accusoft.svg │ │ ├── acquisitions_incorporated.svg │ │ ├── ad.svg │ │ ├── address_book.svg │ │ ├── address_card.svg │ │ ├── adjust.svg │ │ ├── adn.svg │ │ ├── adobe.svg │ │ ├── adversal.svg │ │ ├── affiliatetheme.svg │ │ ├── air_freshener.svg │ │ ├── airbnb.svg │ │ ├── algolia.svg │ │ ├── align_center.svg │ │ ├── align_justify.svg │ │ ├── align_left.svg │ │ ├── align_right.svg │ │ ├── alipay.svg │ │ ├── allergies.svg │ │ ├── amazon.svg │ │ ├── amazon_pay.svg │ │ ├── ambulance.svg │ │ ├── american_sign_language_interpreting.svg │ │ ├── amilia.svg │ │ ├── anchor.svg │ │ ├── android.svg │ │ ├── angellist.svg │ │ ├── angle_double_down.svg │ │ ├── angle_double_left.svg │ │ ├── angle_double_right.svg │ │ ├── angle_double_up.svg │ │ ├── angle_down.svg │ │ ├── angle_left.svg │ │ ├── angle_right.svg │ │ ├── angle_up.svg │ │ ├── angry.svg │ │ ├── angrycreative.svg │ │ ├── angular.svg │ │ ├── ankh.svg │ │ ├── app_store.svg │ │ ├── app_store_ios.svg │ │ ├── apper.svg │ │ ├── apple.svg │ │ ├── apple_alt.svg │ │ ├── apple_pay.svg │ │ ├── archive.svg │ │ ├── archway.svg │ │ ├── arrow_alt_circle_down.svg │ │ ├── arrow_alt_circle_left.svg │ │ ├── arrow_alt_circle_right.svg │ │ ├── arrow_alt_circle_up.svg │ │ ├── arrow_circle_down.svg │ │ ├── arrow_circle_left.svg │ │ ├── arrow_circle_right.svg │ │ ├── arrow_circle_up.svg │ │ ├── arrow_down.svg │ │ ├── arrow_left.svg │ │ ├── arrow_right.svg │ │ ├── arrow_up.svg │ │ ├── arrows_alt.svg │ │ ├── arrows_alt_h.svg │ │ ├── arrows_alt_v.svg │ │ ├── artstation.svg │ │ ├── assistive_listening_systems.svg │ │ ├── asterisk.svg │ │ ├── asymmetrik.svg │ │ ├── at.svg │ │ ├── atlas.svg │ │ ├── atlassian.svg │ │ ├── atom.svg │ │ ├── audible.svg │ │ ├── audio_description.svg │ │ ├── autoprefixer.svg │ │ ├── avianex.svg │ │ ├── aviato.svg │ │ ├── award.svg │ │ ├── aws.svg │ │ ├── baby.svg │ │ ├── baby_carriage.svg │ │ ├── backspace.svg │ │ ├── backward.svg │ │ ├── bacon.svg │ │ ├── bahai.svg │ │ ├── balance_scale.svg │ │ ├── balance_scale_left.svg │ │ ├── balance_scale_right.svg │ │ ├── ban.svg │ │ ├── band_aid.svg │ │ ├── bandcamp.svg │ │ ├── barcode.svg │ │ ├── bars.svg │ │ ├── baseball_ball.svg │ │ ├── basketball_ball.svg │ │ ├── bath.svg │ │ ├── battery_empty.svg │ │ ├── battery_full.svg │ │ ├── battery_half.svg │ │ ├── battery_quarter.svg │ │ ├── battery_three_quarters.svg │ │ ├── battle_net.svg │ │ ├── bed.svg │ │ ├── beer.svg │ │ ├── behance.svg │ │ ├── behance_square.svg │ │ ├── bell.svg │ │ ├── bell_slash.svg │ │ ├── bezier_curve.svg │ │ ├── bible.svg │ │ ├── bicycle.svg │ │ ├── biking.svg │ │ ├── bimobject.svg │ │ ├── binoculars.svg │ │ ├── biohazard.svg │ │ ├── birthday_cake.svg │ │ ├── bitbucket.svg │ │ ├── bitcoin.svg │ │ ├── bity.svg │ │ ├── black_tie.svg │ │ ├── blackberry.svg │ │ ├── blender.svg │ │ ├── blender_phone.svg │ │ ├── blind.svg │ │ ├── blog.svg │ │ ├── blogger.svg │ │ ├── blogger_b.svg │ │ ├── bluetooth.svg │ │ ├── bluetooth_b.svg │ │ ├── bold.svg │ │ ├── bolt.svg │ │ ├── bomb.svg │ │ ├── bone.svg │ │ ├── bong.svg │ │ ├── book.svg │ │ ├── book_dead.svg │ │ ├── book_medical.svg │ │ ├── book_open.svg │ │ ├── book_reader.svg │ │ ├── bookmark.svg │ │ ├── bootstrap.svg │ │ ├── border_all.svg │ │ ├── border_none.svg │ │ ├── border_style.svg │ │ ├── bowling_ball.svg │ │ ├── box.svg │ │ ├── box_open.svg │ │ ├── box_tissue.svg │ │ ├── boxes.svg │ │ ├── braille.svg │ │ ├── brain.svg │ │ ├── bread_slice.svg │ │ ├── briefcase.svg │ │ ├── briefcase_medical.svg │ │ ├── broadcast_tower.svg │ │ ├── broom.svg │ │ ├── brush.svg │ │ ├── btc.svg │ │ ├── buffer.svg │ │ ├── bug.svg │ │ ├── building.svg │ │ ├── bullhorn.svg │ │ ├── bullseye.svg │ │ ├── burn.svg │ │ ├── buromobelexperte.svg │ │ ├── bus.svg │ │ ├── bus_alt.svg │ │ ├── business_time.svg │ │ ├── buy_n_large.svg │ │ ├── buysellads.svg │ │ ├── calculator.svg │ │ ├── calendar.svg │ │ ├── calendar_alt.svg │ │ ├── calendar_check.svg │ │ ├── calendar_day.svg │ │ ├── calendar_minus.svg │ │ ├── calendar_plus.svg │ │ ├── calendar_times.svg │ │ ├── calendar_week.svg │ │ ├── camera.svg │ │ ├── camera_retro.svg │ │ ├── campground.svg │ │ ├── canadian_maple_leaf.svg │ │ ├── candy_cane.svg │ │ ├── cannabis.svg │ │ ├── capsules.svg │ │ ├── car.svg │ │ ├── car_alt.svg │ │ ├── car_battery.svg │ │ ├── car_crash.svg │ │ ├── car_side.svg │ │ ├── caravan.svg │ │ ├── caret_down.svg │ │ ├── caret_left.svg │ │ ├── caret_right.svg │ │ ├── caret_square_down.svg │ │ ├── caret_square_left.svg │ │ ├── caret_square_right.svg │ │ ├── caret_square_up.svg │ │ ├── caret_up.svg │ │ ├── carrot.svg │ │ ├── cart_arrow_down.svg │ │ ├── cart_plus.svg │ │ ├── cash_register.svg │ │ ├── cat.svg │ │ ├── cc_amazon_pay.svg │ │ ├── cc_amex.svg │ │ ├── cc_apple_pay.svg │ │ ├── cc_diners_club.svg │ │ ├── cc_discover.svg │ │ ├── cc_jcb.svg │ │ ├── cc_mastercard.svg │ │ ├── cc_paypal.svg │ │ ├── cc_stripe.svg │ │ ├── cc_visa.svg │ │ ├── centercode.svg │ │ ├── centos.svg │ │ ├── certificate.svg │ │ ├── chair.svg │ │ ├── chalkboard.svg │ │ ├── chalkboard_teacher.svg │ │ ├── charging_station.svg │ │ ├── chart_area.svg │ │ ├── chart_bar.svg │ │ ├── chart_line.svg │ │ ├── chart_pie.svg │ │ ├── check.svg │ │ ├── check_circle.svg │ │ ├── check_double.svg │ │ ├── check_square.svg │ │ ├── cheese.svg │ │ ├── chess.svg │ │ ├── chess_bishop.svg │ │ ├── chess_board.svg │ │ ├── chess_king.svg │ │ ├── chess_knight.svg │ │ ├── chess_pawn.svg │ │ ├── chess_queen.svg │ │ ├── chess_rook.svg │ │ ├── chevron_circle_down.svg │ │ ├── chevron_circle_left.svg │ │ ├── chevron_circle_right.svg │ │ ├── chevron_circle_up.svg │ │ ├── chevron_down.svg │ │ ├── chevron_left.svg │ │ ├── chevron_right.svg │ │ ├── chevron_up.svg │ │ ├── child.svg │ │ ├── chrome.svg │ │ ├── chromecast.svg │ │ ├── church.svg │ │ ├── circle.svg │ │ ├── circle_notch.svg │ │ ├── city.svg │ │ ├── clinic_medical.svg │ │ ├── clipboard.svg │ │ ├── clipboard_check.svg │ │ ├── clipboard_list.svg │ │ ├── clock.svg │ │ ├── clone.svg │ │ ├── closed_captioning.svg │ │ ├── cloud.svg │ │ ├── cloud_download_alt.svg │ │ ├── cloud_meatball.svg │ │ ├── cloud_moon.svg │ │ ├── cloud_moon_rain.svg │ │ ├── cloud_rain.svg │ │ ├── cloud_showers_heavy.svg │ │ ├── cloud_sun.svg │ │ ├── cloud_sun_rain.svg │ │ ├── cloud_upload_alt.svg │ │ ├── cloudscale.svg │ │ ├── cloudsmith.svg │ │ ├── cloudversify.svg │ │ ├── cocktail.svg │ │ ├── code.svg │ │ ├── code_branch.svg │ │ ├── codepen.svg │ │ ├── codiepie.svg │ │ ├── coffee.svg │ │ ├── cog.svg │ │ ├── cogs.svg │ │ ├── coins.svg │ │ ├── columns.svg │ │ ├── comment.svg │ │ ├── comment_alt.svg │ │ ├── comment_dollar.svg │ │ ├── comment_dots.svg │ │ ├── comment_medical.svg │ │ ├── comment_slash.svg │ │ ├── comments.svg │ │ ├── comments_dollar.svg │ │ ├── compact_disc.svg │ │ ├── compass.svg │ │ ├── compress.svg │ │ ├── compress_alt.svg │ │ ├── compress_arrows_alt.svg │ │ ├── concierge_bell.svg │ │ ├── confluence.svg │ │ ├── connectdevelop.svg │ │ ├── contao.svg │ │ ├── cookie.svg │ │ ├── cookie_bite.svg │ │ ├── copy.svg │ │ ├── copyright.svg │ │ ├── cotton_bureau.svg │ │ ├── couch.svg │ │ ├── cpanel.svg │ │ ├── creative_commons.svg │ │ ├── creative_commons_by.svg │ │ ├── creative_commons_nc.svg │ │ ├── creative_commons_nc_eu.svg │ │ ├── creative_commons_nc_jp.svg │ │ ├── creative_commons_nd.svg │ │ ├── creative_commons_pd.svg │ │ ├── creative_commons_pd_alt.svg │ │ ├── creative_commons_remix.svg │ │ ├── creative_commons_sa.svg │ │ ├── creative_commons_sampling.svg │ │ ├── creative_commons_sampling_plus.svg │ │ ├── creative_commons_share.svg │ │ ├── creative_commons_zero.svg │ │ ├── credit_card.svg │ │ ├── critical_role.svg │ │ ├── crop.svg │ │ ├── crop_alt.svg │ │ ├── cross.svg │ │ ├── crosshairs.svg │ │ ├── crow.svg │ │ ├── crown.svg │ │ ├── crutch.svg │ │ ├── css3.svg │ │ ├── css3_alt.svg │ │ ├── cube.svg │ │ ├── cubes.svg │ │ ├── cut.svg │ │ ├── cuttlefish.svg │ │ ├── d_and_d.svg │ │ ├── d_and_d_beyond.svg │ │ ├── dailymotion.svg │ │ ├── dashcube.svg │ │ ├── database.svg │ │ ├── deaf.svg │ │ ├── delicious.svg │ │ ├── democrat.svg │ │ ├── deploydog.svg │ │ ├── deskpro.svg │ │ ├── desktop.svg │ │ ├── dev.svg │ │ ├── deviantart.svg │ │ ├── dharmachakra.svg │ │ ├── dhl.svg │ │ ├── diagnoses.svg │ │ ├── diaspora.svg │ │ ├── dice.svg │ │ ├── dice_d20.svg │ │ ├── dice_d6.svg │ │ ├── dice_five.svg │ │ ├── dice_four.svg │ │ ├── dice_one.svg │ │ ├── dice_six.svg │ │ ├── dice_three.svg │ │ ├── dice_two.svg │ │ ├── digg.svg │ │ ├── digital_ocean.svg │ │ ├── digital_tachograph.svg │ │ ├── directions.svg │ │ ├── discord.svg │ │ ├── discourse.svg │ │ ├── disease.svg │ │ ├── divide.svg │ │ ├── dizzy.svg │ │ ├── dna.svg │ │ ├── dochub.svg │ │ ├── docker.svg │ │ ├── dog.svg │ │ ├── dollar_sign.svg │ │ ├── dolly.svg │ │ ├── dolly_flatbed.svg │ │ ├── donate.svg │ │ ├── door_closed.svg │ │ ├── door_open.svg │ │ ├── dot_circle.svg │ │ ├── dove.svg │ │ ├── download.svg │ │ ├── draft2digital.svg │ │ ├── drafting_compass.svg │ │ ├── dragon.svg │ │ ├── draw_polygon.svg │ │ ├── dribbble.svg │ │ ├── dribbble_square.svg │ │ ├── dropbox.svg │ │ ├── drum.svg │ │ ├── drum_steelpan.svg │ │ ├── drumstick_bite.svg │ │ ├── drupal.svg │ │ ├── dumbbell.svg │ │ ├── dumpster.svg │ │ ├── dumpster_fire.svg │ │ ├── dungeon.svg │ │ ├── dyalog.svg │ │ ├── earlybirds.svg │ │ ├── ebay.svg │ │ ├── edge.svg │ │ ├── edit.svg │ │ ├── egg.svg │ │ ├── eject.svg │ │ ├── elementor.svg │ │ ├── ellipsis_h.svg │ │ ├── ellipsis_v.svg │ │ ├── ello.svg │ │ ├── ember.svg │ │ ├── empire.svg │ │ ├── envelope.svg │ │ ├── envelope_open.svg │ │ ├── envelope_open_text.svg │ │ ├── envelope_square.svg │ │ ├── envira.svg │ │ ├── equals.svg │ │ ├── eraser.svg │ │ ├── erlang.svg │ │ ├── ethereum.svg │ │ ├── ethernet.svg │ │ ├── etsy.svg │ │ ├── euro_sign.svg │ │ ├── evernote.svg │ │ ├── exchange_alt.svg │ │ ├── exclamation.svg │ │ ├── exclamation_circle.svg │ │ ├── exclamation_triangle.svg │ │ ├── expand.svg │ │ ├── expand_alt.svg │ │ ├── expand_arrows_alt.svg │ │ ├── expeditedssl.svg │ │ ├── external_link_alt.svg │ │ ├── external_link_square_alt.svg │ │ ├── eye.svg │ │ ├── eye_dropper.svg │ │ ├── eye_slash.svg │ │ ├── facebook.svg │ │ ├── facebook_f.svg │ │ ├── facebook_messenger.svg │ │ ├── facebook_square.svg │ │ ├── fan.svg │ │ ├── fantasy_flight_games.svg │ │ ├── fast_backward.svg │ │ ├── fast_forward.svg │ │ ├── faucet.svg │ │ ├── fax.svg │ │ ├── feather.svg │ │ ├── feather_alt.svg │ │ ├── fedex.svg │ │ ├── fedora.svg │ │ ├── female.svg │ │ ├── fighter_jet.svg │ │ ├── figma.svg │ │ ├── file.svg │ │ ├── file_alt.svg │ │ ├── file_archive.svg │ │ ├── file_audio.svg │ │ ├── file_code.svg │ │ ├── file_contract.svg │ │ ├── file_csv.svg │ │ ├── file_download.svg │ │ ├── file_excel.svg │ │ ├── file_export.svg │ │ ├── file_image.svg │ │ ├── file_import.svg │ │ ├── file_invoice.svg │ │ ├── file_invoice_dollar.svg │ │ ├── file_medical.svg │ │ ├── file_medical_alt.svg │ │ ├── file_pdf.svg │ │ ├── file_powerpoint.svg │ │ ├── file_prescription.svg │ │ ├── file_signature.svg │ │ ├── file_upload.svg │ │ ├── file_video.svg │ │ ├── file_word.svg │ │ ├── fill.svg │ │ ├── fill_drip.svg │ │ ├── film.svg │ │ ├── filter.svg │ │ ├── fingerprint.svg │ │ ├── fire.svg │ │ ├── fire_alt.svg │ │ ├── fire_extinguisher.svg │ │ ├── firefox.svg │ │ ├── firefox_browser.svg │ │ ├── first_aid.svg │ │ ├── first_order.svg │ │ ├── first_order_alt.svg │ │ ├── firstdraft.svg │ │ ├── fish.svg │ │ ├── fist_raised.svg │ │ ├── five_hundred_px.svg │ │ ├── flag.svg │ │ ├── flag_checkered.svg │ │ ├── flag_usa.svg │ │ ├── flask.svg │ │ ├── flickr.svg │ │ ├── flipboard.svg │ │ ├── flushed.svg │ │ ├── fly.svg │ │ ├── folder.svg │ │ ├── folder_minus.svg │ │ ├── folder_open.svg │ │ ├── folder_plus.svg │ │ ├── font.svg │ │ ├── font_awesome.svg │ │ ├── font_awesome_alt.svg │ │ ├── font_awesome_flag.svg │ │ ├── fonticons.svg │ │ ├── fonticons_fi.svg │ │ ├── football_ball.svg │ │ ├── fort_awesome.svg │ │ ├── fort_awesome_alt.svg │ │ ├── forumbee.svg │ │ ├── forward.svg │ │ ├── foursquare.svg │ │ ├── free_code_camp.svg │ │ ├── freebsd.svg │ │ ├── frog.svg │ │ ├── frown.svg │ │ ├── frown_open.svg │ │ ├── fulcrum.svg │ │ ├── funnel_dollar.svg │ │ ├── futbol.svg │ │ ├── galactic_republic.svg │ │ ├── galactic_senate.svg │ │ ├── gamepad.svg │ │ ├── gas_pump.svg │ │ ├── gavel.svg │ │ ├── gem.svg │ │ ├── genderless.svg │ │ ├── get_pocket.svg │ │ ├── gg.svg │ │ ├── gg_circle.svg │ │ ├── ghost.svg │ │ ├── gift.svg │ │ ├── gifts.svg │ │ ├── git.svg │ │ ├── git_alt.svg │ │ ├── git_square.svg │ │ ├── github.svg │ │ ├── github_alt.svg │ │ ├── github_square.svg │ │ ├── gitkraken.svg │ │ ├── gitlab.svg │ │ ├── gitter.svg │ │ ├── glass_cheers.svg │ │ ├── glass_martini.svg │ │ ├── glass_martini_alt.svg │ │ ├── glass_whiskey.svg │ │ ├── glasses.svg │ │ ├── glide.svg │ │ ├── glide_g.svg │ │ ├── globe.svg │ │ ├── globe_africa.svg │ │ ├── globe_americas.svg │ │ ├── globe_asia.svg │ │ ├── globe_europe.svg │ │ ├── gofore.svg │ │ ├── golf_ball.svg │ │ ├── goodreads.svg │ │ ├── goodreads_g.svg │ │ ├── google.svg │ │ ├── google_drive.svg │ │ ├── google_play.svg │ │ ├── google_plus.svg │ │ ├── google_plus_g.svg │ │ ├── google_plus_square.svg │ │ ├── google_wallet.svg │ │ ├── gopuram.svg │ │ ├── graduation_cap.svg │ │ ├── gratipay.svg │ │ ├── grav.svg │ │ ├── greater_than.svg │ │ ├── greater_than_equal.svg │ │ ├── grimace.svg │ │ ├── grin.svg │ │ ├── grin_alt.svg │ │ ├── grin_beam.svg │ │ ├── grin_beam_sweat.svg │ │ ├── grin_hearts.svg │ │ ├── grin_squint.svg │ │ ├── grin_squint_tears.svg │ │ ├── grin_stars.svg │ │ ├── grin_tears.svg │ │ ├── grin_tongue.svg │ │ ├── grin_tongue_squint.svg │ │ ├── grin_tongue_wink.svg │ │ ├── grin_wink.svg │ │ ├── grip_horizontal.svg │ │ ├── grip_lines.svg │ │ ├── grip_lines_vertical.svg │ │ ├── grip_vertical.svg │ │ ├── gripfire.svg │ │ ├── grunt.svg │ │ ├── guitar.svg │ │ ├── gulp.svg │ │ ├── h_square.svg │ │ ├── hacker_news.svg │ │ ├── hacker_news_square.svg │ │ ├── hackerrank.svg │ │ ├── hamburger.svg │ │ ├── hammer.svg │ │ ├── hamsa.svg │ │ ├── hand_holding.svg │ │ ├── hand_holding_heart.svg │ │ ├── hand_holding_medical.svg │ │ ├── hand_holding_usd.svg │ │ ├── hand_holding_water.svg │ │ ├── hand_lizard.svg │ │ ├── hand_middle_finger.svg │ │ ├── hand_paper.svg │ │ ├── hand_peace.svg │ │ ├── hand_point_down.svg │ │ ├── hand_point_left.svg │ │ ├── hand_point_right.svg │ │ ├── hand_point_up.svg │ │ ├── hand_pointer.svg │ │ ├── hand_rock.svg │ │ ├── hand_scissors.svg │ │ ├── hand_sparkles.svg │ │ ├── hand_spock.svg │ │ ├── hands.svg │ │ ├── hands_helping.svg │ │ ├── hands_wash.svg │ │ ├── handshake.svg │ │ ├── handshake_alt_slash.svg │ │ ├── handshake_slash.svg │ │ ├── hanukiah.svg │ │ ├── hard_hat.svg │ │ ├── hashtag.svg │ │ ├── hat_cowboy.svg │ │ ├── hat_cowboy_side.svg │ │ ├── hat_wizard.svg │ │ ├── hdd.svg │ │ ├── head_side_cough.svg │ │ ├── head_side_cough_slash.svg │ │ ├── head_side_mask.svg │ │ ├── head_side_virus.svg │ │ ├── heading.svg │ │ ├── headphones.svg │ │ ├── headphones_alt.svg │ │ ├── headset.svg │ │ ├── heart.svg │ │ ├── heart_broken.svg │ │ ├── heartbeat.svg │ │ ├── helicopter.svg │ │ ├── highlighter.svg │ │ ├── hiking.svg │ │ ├── hippo.svg │ │ ├── hips.svg │ │ ├── hire_a_helper.svg │ │ ├── history.svg │ │ ├── hockey_puck.svg │ │ ├── holly_berry.svg │ │ ├── home.svg │ │ ├── hooli.svg │ │ ├── hornbill.svg │ │ ├── horse.svg │ │ ├── horse_head.svg │ │ ├── hospital.svg │ │ ├── hospital_alt.svg │ │ ├── hospital_symbol.svg │ │ ├── hospital_user.svg │ │ ├── hot_tub.svg │ │ ├── hotdog.svg │ │ ├── hotel.svg │ │ ├── hotjar.svg │ │ ├── hourglass.svg │ │ ├── hourglass_end.svg │ │ ├── hourglass_half.svg │ │ ├── hourglass_start.svg │ │ ├── house_damage.svg │ │ ├── house_user.svg │ │ ├── houzz.svg │ │ ├── hryvnia.svg │ │ ├── html5.svg │ │ ├── hubspot.svg │ │ ├── i_cursor.svg │ │ ├── ice_cream.svg │ │ ├── icicles.svg │ │ ├── icons.svg │ │ ├── id_badge.svg │ │ ├── id_card.svg │ │ ├── id_card_alt.svg │ │ ├── ideal.svg │ │ ├── igloo.svg │ │ ├── image.svg │ │ ├── images.svg │ │ ├── imdb.svg │ │ ├── inbox.svg │ │ ├── indent.svg │ │ ├── industry.svg │ │ ├── infinity.svg │ │ ├── info.svg │ │ ├── info_circle.svg │ │ ├── instagram.svg │ │ ├── instagram_square.svg │ │ ├── intercom.svg │ │ ├── internet_explorer.svg │ │ ├── invision.svg │ │ ├── ioxhost.svg │ │ ├── italic.svg │ │ ├── itch_io.svg │ │ ├── itunes.svg │ │ ├── itunes_note.svg │ │ ├── java.svg │ │ ├── jedi.svg │ │ ├── jedi_order.svg │ │ ├── jenkins.svg │ │ ├── jira.svg │ │ ├── joget.svg │ │ ├── joint.svg │ │ ├── joomla.svg │ │ ├── journal_whills.svg │ │ ├── js.svg │ │ ├── js_square.svg │ │ ├── jsfiddle.svg │ │ ├── kaaba.svg │ │ ├── kaggle.svg │ │ ├── key.svg │ │ ├── keybase.svg │ │ ├── keyboard.svg │ │ ├── keycdn.svg │ │ ├── khanda.svg │ │ ├── kickstarter.svg │ │ ├── kickstarter_k.svg │ │ ├── kiss.svg │ │ ├── kiss_beam.svg │ │ ├── kiss_wink_heart.svg │ │ ├── kiwi_bird.svg │ │ ├── korvue.svg │ │ ├── landmark.svg │ │ ├── language.svg │ │ ├── laptop.svg │ │ ├── laptop_code.svg │ │ ├── laptop_house.svg │ │ ├── laptop_medical.svg │ │ ├── laravel.svg │ │ ├── lastfm.svg │ │ ├── lastfm_square.svg │ │ ├── laugh.svg │ │ ├── laugh_beam.svg │ │ ├── laugh_squint.svg │ │ ├── laugh_wink.svg │ │ ├── layer_group.svg │ │ ├── leaf.svg │ │ ├── leanpub.svg │ │ ├── lemon.svg │ │ ├── less.svg │ │ ├── less_than.svg │ │ ├── less_than_equal.svg │ │ ├── level_down_alt.svg │ │ ├── level_up_alt.svg │ │ ├── life_ring.svg │ │ ├── lightbulb.svg │ │ ├── line.svg │ │ ├── link.svg │ │ ├── linkedin.svg │ │ ├── linkedin_in.svg │ │ ├── linode.svg │ │ ├── linux.svg │ │ ├── lira_sign.svg │ │ ├── list.svg │ │ ├── list_alt.svg │ │ ├── list_ol.svg │ │ ├── list_ul.svg │ │ ├── location_arrow.svg │ │ ├── lock.svg │ │ ├── lock_open.svg │ │ ├── long_arrow_alt_down.svg │ │ ├── long_arrow_alt_left.svg │ │ ├── long_arrow_alt_right.svg │ │ ├── long_arrow_alt_up.svg │ │ ├── low_vision.svg │ │ ├── luggage_cart.svg │ │ ├── lungs.svg │ │ ├── lungs_virus.svg │ │ ├── lyft.svg │ │ ├── magento.svg │ │ ├── magic.svg │ │ ├── magnet.svg │ │ ├── mail_bulk.svg │ │ ├── mailchimp.svg │ │ ├── male.svg │ │ ├── mandalorian.svg │ │ ├── map.svg │ │ ├── map_marked.svg │ │ ├── map_marked_alt.svg │ │ ├── map_marker.svg │ │ ├── map_marker_alt.svg │ │ ├── map_pin.svg │ │ ├── map_signs.svg │ │ ├── markdown.svg │ │ ├── marker.svg │ │ ├── mars.svg │ │ ├── mars_double.svg │ │ ├── mars_stroke.svg │ │ ├── mars_stroke_h.svg │ │ ├── mars_stroke_v.svg │ │ ├── mask.svg │ │ ├── mastodon.svg │ │ ├── maxcdn.svg │ │ ├── mdb.svg │ │ ├── medal.svg │ │ ├── medapps.svg │ │ ├── medium.svg │ │ ├── medium_m.svg │ │ ├── medkit.svg │ │ ├── medrt.svg │ │ ├── meetup.svg │ │ ├── megaport.svg │ │ ├── meh.svg │ │ ├── meh_blank.svg │ │ ├── meh_rolling_eyes.svg │ │ ├── memory.svg │ │ ├── mendeley.svg │ │ ├── menorah.svg │ │ ├── mercury.svg │ │ ├── meteor.svg │ │ ├── microblog.svg │ │ ├── microchip.svg │ │ ├── microphone.svg │ │ ├── microphone_alt.svg │ │ ├── microphone_alt_slash.svg │ │ ├── microphone_slash.svg │ │ ├── microscope.svg │ │ ├── microsoft.svg │ │ ├── minus.svg │ │ ├── minus_circle.svg │ │ ├── minus_square.svg │ │ ├── mitten.svg │ │ ├── mix.svg │ │ ├── mixcloud.svg │ │ ├── mixer.svg │ │ ├── mizuni.svg │ │ ├── mobile.svg │ │ ├── mobile_alt.svg │ │ ├── modx.svg │ │ ├── monero.svg │ │ ├── money_bill.svg │ │ ├── money_bill_alt.svg │ │ ├── money_bill_wave.svg │ │ ├── money_bill_wave_alt.svg │ │ ├── money_check.svg │ │ ├── money_check_alt.svg │ │ ├── monument.svg │ │ ├── moon.svg │ │ ├── mortar_pestle.svg │ │ ├── mosque.svg │ │ ├── motorcycle.svg │ │ ├── mountain.svg │ │ ├── mouse.svg │ │ ├── mouse_pointer.svg │ │ ├── mug_hot.svg │ │ ├── music.svg │ │ ├── napster.svg │ │ ├── neos.svg │ │ ├── network_wired.svg │ │ ├── neuter.svg │ │ ├── newspaper.svg │ │ ├── nimblr.svg │ │ ├── node.svg │ │ ├── node_js.svg │ │ ├── not_equal.svg │ │ ├── notes_medical.svg │ │ ├── npm.svg │ │ ├── ns8.svg │ │ ├── nutritionix.svg │ │ ├── object_group.svg │ │ ├── object_ungroup.svg │ │ ├── odnoklassniki.svg │ │ ├── odnoklassniki_square.svg │ │ ├── oil_can.svg │ │ ├── old_republic.svg │ │ ├── om.svg │ │ ├── opencart.svg │ │ ├── openid.svg │ │ ├── opera.svg │ │ ├── optin_monster.svg │ │ ├── orcid.svg │ │ ├── osi.svg │ │ ├── otter.svg │ │ ├── outdent.svg │ │ ├── page4.svg │ │ ├── pagelines.svg │ │ ├── pager.svg │ │ ├── paint_brush.svg │ │ ├── paint_roller.svg │ │ ├── palette.svg │ │ ├── palfed.svg │ │ ├── pallet.svg │ │ ├── paper_plane.svg │ │ ├── paperclip.svg │ │ ├── parachute_box.svg │ │ ├── paragraph.svg │ │ ├── parking.svg │ │ ├── passport.svg │ │ ├── pastafarianism.svg │ │ ├── paste.svg │ │ ├── patreon.svg │ │ ├── pause.svg │ │ ├── pause_circle.svg │ │ ├── paw.svg │ │ ├── paypal.svg │ │ ├── peace.svg │ │ ├── pen.svg │ │ ├── pen_alt.svg │ │ ├── pen_fancy.svg │ │ ├── pen_nib.svg │ │ ├── pen_square.svg │ │ ├── pencil_alt.svg │ │ ├── pencil_ruler.svg │ │ ├── penny_arcade.svg │ │ ├── people_arrows.svg │ │ ├── people_carry.svg │ │ ├── pepper_hot.svg │ │ ├── percent.svg │ │ ├── percentage.svg │ │ ├── periscope.svg │ │ ├── person_booth.svg │ │ ├── phabricator.svg │ │ ├── phoenix_framework.svg │ │ ├── phoenix_squadron.svg │ │ ├── phone.svg │ │ ├── phone_alt.svg │ │ ├── phone_slash.svg │ │ ├── phone_square.svg │ │ ├── phone_square_alt.svg │ │ ├── phone_volume.svg │ │ ├── photo_video.svg │ │ ├── php.svg │ │ ├── pied_piper.svg │ │ ├── pied_piper_alt.svg │ │ ├── pied_piper_hat.svg │ │ ├── pied_piper_pp.svg │ │ ├── pied_piper_square.svg │ │ ├── piggy_bank.svg │ │ ├── pills.svg │ │ ├── pinterest.svg │ │ ├── pinterest_p.svg │ │ ├── pinterest_square.svg │ │ ├── pizza_slice.svg │ │ ├── place_of_worship.svg │ │ ├── plane.svg │ │ ├── plane_arrival.svg │ │ ├── plane_departure.svg │ │ ├── plane_slash.svg │ │ ├── play.svg │ │ ├── play_circle.svg │ │ ├── playstation.svg │ │ ├── plug.svg │ │ ├── plus.svg │ │ ├── plus_circle.svg │ │ ├── plus_square.svg │ │ ├── podcast.svg │ │ ├── poll.svg │ │ ├── poll_h.svg │ │ ├── poo.svg │ │ ├── poo_storm.svg │ │ ├── poop.svg │ │ ├── portrait.svg │ │ ├── pound_sign.svg │ │ ├── power_off.svg │ │ ├── pray.svg │ │ ├── praying_hands.svg │ │ ├── prescription.svg │ │ ├── prescription_bottle.svg │ │ ├── prescription_bottle_alt.svg │ │ ├── print.svg │ │ ├── procedures.svg │ │ ├── product_hunt.svg │ │ ├── project_diagram.svg │ │ ├── pump_medical.svg │ │ ├── pump_soap.svg │ │ ├── pushed.svg │ │ ├── puzzle_piece.svg │ │ ├── python.svg │ │ ├── qq.svg │ │ ├── qrcode.svg │ │ ├── question.svg │ │ ├── question_circle.svg │ │ ├── quidditch.svg │ │ ├── quinscape.svg │ │ ├── quora.svg │ │ ├── quote_left.svg │ │ ├── quote_right.svg │ │ ├── quran.svg │ │ ├── r_project.svg │ │ ├── radiation.svg │ │ ├── radiation_alt.svg │ │ ├── rainbow.svg │ │ ├── random.svg │ │ ├── raspberry_pi.svg │ │ ├── ravelry.svg │ │ ├── react.svg │ │ ├── reacteurope.svg │ │ ├── readme.svg │ │ ├── rebel.svg │ │ ├── receipt.svg │ │ ├── record_vinyl.svg │ │ ├── recycle.svg │ │ ├── red_river.svg │ │ ├── reddit.svg │ │ ├── reddit_alien.svg │ │ ├── reddit_square.svg │ │ ├── redhat.svg │ │ ├── redo.svg │ │ ├── redo_alt.svg │ │ ├── registered.svg │ │ ├── remove_format.svg │ │ ├── renren.svg │ │ ├── reply.svg │ │ ├── reply_all.svg │ │ ├── replyd.svg │ │ ├── republican.svg │ │ ├── researchgate.svg │ │ ├── resolving.svg │ │ ├── restroom.svg │ │ ├── retweet.svg │ │ ├── rev.svg │ │ ├── ribbon.svg │ │ ├── ring.svg │ │ ├── road.svg │ │ ├── robot.svg │ │ ├── rocket.svg │ │ ├── rocketchat.svg │ │ ├── rockrms.svg │ │ ├── route.svg │ │ ├── rss.svg │ │ ├── rss_square.svg │ │ ├── ruble_sign.svg │ │ ├── ruler.svg │ │ ├── ruler_combined.svg │ │ ├── ruler_horizontal.svg │ │ ├── ruler_vertical.svg │ │ ├── running.svg │ │ ├── rupee_sign.svg │ │ ├── sad_cry.svg │ │ ├── sad_tear.svg │ │ ├── safari.svg │ │ ├── salesforce.svg │ │ ├── sass.svg │ │ ├── satellite.svg │ │ ├── satellite_dish.svg │ │ ├── save.svg │ │ ├── schlix.svg │ │ ├── school.svg │ │ ├── screwdriver.svg │ │ ├── scribd.svg │ │ ├── scroll.svg │ │ ├── sd_card.svg │ │ ├── search.svg │ │ ├── search_dollar.svg │ │ ├── search_location.svg │ │ ├── search_minus.svg │ │ ├── search_plus.svg │ │ ├── searchengin.svg │ │ ├── seedling.svg │ │ ├── sellcast.svg │ │ ├── sellsy.svg │ │ ├── server.svg │ │ ├── servicestack.svg │ │ ├── shapes.svg │ │ ├── share.svg │ │ ├── share_alt.svg │ │ ├── share_alt_square.svg │ │ ├── share_square.svg │ │ ├── shekel_sign.svg │ │ ├── shield_alt.svg │ │ ├── shield_virus.svg │ │ ├── ship.svg │ │ ├── shipping_fast.svg │ │ ├── shirtsinbulk.svg │ │ ├── shoe_prints.svg │ │ ├── shopify.svg │ │ ├── shopping_bag.svg │ │ ├── shopping_basket.svg │ │ ├── shopping_cart.svg │ │ ├── shopware.svg │ │ ├── shower.svg │ │ ├── shuttle_van.svg │ │ ├── sign.svg │ │ ├── sign_in_alt.svg │ │ ├── sign_language.svg │ │ ├── sign_out_alt.svg │ │ ├── signal.svg │ │ ├── signature.svg │ │ ├── sim_card.svg │ │ ├── simplybuilt.svg │ │ ├── sistrix.svg │ │ ├── sitemap.svg │ │ ├── sith.svg │ │ ├── skating.svg │ │ ├── sketch.svg │ │ ├── skiing.svg │ │ ├── skiing_nordic.svg │ │ ├── skull.svg │ │ ├── skull_crossbones.svg │ │ ├── skyatlas.svg │ │ ├── skype.svg │ │ ├── slack.svg │ │ ├── slack_hash.svg │ │ ├── slash.svg │ │ ├── sleigh.svg │ │ ├── sliders_h.svg │ │ ├── slideshare.svg │ │ ├── smile.svg │ │ ├── smile_beam.svg │ │ ├── smile_wink.svg │ │ ├── smog.svg │ │ ├── smoking.svg │ │ ├── smoking_ban.svg │ │ ├── sms.svg │ │ ├── snapchat.svg │ │ ├── snapchat_ghost.svg │ │ ├── snapchat_square.svg │ │ ├── snowboarding.svg │ │ ├── snowflake.svg │ │ ├── snowman.svg │ │ ├── snowplow.svg │ │ ├── soap.svg │ │ ├── socks.svg │ │ ├── solar_panel.svg │ │ ├── sort.svg │ │ ├── sort_alpha_down.svg │ │ ├── sort_alpha_down_alt.svg │ │ ├── sort_alpha_up.svg │ │ ├── sort_alpha_up_alt.svg │ │ ├── sort_amount_down.svg │ │ ├── sort_amount_down_alt.svg │ │ ├── sort_amount_up.svg │ │ ├── sort_amount_up_alt.svg │ │ ├── sort_down.svg │ │ ├── sort_numeric_down.svg │ │ ├── sort_numeric_down_alt.svg │ │ ├── sort_numeric_up.svg │ │ ├── sort_numeric_up_alt.svg │ │ ├── sort_up.svg │ │ ├── soundcloud.svg │ │ ├── sourcetree.svg │ │ ├── spa.svg │ │ ├── space_shuttle.svg │ │ ├── speakap.svg │ │ ├── speaker_deck.svg │ │ ├── spell_check.svg │ │ ├── spider.svg │ │ ├── spinner.svg │ │ ├── splotch.svg │ │ ├── spotify.svg │ │ ├── spray_can.svg │ │ ├── square.svg │ │ ├── square_full.svg │ │ ├── square_root_alt.svg │ │ ├── squarespace.svg │ │ ├── stack_exchange.svg │ │ ├── stack_overflow.svg │ │ ├── stackpath.svg │ │ ├── stamp.svg │ │ ├── star.svg │ │ ├── star_and_crescent.svg │ │ ├── star_half.svg │ │ ├── star_half_alt.svg │ │ ├── star_of_david.svg │ │ ├── star_of_life.svg │ │ ├── staylinked.svg │ │ ├── steam.svg │ │ ├── steam_square.svg │ │ ├── steam_symbol.svg │ │ ├── step_backward.svg │ │ ├── step_forward.svg │ │ ├── stethoscope.svg │ │ ├── sticker_mule.svg │ │ ├── sticky_note.svg │ │ ├── stop.svg │ │ ├── stop_circle.svg │ │ ├── stopwatch.svg │ │ ├── stopwatch_20.svg │ │ ├── store.svg │ │ ├── store_alt.svg │ │ ├── store_alt_slash.svg │ │ ├── store_slash.svg │ │ ├── strava.svg │ │ ├── stream.svg │ │ ├── street_view.svg │ │ ├── strikethrough.svg │ │ ├── stripe.svg │ │ ├── stripe_s.svg │ │ ├── stroopwafel.svg │ │ ├── studiovinari.svg │ │ ├── stumbleupon.svg │ │ ├── stumbleupon_circle.svg │ │ ├── subscript.svg │ │ ├── subway.svg │ │ ├── suitcase.svg │ │ ├── suitcase_rolling.svg │ │ ├── sun.svg │ │ ├── superpowers.svg │ │ ├── superscript.svg │ │ ├── supple.svg │ │ ├── surprise.svg │ │ ├── suse.svg │ │ ├── swatchbook.svg │ │ ├── swift.svg │ │ ├── swimmer.svg │ │ ├── swimming_pool.svg │ │ ├── symfony.svg │ │ ├── synagogue.svg │ │ ├── sync.svg │ │ ├── sync_alt.svg │ │ ├── syringe.svg │ │ ├── table.svg │ │ ├── table_tennis.svg │ │ ├── tablet.svg │ │ ├── tablet_alt.svg │ │ ├── tablets.svg │ │ ├── tachometer_alt.svg │ │ ├── tag.svg │ │ ├── tags.svg │ │ ├── tape.svg │ │ ├── tasks.svg │ │ ├── taxi.svg │ │ ├── teamspeak.svg │ │ ├── teeth.svg │ │ ├── teeth_open.svg │ │ ├── telegram.svg │ │ ├── telegram_plane.svg │ │ ├── temperature_high.svg │ │ ├── temperature_low.svg │ │ ├── tencent_weibo.svg │ │ ├── tenge.svg │ │ ├── terminal.svg │ │ ├── text_height.svg │ │ ├── text_width.svg │ │ ├── th.svg │ │ ├── th_large.svg │ │ ├── th_list.svg │ │ ├── the_red_yeti.svg │ │ ├── theater_masks.svg │ │ ├── themeco.svg │ │ ├── themeisle.svg │ │ ├── thermometer.svg │ │ ├── thermometer_empty.svg │ │ ├── thermometer_full.svg │ │ ├── thermometer_half.svg │ │ ├── thermometer_quarter.svg │ │ ├── thermometer_three_quarters.svg │ │ ├── think_peaks.svg │ │ ├── thumbs_down.svg │ │ ├── thumbs_up.svg │ │ ├── thumbtack.svg │ │ ├── ticket_alt.svg │ │ ├── times.svg │ │ ├── times_circle.svg │ │ ├── tint.svg │ │ ├── tint_slash.svg │ │ ├── tired.svg │ │ ├── toggle_off.svg │ │ ├── toggle_on.svg │ │ ├── toilet.svg │ │ ├── toilet_paper.svg │ │ ├── toilet_paper_slash.svg │ │ ├── toolbox.svg │ │ ├── tools.svg │ │ ├── tooth.svg │ │ ├── torah.svg │ │ ├── torii_gate.svg │ │ ├── tractor.svg │ │ ├── trade_federation.svg │ │ ├── trademark.svg │ │ ├── traffic_light.svg │ │ ├── trailer.svg │ │ ├── train.svg │ │ ├── tram.svg │ │ ├── transgender.svg │ │ ├── transgender_alt.svg │ │ ├── trash.svg │ │ ├── trash_alt.svg │ │ ├── trash_restore.svg │ │ ├── trash_restore_alt.svg │ │ ├── tree.svg │ │ ├── trello.svg │ │ ├── tripadvisor.svg │ │ ├── trophy.svg │ │ ├── truck.svg │ │ ├── truck_loading.svg │ │ ├── truck_monster.svg │ │ ├── truck_moving.svg │ │ ├── truck_pickup.svg │ │ ├── tshirt.svg │ │ ├── tty.svg │ │ ├── tumblr.svg │ │ ├── tumblr_square.svg │ │ ├── tv.svg │ │ ├── twitch.svg │ │ ├── twitter.svg │ │ ├── twitter_square.svg │ │ ├── typo3.svg │ │ ├── uber.svg │ │ ├── ubuntu.svg │ │ ├── uikit.svg │ │ ├── umbraco.svg │ │ ├── umbrella.svg │ │ ├── umbrella_beach.svg │ │ ├── underline.svg │ │ ├── undo.svg │ │ ├── undo_alt.svg │ │ ├── uniregistry.svg │ │ ├── unity.svg │ │ ├── universal_access.svg │ │ ├── university.svg │ │ ├── unlink.svg │ │ ├── unlock.svg │ │ ├── unlock_alt.svg │ │ ├── untappd.svg │ │ ├── upload.svg │ │ ├── ups.svg │ │ ├── usb.svg │ │ ├── user.svg │ │ ├── user_alt.svg │ │ ├── user_alt_slash.svg │ │ ├── user_astronaut.svg │ │ ├── user_check.svg │ │ ├── user_circle.svg │ │ ├── user_clock.svg │ │ ├── user_cog.svg │ │ ├── user_edit.svg │ │ ├── user_friends.svg │ │ ├── user_graduate.svg │ │ ├── user_injured.svg │ │ ├── user_lock.svg │ │ ├── user_md.svg │ │ ├── user_minus.svg │ │ ├── user_ninja.svg │ │ ├── user_nurse.svg │ │ ├── user_plus.svg │ │ ├── user_secret.svg │ │ ├── user_shield.svg │ │ ├── user_slash.svg │ │ ├── user_tag.svg │ │ ├── user_tie.svg │ │ ├── user_times.svg │ │ ├── users.svg │ │ ├── users_cog.svg │ │ ├── usps.svg │ │ ├── ussunnah.svg │ │ ├── utensil_spoon.svg │ │ ├── utensils.svg │ │ ├── vaadin.svg │ │ ├── vector_square.svg │ │ ├── venus.svg │ │ ├── venus_double.svg │ │ ├── venus_mars.svg │ │ ├── viacoin.svg │ │ ├── viadeo.svg │ │ ├── viadeo_square.svg │ │ ├── vial.svg │ │ ├── vials.svg │ │ ├── viber.svg │ │ ├── video.svg │ │ ├── video_slash.svg │ │ ├── vihara.svg │ │ ├── vimeo.svg │ │ ├── vimeo_square.svg │ │ ├── vimeo_v.svg │ │ ├── vine.svg │ │ ├── virus.svg │ │ ├── virus_slash.svg │ │ ├── viruses.svg │ │ ├── vk.svg │ │ ├── vnv.svg │ │ ├── voicemail.svg │ │ ├── volleyball_ball.svg │ │ ├── volume_down.svg │ │ ├── volume_mute.svg │ │ ├── volume_off.svg │ │ ├── volume_up.svg │ │ ├── vote_yea.svg │ │ ├── vr_cardboard.svg │ │ ├── vuejs.svg │ │ ├── walking.svg │ │ ├── wallet.svg │ │ ├── warehouse.svg │ │ ├── water.svg │ │ ├── wave_square.svg │ │ ├── waze.svg │ │ ├── weebly.svg │ │ ├── weibo.svg │ │ ├── weight.svg │ │ ├── weight_hanging.svg │ │ ├── weixin.svg │ │ ├── whatsapp.svg │ │ ├── whatsapp_square.svg │ │ ├── wheelchair.svg │ │ ├── whmcs.svg │ │ ├── wifi.svg │ │ ├── wikipedia_w.svg │ │ ├── wind.svg │ │ ├── window_close.svg │ │ ├── window_maximize.svg │ │ ├── window_minimize.svg │ │ ├── window_restore.svg │ │ ├── windows.svg │ │ ├── wine_bottle.svg │ │ ├── wine_glass.svg │ │ ├── wine_glass_alt.svg │ │ ├── wix.svg │ │ ├── wizards_of_the_coast.svg │ │ ├── wolf_pack_battalion.svg │ │ ├── won_sign.svg │ │ ├── wordpress.svg │ │ ├── wordpress_simple.svg │ │ ├── wpbeginner.svg │ │ ├── wpexplorer.svg │ │ ├── wpforms.svg │ │ ├── wpressr.svg │ │ ├── wrench.svg │ │ ├── x_ray.svg │ │ ├── xbox.svg │ │ ├── xing.svg │ │ ├── xing_square.svg │ │ ├── y_combinator.svg │ │ ├── yahoo.svg │ │ ├── yammer.svg │ │ ├── yandex.svg │ │ ├── yandex_international.svg │ │ ├── yarn.svg │ │ ├── yelp.svg │ │ ├── yen_sign.svg │ │ ├── yin_yang.svg │ │ ├── yoast.svg │ │ ├── youtube.svg │ │ ├── youtube_square.svg │ │ └── zhihu.svg ├── linearicons.font │ ├── .gitignore │ ├── Makefile │ ├── config.yml │ ├── dump.svgo.yml │ ├── font │ │ ├── Linearicons-Free.eot │ │ ├── Linearicons-Free.svg │ │ ├── Linearicons-Free.ttf │ │ ├── Linearicons-Free.woff │ │ └── Linearicons-Free.woff2 │ ├── package.json │ └── src │ │ ├── original │ │ └── linearicons.svg │ │ └── svg │ │ ├── alarm.svg │ │ ├── apartment.svg │ │ ├── arrow-down-circle.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left-circle.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right-circle.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up-circle.svg │ │ ├── arrow-up.svg │ │ ├── bicycle.svg │ │ ├── bold.svg │ │ ├── book.svg │ │ ├── bookmark.svg │ │ ├── briefcase.svg │ │ ├── bug.svg │ │ ├── bullhorn.svg │ │ ├── bus.svg │ │ ├── calendar-full.svg │ │ ├── camera-video.svg │ │ ├── camera.svg │ │ ├── car.svg │ │ ├── cart.svg │ │ ├── chart-bars.svg │ │ ├── checkmark-cicle.svg │ │ ├── chevron-down-circle.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left-circle.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right-circle.svg │ │ ├── chevron-right.svg │ │ ├── chevron-up-circle.svg │ │ ├── chevron-up.svg │ │ ├── circle-minus.svg │ │ ├── clock.svg │ │ ├── cloud-check.svg │ │ ├── cloud-download.svg │ │ ├── cloud-sync.svg │ │ ├── cloud-upload.svg │ │ ├── cloud.svg │ │ ├── code.svg │ │ ├── coffee-cup.svg │ │ ├── cog.svg │ │ ├── construction.svg │ │ ├── crop.svg │ │ ├── cross-circle.svg │ │ ├── cross.svg │ │ ├── database.svg │ │ ├── diamond.svg │ │ ├── dice.svg │ │ ├── dinner.svg │ │ ├── direction-ltr.svg │ │ ├── direction-rtl.svg │ │ ├── download.svg │ │ ├── drop.svg │ │ ├── earth.svg │ │ ├── enter-down.svg │ │ ├── enter.svg │ │ ├── envelope.svg │ │ ├── exit-up.svg │ │ ├── exit.svg │ │ ├── eye.svg │ │ ├── file-add.svg │ │ ├── file-empty.svg │ │ ├── film-play.svg │ │ ├── flag.svg │ │ ├── frame-contract.svg │ │ ├── frame-expand.svg │ │ ├── funnel.svg │ │ ├── gift.svg │ │ ├── graduation-hat.svg │ │ ├── hand.svg │ │ ├── heart-pulse.svg │ │ ├── heart.svg │ │ ├── highlight.svg │ │ ├── history.svg │ │ ├── home.svg │ │ ├── hourglass.svg │ │ ├── inbox.svg │ │ ├── indent-decrease.svg │ │ ├── indent-increase.svg │ │ ├── italic.svg │ │ ├── keyboard.svg │ │ ├── laptop-phone.svg │ │ ├── laptop.svg │ │ ├── layers.svg │ │ ├── leaf.svg │ │ ├── license.svg │ │ ├── lighter.svg │ │ ├── line-spacing.svg │ │ ├── linearicons.svg │ │ ├── link.svg │ │ ├── list.svg │ │ ├── lnr-bubble.svg │ │ ├── location.svg │ │ ├── lock.svg │ │ ├── magic-wand.svg │ │ ├── magnifier.svg │ │ ├── map-marker.svg │ │ ├── map.svg │ │ ├── menu-circle.svg │ │ ├── menu.svg │ │ ├── mic.svg │ │ ├── moon.svg │ │ ├── move.svg │ │ ├── music-note.svg │ │ ├── mustache.svg │ │ ├── neutral.svg │ │ ├── page-break.svg │ │ ├── paperclip.svg │ │ ├── paw.svg │ │ ├── pencil.svg │ │ ├── phone-handset.svg │ │ ├── phone.svg │ │ ├── picture.svg │ │ ├── pie-chart.svg │ │ ├── pilcrow.svg │ │ ├── plus-circle.svg │ │ ├── pointer-down.svg │ │ ├── pointer-left.svg │ │ ├── pointer-right.svg │ │ ├── pointer-up.svg │ │ ├── poop.svg │ │ ├── power-swtich.svg │ │ ├── printer.svg │ │ ├── pushpin.svg │ │ ├── question-circle.svg │ │ ├── redo.svg │ │ ├── rocket.svg │ │ ├── sad.svg │ │ ├── screen.svg │ │ ├── select.svg │ │ ├── shirt.svg │ │ ├── smartphone.svg │ │ ├── smile.svg │ │ ├── sort-alpha-asc.svg │ │ ├── sort-amount-asc.svg │ │ ├── spell-check.svg │ │ ├── star-empty.svg │ │ ├── star-half.svg │ │ ├── star.svg │ │ ├── store.svg │ │ ├── strikethrough.svg │ │ ├── sun.svg │ │ ├── sync.svg │ │ ├── tablet.svg │ │ ├── tag.svg │ │ ├── text-align-center.svg │ │ ├── text-align-justify.svg │ │ ├── text-align-left.svg │ │ ├── text-align-right.svg │ │ ├── text-format-remove.svg │ │ ├── text-format.svg │ │ ├── text-size.svg │ │ ├── thumbs-down.svg │ │ ├── thumbs-up.svg │ │ ├── train.svg │ │ ├── trash.svg │ │ ├── underline.svg │ │ ├── undo.svg │ │ ├── unlink.svg │ │ ├── upload.svg │ │ ├── user.svg │ │ ├── users.svg │ │ ├── volume-high.svg │ │ ├── volume-low.svg │ │ ├── volume-medium.svg │ │ ├── volume.svg │ │ ├── warning.svg │ │ └── wheelchair.svg ├── material-design-icons.font │ ├── .gitignore │ ├── Makefile │ ├── config.yml │ ├── dump.svgo.yml │ ├── font │ │ ├── material-design-icons.eot │ │ ├── material-design-icons.svg │ │ ├── material-design-icons.ttf │ │ └── material-design-icons.woff │ ├── package.json │ └── src │ │ ├── original │ │ └── material.svg │ │ └── svg │ │ ├── ac_unit.svg │ │ ├── access_alarm.svg │ │ ├── access_alarms.svg │ │ ├── access_time.svg │ │ ├── accessibility.svg │ │ ├── accessible.svg │ │ ├── account_balance.svg │ │ ├── account_balance_wallet.svg │ │ ├── account_box.svg │ │ ├── account_circle.svg │ │ ├── adb.svg │ │ ├── add.svg │ │ ├── add_a_photo.svg │ │ ├── add_alarm.svg │ │ ├── add_alert.svg │ │ ├── add_box.svg │ │ ├── add_circle.svg │ │ ├── add_circle_outline.svg │ │ ├── add_location.svg │ │ ├── add_shopping_cart.svg │ │ ├── add_to_photos.svg │ │ ├── add_to_queue.svg │ │ ├── adjust.svg │ │ ├── airline_seat_flat.svg │ │ ├── airline_seat_flat_angled.svg │ │ ├── airline_seat_individual_suite.svg │ │ ├── airline_seat_legroom_extra.svg │ │ ├── airline_seat_legroom_normal.svg │ │ ├── airline_seat_legroom_reduced.svg │ │ ├── airline_seat_recline_extra.svg │ │ ├── airline_seat_recline_normal.svg │ │ ├── airplanemode_active.svg │ │ ├── airplanemode_inactive.svg │ │ ├── airplay.svg │ │ ├── airport_shuttle.svg │ │ ├── alarm.svg │ │ ├── alarm_add.svg │ │ ├── alarm_off.svg │ │ ├── alarm_on.svg │ │ ├── album.svg │ │ ├── all_inclusive.svg │ │ ├── all_out.svg │ │ ├── android.svg │ │ ├── announcement.svg │ │ ├── apps.svg │ │ ├── archive.svg │ │ ├── arrow_back.svg │ │ ├── arrow_downward.svg │ │ ├── arrow_drop_down.svg │ │ ├── arrow_drop_down_circle.svg │ │ ├── arrow_drop_up.svg │ │ ├── arrow_forward.svg │ │ ├── arrow_upward.svg │ │ ├── art_track.svg │ │ ├── aspect_ratio.svg │ │ ├── assessment.svg │ │ ├── assignment.svg │ │ ├── assignment_ind.svg │ │ ├── assignment_late.svg │ │ ├── assignment_return.svg │ │ ├── assignment_returned.svg │ │ ├── assignment_turned_in.svg │ │ ├── assistant.svg │ │ ├── assistant_photo.svg │ │ ├── attach_file.svg │ │ ├── attach_money.svg │ │ ├── attachment.svg │ │ ├── audiotrack.svg │ │ ├── autorenew.svg │ │ ├── av_timer.svg │ │ ├── backspace.svg │ │ ├── backup.svg │ │ ├── battery_alert.svg │ │ ├── battery_charging_full.svg │ │ ├── battery_full.svg │ │ ├── battery_std.svg │ │ ├── battery_unknown.svg │ │ ├── beach_access.svg │ │ ├── beenhere.svg │ │ ├── block.svg │ │ ├── bluetooth.svg │ │ ├── bluetooth_audio.svg │ │ ├── bluetooth_connected.svg │ │ ├── bluetooth_disabled.svg │ │ ├── bluetooth_searching.svg │ │ ├── blur_circular.svg │ │ ├── blur_linear.svg │ │ ├── blur_off.svg │ │ ├── blur_on.svg │ │ ├── book.svg │ │ ├── bookmark.svg │ │ ├── bookmark_border.svg │ │ ├── border_all.svg │ │ ├── border_bottom.svg │ │ ├── border_clear.svg │ │ ├── border_color.svg │ │ ├── border_horizontal.svg │ │ ├── border_inner.svg │ │ ├── border_left.svg │ │ ├── border_outer.svg │ │ ├── border_right.svg │ │ ├── border_style.svg │ │ ├── border_top.svg │ │ ├── border_vertical.svg │ │ ├── branding_watermark.svg │ │ ├── brightness_1.svg │ │ ├── brightness_2.svg │ │ ├── brightness_3.svg │ │ ├── brightness_4.svg │ │ ├── brightness_5.svg │ │ ├── brightness_6.svg │ │ ├── brightness_7.svg │ │ ├── brightness_auto.svg │ │ ├── brightness_high.svg │ │ ├── brightness_low.svg │ │ ├── brightness_medium.svg │ │ ├── broken_image.svg │ │ ├── brush.svg │ │ ├── bubble_chart.svg │ │ ├── bug_report.svg │ │ ├── build.svg │ │ ├── burst_mode.svg │ │ ├── business.svg │ │ ├── business_center.svg │ │ ├── cached.svg │ │ ├── cake.svg │ │ ├── call.svg │ │ ├── call_end.svg │ │ ├── call_made.svg │ │ ├── call_merge.svg │ │ ├── call_missed.svg │ │ ├── call_missed_outgoing.svg │ │ ├── call_received.svg │ │ ├── call_split.svg │ │ ├── call_to_action.svg │ │ ├── camera.svg │ │ ├── camera_alt.svg │ │ ├── camera_enhance.svg │ │ ├── camera_front.svg │ │ ├── camera_rear.svg │ │ ├── camera_roll.svg │ │ ├── cancel.svg │ │ ├── card_giftcard.svg │ │ ├── card_membership.svg │ │ ├── card_travel.svg │ │ ├── casino.svg │ │ ├── cast.svg │ │ ├── cast_connected.svg │ │ ├── center_focus_strong.svg │ │ ├── center_focus_weak.svg │ │ ├── change_history.svg │ │ ├── chat.svg │ │ ├── chat_bubble.svg │ │ ├── chat_bubble_outline.svg │ │ ├── check.svg │ │ ├── check_box.svg │ │ ├── check_box_outline_blank.svg │ │ ├── check_circle.svg │ │ ├── chevron_left.svg │ │ ├── chevron_right.svg │ │ ├── child_care.svg │ │ ├── child_friendly.svg │ │ ├── chrome_reader_mode.svg │ │ ├── class.svg │ │ ├── clear.svg │ │ ├── clear_all.svg │ │ ├── close.svg │ │ ├── closed_caption.svg │ │ ├── cloud.svg │ │ ├── cloud_circle.svg │ │ ├── cloud_done.svg │ │ ├── cloud_download.svg │ │ ├── cloud_off.svg │ │ ├── cloud_queue.svg │ │ ├── cloud_upload.svg │ │ ├── code.svg │ │ ├── collections.svg │ │ ├── collections_bookmark.svg │ │ ├── color_lens.svg │ │ ├── colorize.svg │ │ ├── comment.svg │ │ ├── compare.svg │ │ ├── compare_arrows.svg │ │ ├── computer.svg │ │ ├── confirmation_number.svg │ │ ├── contact_mail.svg │ │ ├── contact_phone.svg │ │ ├── contacts.svg │ │ ├── content_copy.svg │ │ ├── content_cut.svg │ │ ├── content_paste.svg │ │ ├── control_point.svg │ │ ├── control_point_duplicate.svg │ │ ├── copyright.svg │ │ ├── create.svg │ │ ├── create_new_folder.svg │ │ ├── credit_card.svg │ │ ├── crop.svg │ │ ├── crop_16_9.svg │ │ ├── crop_3_2.svg │ │ ├── crop_5_4.svg │ │ ├── crop_7_5.svg │ │ ├── crop_din.svg │ │ ├── crop_free.svg │ │ ├── crop_landscape.svg │ │ ├── crop_original.svg │ │ ├── crop_portrait.svg │ │ ├── crop_rotate.svg │ │ ├── crop_square.svg │ │ ├── dashboard.svg │ │ ├── data_usage.svg │ │ ├── date_range.svg │ │ ├── dehaze.svg │ │ ├── delete.svg │ │ ├── delete_forever.svg │ │ ├── delete_sweep.svg │ │ ├── description.svg │ │ ├── desktop_mac.svg │ │ ├── desktop_windows.svg │ │ ├── details.svg │ │ ├── developer_board.svg │ │ ├── developer_mode.svg │ │ ├── device_hub.svg │ │ ├── devices.svg │ │ ├── devices_other.svg │ │ ├── dialer_sip.svg │ │ ├── dialpad.svg │ │ ├── directions.svg │ │ ├── directions_bike.svg │ │ ├── directions_boat.svg │ │ ├── directions_bus.svg │ │ ├── directions_car.svg │ │ ├── directions_railway.svg │ │ ├── directions_run.svg │ │ ├── directions_subway.svg │ │ ├── directions_transit.svg │ │ ├── directions_walk.svg │ │ ├── disc_full.svg │ │ ├── dns.svg │ │ ├── do_not_disturb.svg │ │ ├── do_not_disturb_alt.svg │ │ ├── do_not_disturb_off.svg │ │ ├── do_not_disturb_on.svg │ │ ├── dock.svg │ │ ├── domain.svg │ │ ├── done.svg │ │ ├── done_all.svg │ │ ├── donut_large.svg │ │ ├── donut_small.svg │ │ ├── drafts.svg │ │ ├── drag_handle.svg │ │ ├── drive_eta.svg │ │ ├── dvr.svg │ │ ├── edit.svg │ │ ├── edit_location.svg │ │ ├── eject.svg │ │ ├── email.svg │ │ ├── enhanced_encryption.svg │ │ ├── equalizer.svg │ │ ├── error.svg │ │ ├── error_outline.svg │ │ ├── euro_symbol.svg │ │ ├── ev_station.svg │ │ ├── event.svg │ │ ├── event_available.svg │ │ ├── event_busy.svg │ │ ├── event_note.svg │ │ ├── event_seat.svg │ │ ├── exit_to_app.svg │ │ ├── expand_less.svg │ │ ├── expand_more.svg │ │ ├── explicit.svg │ │ ├── explore.svg │ │ ├── exposure.svg │ │ ├── exposure_neg_1.svg │ │ ├── exposure_neg_2.svg │ │ ├── exposure_plus_1.svg │ │ ├── exposure_plus_2.svg │ │ ├── exposure_zero.svg │ │ ├── extension.svg │ │ ├── face.svg │ │ ├── fast_forward.svg │ │ ├── fast_rewind.svg │ │ ├── favorite.svg │ │ ├── favorite_border.svg │ │ ├── featured_play_list.svg │ │ ├── featured_video.svg │ │ ├── feedback.svg │ │ ├── fiber_dvr.svg │ │ ├── fiber_manual_record.svg │ │ ├── fiber_new.svg │ │ ├── fiber_pin.svg │ │ ├── fiber_smart_record.svg │ │ ├── file_download.svg │ │ ├── file_upload.svg │ │ ├── filter.svg │ │ ├── filter_1.svg │ │ ├── filter_2.svg │ │ ├── filter_3.svg │ │ ├── filter_4.svg │ │ ├── filter_5.svg │ │ ├── filter_6.svg │ │ ├── filter_7.svg │ │ ├── filter_8.svg │ │ ├── filter_9.svg │ │ ├── filter_9_plus.svg │ │ ├── filter_b_and_w.svg │ │ ├── filter_center_focus.svg │ │ ├── filter_drama.svg │ │ ├── filter_frames.svg │ │ ├── filter_hdr.svg │ │ ├── filter_list.svg │ │ ├── filter_none.svg │ │ ├── filter_tilt_shift.svg │ │ ├── filter_vintage.svg │ │ ├── find_in_page.svg │ │ ├── find_replace.svg │ │ ├── fingerprint.svg │ │ ├── first_page.svg │ │ ├── fitness_center.svg │ │ ├── flag.svg │ │ ├── flare.svg │ │ ├── flash_auto.svg │ │ ├── flash_off.svg │ │ ├── flash_on.svg │ │ ├── flight.svg │ │ ├── flight_land.svg │ │ ├── flight_takeoff.svg │ │ ├── flip.svg │ │ ├── flip_to_back.svg │ │ ├── flip_to_front.svg │ │ ├── folder.svg │ │ ├── folder_open.svg │ │ ├── folder_shared.svg │ │ ├── folder_special.svg │ │ ├── font_download.svg │ │ ├── format_align_center.svg │ │ ├── format_align_justify.svg │ │ ├── format_align_left.svg │ │ ├── format_align_right.svg │ │ ├── format_bold.svg │ │ ├── format_clear.svg │ │ ├── format_color_fill.svg │ │ ├── format_color_reset.svg │ │ ├── format_color_text.svg │ │ ├── format_indent_decrease.svg │ │ ├── format_indent_increase.svg │ │ ├── format_italic.svg │ │ ├── format_line_spacing.svg │ │ ├── format_list_bulleted.svg │ │ ├── format_list_numbered.svg │ │ ├── format_paint.svg │ │ ├── format_quote.svg │ │ ├── format_shapes.svg │ │ ├── format_size.svg │ │ ├── format_strikethrough.svg │ │ ├── format_textdirection_l_to_r.svg │ │ ├── format_textdirection_r_to_l.svg │ │ ├── format_underlined.svg │ │ ├── forum.svg │ │ ├── forward.svg │ │ ├── forward_10.svg │ │ ├── forward_30.svg │ │ ├── forward_5.svg │ │ ├── free_breakfast.svg │ │ ├── fullscreen.svg │ │ ├── fullscreen_exit.svg │ │ ├── functions.svg │ │ ├── g_translate.svg │ │ ├── gamepad.svg │ │ ├── games.svg │ │ ├── gavel.svg │ │ ├── gesture.svg │ │ ├── get_app.svg │ │ ├── gif.svg │ │ ├── glyph__f2296.svg │ │ ├── glyph__f2298.svg │ │ ├── glyph__f2300.svg │ │ ├── glyph__f2302.svg │ │ ├── glyph__f2304.svg │ │ ├── glyph__f2306.svg │ │ ├── glyph__f2308.svg │ │ ├── glyph__f2310.svg │ │ ├── glyph__f2312.svg │ │ ├── glyph__f2314.svg │ │ ├── glyph__f2316.svg │ │ ├── glyph__f2318.svg │ │ ├── glyph__f2320.svg │ │ ├── glyph__f2322.svg │ │ ├── glyph__f2324.svg │ │ ├── glyph__f2326.svg │ │ ├── glyph__f2328.svg │ │ ├── glyph__f2330.svg │ │ ├── glyph__f2332.svg │ │ ├── glyph__f2334.svg │ │ ├── glyph__f2336.svg │ │ ├── glyph__f2338.svg │ │ ├── glyph__f2340.svg │ │ ├── glyph__f2342.svg │ │ ├── glyph__f2344.svg │ │ ├── glyph__f2346.svg │ │ ├── glyph__f2348.svg │ │ ├── glyph__f2350.svg │ │ ├── glyph__f2352.svg │ │ ├── glyph__f2354.svg │ │ ├── glyph__f2356.svg │ │ ├── glyph__f2358.svg │ │ ├── glyph__f2360.svg │ │ ├── glyph__f2362.svg │ │ ├── glyph__f2364.svg │ │ ├── glyph__f2366.svg │ │ ├── glyph__f2368.svg │ │ ├── goat.svg │ │ ├── golf_course.svg │ │ ├── gps_fixed.svg │ │ ├── gps_not_fixed.svg │ │ ├── gps_off.svg │ │ ├── grade.svg │ │ ├── gradient.svg │ │ ├── grain.svg │ │ ├── graphic_eq.svg │ │ ├── grid_off.svg │ │ ├── grid_on.svg │ │ ├── group.svg │ │ ├── group_add.svg │ │ ├── group_work.svg │ │ ├── hd.svg │ │ ├── hdr_off.svg │ │ ├── hdr_on.svg │ │ ├── hdr_strong.svg │ │ ├── hdr_weak.svg │ │ ├── headset.svg │ │ ├── headset_mic.svg │ │ ├── healing.svg │ │ ├── hearing.svg │ │ ├── help.svg │ │ ├── help_outline.svg │ │ ├── high_quality.svg │ │ ├── highlight.svg │ │ ├── highlight_off.svg │ │ ├── history.svg │ │ ├── home.svg │ │ ├── hot_tub.svg │ │ ├── hotel.svg │ │ ├── hourglass_empty.svg │ │ ├── hourglass_full.svg │ │ ├── http.svg │ │ ├── https.svg │ │ ├── image.svg │ │ ├── image_aspect_ratio.svg │ │ ├── import_contacts.svg │ │ ├── import_export.svg │ │ ├── important_devices.svg │ │ ├── inbox.svg │ │ ├── indeterminate_check_box.svg │ │ ├── info.svg │ │ ├── info_outline.svg │ │ ├── input.svg │ │ ├── insert_chart.svg │ │ ├── insert_comment.svg │ │ ├── insert_drive_file.svg │ │ ├── insert_emoticon.svg │ │ ├── insert_invitation.svg │ │ ├── insert_link.svg │ │ ├── insert_photo.svg │ │ ├── invert_colors.svg │ │ ├── invert_colors_off.svg │ │ ├── iso.svg │ │ ├── keyboard.svg │ │ ├── keyboard_arrow_down.svg │ │ ├── keyboard_arrow_left.svg │ │ ├── keyboard_arrow_right.svg │ │ ├── keyboard_arrow_up.svg │ │ ├── keyboard_backspace.svg │ │ ├── keyboard_capslock.svg │ │ ├── keyboard_hide.svg │ │ ├── keyboard_return.svg │ │ ├── keyboard_tab.svg │ │ ├── keyboard_voice.svg │ │ ├── kitchen.svg │ │ ├── label.svg │ │ ├── label_outline.svg │ │ ├── landscape.svg │ │ ├── language.svg │ │ ├── laptop.svg │ │ ├── laptop_chromebook.svg │ │ ├── laptop_mac.svg │ │ ├── laptop_windows.svg │ │ ├── last_page.svg │ │ ├── launch.svg │ │ ├── layers.svg │ │ ├── layers_clear.svg │ │ ├── leak_add.svg │ │ ├── leak_remove.svg │ │ ├── lens.svg │ │ ├── library_add.svg │ │ ├── library_books.svg │ │ ├── library_music.svg │ │ ├── lightbulb_outline.svg │ │ ├── line_style.svg │ │ ├── line_weight.svg │ │ ├── linear_scale.svg │ │ ├── link.svg │ │ ├── linked_camera.svg │ │ ├── list.svg │ │ ├── live_help.svg │ │ ├── live_tv.svg │ │ ├── local_activity.svg │ │ ├── local_airport.svg │ │ ├── local_atm.svg │ │ ├── local_bar.svg │ │ ├── local_cafe.svg │ │ ├── local_car_wash.svg │ │ ├── local_convenience_store.svg │ │ ├── local_dining.svg │ │ ├── local_drink.svg │ │ ├── local_florist.svg │ │ ├── local_gas_station.svg │ │ ├── local_grocery_store.svg │ │ ├── local_hospital.svg │ │ ├── local_hotel.svg │ │ ├── local_laundry_service.svg │ │ ├── local_library.svg │ │ ├── local_mall.svg │ │ ├── local_movies.svg │ │ ├── local_offer.svg │ │ ├── local_parking.svg │ │ ├── local_pharmacy.svg │ │ ├── local_phone.svg │ │ ├── local_pizza.svg │ │ ├── local_play.svg │ │ ├── local_post_office.svg │ │ ├── local_printshop.svg │ │ ├── local_see.svg │ │ ├── local_shipping.svg │ │ ├── local_taxi.svg │ │ ├── location_city.svg │ │ ├── location_disabled.svg │ │ ├── location_off.svg │ │ ├── location_on.svg │ │ ├── location_searching.svg │ │ ├── lock.svg │ │ ├── lock_open.svg │ │ ├── lock_outline.svg │ │ ├── looks.svg │ │ ├── looks_3.svg │ │ ├── looks_4.svg │ │ ├── looks_5.svg │ │ ├── looks_6.svg │ │ ├── looks_one.svg │ │ ├── looks_two.svg │ │ ├── loop.svg │ │ ├── loupe.svg │ │ ├── low_priority.svg │ │ ├── loyalty.svg │ │ ├── mail.svg │ │ ├── mail_outline.svg │ │ ├── map.svg │ │ ├── markunread.svg │ │ ├── markunread_mailbox.svg │ │ ├── memory.svg │ │ ├── menu.svg │ │ ├── merge_type.svg │ │ ├── message.svg │ │ ├── mic.svg │ │ ├── mic_none.svg │ │ ├── mic_off.svg │ │ ├── mms.svg │ │ ├── mode_comment.svg │ │ ├── mode_edit.svg │ │ ├── monetization_on.svg │ │ ├── money_off.svg │ │ ├── monochrome_photos.svg │ │ ├── mood.svg │ │ ├── mood_bad.svg │ │ ├── more.svg │ │ ├── more_horiz.svg │ │ ├── more_vert.svg │ │ ├── motorcycle.svg │ │ ├── mouse.svg │ │ ├── move_to_inbox.svg │ │ ├── movie.svg │ │ ├── movie_creation.svg │ │ ├── movie_filter.svg │ │ ├── multiline_chart.svg │ │ ├── music_note.svg │ │ ├── music_video.svg │ │ ├── my_location.svg │ │ ├── nature.svg │ │ ├── nature_people.svg │ │ ├── navigate_before.svg │ │ ├── navigate_next.svg │ │ ├── navigation.svg │ │ ├── near_me.svg │ │ ├── network_cell.svg │ │ ├── network_check.svg │ │ ├── network_locked.svg │ │ ├── network_wifi.svg │ │ ├── new_releases.svg │ │ ├── next_week.svg │ │ ├── nfc.svg │ │ ├── no_encryption.svg │ │ ├── no_sim.svg │ │ ├── not_interested.svg │ │ ├── note.svg │ │ ├── note_add.svg │ │ ├── notifications.svg │ │ ├── notifications_active.svg │ │ ├── notifications_none.svg │ │ ├── notifications_off.svg │ │ ├── notifications_paused.svg │ │ ├── offline_pin.svg │ │ ├── ondemand_video.svg │ │ ├── opacity.svg │ │ ├── open_in_browser.svg │ │ ├── open_in_new.svg │ │ ├── open_with.svg │ │ ├── pages.svg │ │ ├── pageview.svg │ │ ├── palette.svg │ │ ├── pan_tool.svg │ │ ├── panorama.svg │ │ ├── panorama_fish_eye.svg │ │ ├── panorama_horizontal.svg │ │ ├── panorama_vertical.svg │ │ ├── panorama_wide_angle.svg │ │ ├── party_mode.svg │ │ ├── pause.svg │ │ ├── pause_circle_filled.svg │ │ ├── pause_circle_outline.svg │ │ ├── payment.svg │ │ ├── people.svg │ │ ├── people_outline.svg │ │ ├── perm_camera_mic.svg │ │ ├── perm_contact_calendar.svg │ │ ├── perm_data_setting.svg │ │ ├── perm_device_information.svg │ │ ├── perm_identity.svg │ │ ├── perm_media.svg │ │ ├── perm_phone_msg.svg │ │ ├── perm_scan_wifi.svg │ │ ├── person.svg │ │ ├── person_add.svg │ │ ├── person_outline.svg │ │ ├── person_pin.svg │ │ ├── person_pin_circle.svg │ │ ├── personal_video.svg │ │ ├── pets.svg │ │ ├── phone.svg │ │ ├── phone_android.svg │ │ ├── phone_bluetooth_speaker.svg │ │ ├── phone_forwarded.svg │ │ ├── phone_in_talk.svg │ │ ├── phone_iphone.svg │ │ ├── phone_locked.svg │ │ ├── phone_missed.svg │ │ ├── phone_paused.svg │ │ ├── phonelink.svg │ │ ├── phonelink_erase.svg │ │ ├── phonelink_lock.svg │ │ ├── phonelink_off.svg │ │ ├── phonelink_ring.svg │ │ ├── phonelink_setup.svg │ │ ├── photo.svg │ │ ├── photo_album.svg │ │ ├── photo_camera.svg │ │ ├── photo_filter.svg │ │ ├── photo_library.svg │ │ ├── photo_size_select_actual.svg │ │ ├── photo_size_select_large.svg │ │ ├── photo_size_select_small.svg │ │ ├── picture_as_pdf.svg │ │ ├── picture_in_picture.svg │ │ ├── picture_in_picture_alt.svg │ │ ├── pie_chart.svg │ │ ├── pie_chart_outlined.svg │ │ ├── pin_drop.svg │ │ ├── place.svg │ │ ├── play_arrow.svg │ │ ├── play_circle_filled.svg │ │ ├── play_circle_outline.svg │ │ ├── play_for_work.svg │ │ ├── playlist_add.svg │ │ ├── playlist_add_check.svg │ │ ├── playlist_play.svg │ │ ├── plus_one.svg │ │ ├── poll.svg │ │ ├── polymer.svg │ │ ├── pool.svg │ │ ├── portable_wifi_off.svg │ │ ├── portrait.svg │ │ ├── power.svg │ │ ├── power_input.svg │ │ ├── power_settings_new.svg │ │ ├── pregnant_woman.svg │ │ ├── present_to_all.svg │ │ ├── print.svg │ │ ├── priority_high.svg │ │ ├── public.svg │ │ ├── publish.svg │ │ ├── query_builder.svg │ │ ├── question_answer.svg │ │ ├── queue.svg │ │ ├── queue_music.svg │ │ ├── queue_play_next.svg │ │ ├── radio.svg │ │ ├── radio_button_checked.svg │ │ ├── radio_button_unchecked.svg │ │ ├── rate_review.svg │ │ ├── receipt.svg │ │ ├── recent_actors.svg │ │ ├── record_voice_over.svg │ │ ├── redeem.svg │ │ ├── redo.svg │ │ ├── refresh.svg │ │ ├── remove.svg │ │ ├── remove_circle.svg │ │ ├── remove_circle_outline.svg │ │ ├── remove_from_queue.svg │ │ ├── remove_red_eye.svg │ │ ├── remove_shopping_cart.svg │ │ ├── reorder.svg │ │ ├── repeat.svg │ │ ├── repeat_one.svg │ │ ├── replay.svg │ │ ├── replay_10.svg │ │ ├── replay_30.svg │ │ ├── replay_5.svg │ │ ├── reply.svg │ │ ├── reply_all.svg │ │ ├── report.svg │ │ ├── report_problem.svg │ │ ├── restaurant.svg │ │ ├── restaurant_menu.svg │ │ ├── restore.svg │ │ ├── restore_page.svg │ │ ├── ring_volume.svg │ │ ├── room.svg │ │ ├── room_service.svg │ │ ├── rotate_90_degrees_ccw.svg │ │ ├── rotate_left.svg │ │ ├── rotate_right.svg │ │ ├── rounded_corner.svg │ │ ├── router.svg │ │ ├── rowing.svg │ │ ├── rss_feed.svg │ │ ├── rv_hookup.svg │ │ ├── satellite.svg │ │ ├── save.svg │ │ ├── scanner.svg │ │ ├── schedule.svg │ │ ├── school.svg │ │ ├── screen_lock_landscape.svg │ │ ├── screen_lock_portrait.svg │ │ ├── screen_lock_rotation.svg │ │ ├── screen_rotation.svg │ │ ├── screen_share.svg │ │ ├── sd_card.svg │ │ ├── sd_storage.svg │ │ ├── search.svg │ │ ├── security.svg │ │ ├── select_all.svg │ │ ├── send.svg │ │ ├── sentiment_dissatisfied.svg │ │ ├── sentiment_neutral.svg │ │ ├── sentiment_satisfied.svg │ │ ├── sentiment_very_dissatisfied.svg │ │ ├── sentiment_very_satisfied.svg │ │ ├── settings.svg │ │ ├── settings_applications.svg │ │ ├── settings_backup_restore.svg │ │ ├── settings_bluetooth.svg │ │ ├── settings_brightness.svg │ │ ├── settings_cell.svg │ │ ├── settings_ethernet.svg │ │ ├── settings_input_antenna.svg │ │ ├── settings_input_component.svg │ │ ├── settings_input_composite.svg │ │ ├── settings_input_hdmi.svg │ │ ├── settings_input_svideo.svg │ │ ├── settings_overscan.svg │ │ ├── settings_phone.svg │ │ ├── settings_power.svg │ │ ├── settings_remote.svg │ │ ├── settings_system_daydream.svg │ │ ├── settings_voice.svg │ │ ├── share.svg │ │ ├── shop.svg │ │ ├── shop_two.svg │ │ ├── shopping_basket.svg │ │ ├── shopping_cart.svg │ │ ├── short_text.svg │ │ ├── show_chart.svg │ │ ├── shuffle.svg │ │ ├── signal_cellular_4_bar.svg │ │ ├── signal_cellular_connected_no_internet_4_bar.svg │ │ ├── signal_cellular_no_sim.svg │ │ ├── signal_cellular_null.svg │ │ ├── signal_cellular_off.svg │ │ ├── signal_wifi_4_bar.svg │ │ ├── signal_wifi_4_bar_lock.svg │ │ ├── signal_wifi_off.svg │ │ ├── sim_card.svg │ │ ├── sim_card_alert.svg │ │ ├── skip_next.svg │ │ ├── skip_previous.svg │ │ ├── slideshow.svg │ │ ├── slow_motion_video.svg │ │ ├── smartphone.svg │ │ ├── smoke_free.svg │ │ ├── smoking_rooms.svg │ │ ├── sms.svg │ │ ├── sms_failed.svg │ │ ├── snooze.svg │ │ ├── sort.svg │ │ ├── sort_by_alpha.svg │ │ ├── spa.svg │ │ ├── space_bar.svg │ │ ├── speaker.svg │ │ ├── speaker_group.svg │ │ ├── speaker_notes.svg │ │ ├── speaker_notes_off.svg │ │ ├── speaker_phone.svg │ │ ├── spellcheck.svg │ │ ├── star.svg │ │ ├── star_border.svg │ │ ├── star_half.svg │ │ ├── stars.svg │ │ ├── stay_current_landscape.svg │ │ ├── stay_current_portrait.svg │ │ ├── stay_primary_landscape.svg │ │ ├── stay_primary_portrait.svg │ │ ├── stop.svg │ │ ├── stop_screen_share.svg │ │ ├── storage.svg │ │ ├── store.svg │ │ ├── store_mall_directory.svg │ │ ├── straighten.svg │ │ ├── streetview.svg │ │ ├── strikethrough_s.svg │ │ ├── style.svg │ │ ├── subdirectory_arrow_left.svg │ │ ├── subdirectory_arrow_right.svg │ │ ├── subject.svg │ │ ├── subscriptions.svg │ │ ├── subtitles.svg │ │ ├── subway.svg │ │ ├── supervisor_account.svg │ │ ├── surround_sound.svg │ │ ├── swap_calls.svg │ │ ├── swap_horiz.svg │ │ ├── swap_vert.svg │ │ ├── swap_vertical_circle.svg │ │ ├── switch_camera.svg │ │ ├── switch_video.svg │ │ ├── sync.svg │ │ ├── sync_disabled.svg │ │ ├── sync_problem.svg │ │ ├── system_update.svg │ │ ├── system_update_alt.svg │ │ ├── tab.svg │ │ ├── tab_unselected.svg │ │ ├── tablet.svg │ │ ├── tablet_android.svg │ │ ├── tablet_mac.svg │ │ ├── tag_faces.svg │ │ ├── tap_and_play.svg │ │ ├── terrain.svg │ │ ├── text_fields.svg │ │ ├── text_format.svg │ │ ├── textsms.svg │ │ ├── texture.svg │ │ ├── theaters.svg │ │ ├── threedee_rotation.svg │ │ ├── thumb_down.svg │ │ ├── thumb_up.svg │ │ ├── thumbs_up_down.svg │ │ ├── time_to_leave.svg │ │ ├── timelapse.svg │ │ ├── timeline.svg │ │ ├── timer.svg │ │ ├── timer_10.svg │ │ ├── timer_3.svg │ │ ├── timer_off.svg │ │ ├── title.svg │ │ ├── toc.svg │ │ ├── today.svg │ │ ├── toll.svg │ │ ├── tonality.svg │ │ ├── touch_app.svg │ │ ├── toys.svg │ │ ├── track_changes.svg │ │ ├── traffic.svg │ │ ├── train.svg │ │ ├── tram.svg │ │ ├── transfer_within_a_station.svg │ │ ├── transform.svg │ │ ├── translate.svg │ │ ├── trending_down.svg │ │ ├── trending_flat.svg │ │ ├── trending_up.svg │ │ ├── tune.svg │ │ ├── turned_in.svg │ │ ├── turned_in_not.svg │ │ ├── tv.svg │ │ ├── unarchive.svg │ │ ├── undo.svg │ │ ├── unfold_less.svg │ │ ├── unfold_more.svg │ │ ├── update.svg │ │ ├── usb.svg │ │ ├── verified_user.svg │ │ ├── vertical_align_bottom.svg │ │ ├── vertical_align_center.svg │ │ ├── vertical_align_top.svg │ │ ├── vibration.svg │ │ ├── video_call.svg │ │ ├── video_label.svg │ │ ├── video_library.svg │ │ ├── videocam.svg │ │ ├── videocam_off.svg │ │ ├── videogame_asset.svg │ │ ├── view_agenda.svg │ │ ├── view_array.svg │ │ ├── view_carousel.svg │ │ ├── view_column.svg │ │ ├── view_comfy.svg │ │ ├── view_compact.svg │ │ ├── view_day.svg │ │ ├── view_headline.svg │ │ ├── view_list.svg │ │ ├── view_module.svg │ │ ├── view_quilt.svg │ │ ├── view_stream.svg │ │ ├── view_week.svg │ │ ├── vignette.svg │ │ ├── visibility.svg │ │ ├── visibility_off.svg │ │ ├── voice_chat.svg │ │ ├── voicemail.svg │ │ ├── volume_down.svg │ │ ├── volume_mute.svg │ │ ├── volume_off.svg │ │ ├── volume_up.svg │ │ ├── vpn_key.svg │ │ ├── vpn_lock.svg │ │ ├── wallpaper.svg │ │ ├── warning.svg │ │ ├── watch.svg │ │ ├── watch_later.svg │ │ ├── wb_auto.svg │ │ ├── wb_cloudy.svg │ │ ├── wb_incandescent.svg │ │ ├── wb_iridescent.svg │ │ ├── wb_sunny.svg │ │ ├── wc.svg │ │ ├── web.svg │ │ ├── web_asset.svg │ │ ├── weekend.svg │ │ ├── whatshot.svg │ │ ├── widgets.svg │ │ ├── wifi.svg │ │ ├── wifi_lock.svg │ │ ├── wifi_tethering.svg │ │ ├── work.svg │ │ ├── wrap_text.svg │ │ ├── youtube_searched_for.svg │ │ ├── zoom_in.svg │ │ ├── zoom_out.svg │ │ └── zoom_out_map.svg ├── octicons.font │ ├── DEVELOPMENT.md │ ├── Makefile │ ├── README.md │ ├── config.yml │ ├── configFromSvg.py │ ├── dump.svgo.yml │ ├── font │ │ ├── octicons.eot │ │ ├── octicons.svg │ │ ├── octicons.ttf │ │ └── octicons.woff │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── svg │ │ ├── alert.svg │ │ ├── archive.svg │ │ ├── arrow-both.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── arrow-small-down.svg │ │ ├── arrow-small-left.svg │ │ ├── arrow-small-right.svg │ │ ├── arrow-small-up.svg │ │ ├── arrow-up.svg │ │ ├── beaker.svg │ │ ├── bell.svg │ │ ├── bold.svg │ │ ├── book.svg │ │ ├── bookmark.svg │ │ ├── briefcase.svg │ │ ├── broadcast.svg │ │ ├── browser.svg │ │ ├── bug.svg │ │ ├── calendar.svg │ │ ├── check.svg │ │ ├── checklist.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right.svg │ │ ├── chevron-up.svg │ │ ├── circle-slash.svg │ │ ├── circuit-board.svg │ │ ├── clippy.svg │ │ ├── clock.svg │ │ ├── cloud-download.svg │ │ ├── cloud-upload.svg │ │ ├── code.svg │ │ ├── comment-discussion.svg │ │ ├── comment.svg │ │ ├── credit-card.svg │ │ ├── dash.svg │ │ ├── dashboard.svg │ │ ├── database.svg │ │ ├── dependent.svg │ │ ├── desktop-download.svg │ │ ├── device-camera-video.svg │ │ ├── device-camera.svg │ │ ├── device-desktop.svg │ │ ├── device-mobile.svg │ │ ├── diff-added.svg │ │ ├── diff-ignored.svg │ │ ├── diff-modified.svg │ │ ├── diff-removed.svg │ │ ├── diff-renamed.svg │ │ ├── diff.svg │ │ ├── ellipsis.svg │ │ ├── eye-closed.svg │ │ ├── eye.svg │ │ ├── file-binary.svg │ │ ├── file-code.svg │ │ ├── file-directory.svg │ │ ├── file-media.svg │ │ ├── file-pdf.svg │ │ ├── file-submodule.svg │ │ ├── file-symlink-directory.svg │ │ ├── file-symlink-file.svg │ │ ├── file-zip.svg │ │ ├── file.svg │ │ ├── flame.svg │ │ ├── fold-down.svg │ │ ├── fold-up.svg │ │ ├── fold.svg │ │ ├── gear.svg │ │ ├── gift.svg │ │ ├── gist-secret.svg │ │ ├── gist.svg │ │ ├── git-branch.svg │ │ ├── git-commit.svg │ │ ├── git-compare.svg │ │ ├── git-merge.svg │ │ ├── git-pull-request.svg │ │ ├── github-action.svg │ │ ├── globe.svg │ │ ├── grabber.svg │ │ ├── graph.svg │ │ ├── heart-outline.svg │ │ ├── heart.svg │ │ ├── history.svg │ │ ├── home.svg │ │ ├── horizontal-rule.svg │ │ ├── hubot.svg │ │ ├── inbox.svg │ │ ├── infinity.svg │ │ ├── info.svg │ │ ├── internal-repo.svg │ │ ├── issue-closed.svg │ │ ├── issue-opened.svg │ │ ├── issue-reopened.svg │ │ ├── italic.svg │ │ ├── jersey.svg │ │ ├── kebab-horizontal.svg │ │ ├── kebab-vertical.svg │ │ ├── key.svg │ │ ├── keyboard.svg │ │ ├── law.svg │ │ ├── light-bulb.svg │ │ ├── line-arrow-down.svg │ │ ├── line-arrow-left.svg │ │ ├── line-arrow-right.svg │ │ ├── line-arrow-up.svg │ │ ├── link-external.svg │ │ ├── link.svg │ │ ├── list-ordered.svg │ │ ├── list-unordered.svg │ │ ├── location.svg │ │ ├── lock.svg │ │ ├── logo-gist.svg │ │ ├── logo-github.svg │ │ ├── mail-read.svg │ │ ├── mail.svg │ │ ├── mark-github.svg │ │ ├── markdown.svg │ │ ├── megaphone.svg │ │ ├── mention.svg │ │ ├── milestone.svg │ │ ├── mirror.svg │ │ ├── mortar-board.svg │ │ ├── mute.svg │ │ ├── no-newline.svg │ │ ├── north-star.svg │ │ ├── note.svg │ │ ├── octoface.svg │ │ ├── organization.svg │ │ ├── package.svg │ │ ├── paintcan.svg │ │ ├── pencil.svg │ │ ├── person.svg │ │ ├── pin.svg │ │ ├── play.svg │ │ ├── plug.svg │ │ ├── plus-small.svg │ │ ├── plus.svg │ │ ├── primitive-dot-stroke.svg │ │ ├── primitive-dot.svg │ │ ├── primitive-square.svg │ │ ├── project.svg │ │ ├── pulse.svg │ │ ├── question.svg │ │ ├── quote.svg │ │ ├── radio-tower.svg │ │ ├── reply.svg │ │ ├── repo-clone.svg │ │ ├── repo-force-push.svg │ │ ├── repo-forked.svg │ │ ├── repo-pull.svg │ │ ├── repo-push.svg │ │ ├── repo-template-private.svg │ │ ├── repo-template.svg │ │ ├── repo.svg │ │ ├── report.svg │ │ ├── request-changes.svg │ │ ├── rocket.svg │ │ ├── rss.svg │ │ ├── ruby.svg │ │ ├── saved.svg │ │ ├── screen-full.svg │ │ ├── screen-normal.svg │ │ ├── search.svg │ │ ├── server.svg │ │ ├── settings.svg │ │ ├── shield-check.svg │ │ ├── shield-lock.svg │ │ ├── shield-x.svg │ │ ├── shield.svg │ │ ├── sign-in.svg │ │ ├── sign-out.svg │ │ ├── skip.svg │ │ ├── smiley.svg │ │ ├── squirrel.svg │ │ ├── star.svg │ │ ├── stop.svg │ │ ├── sync.svg │ │ ├── tag.svg │ │ ├── tasklist.svg │ │ ├── telescope.svg │ │ ├── terminal.svg │ │ ├── text-size.svg │ │ ├── three-bars.svg │ │ ├── thumbsdown.svg │ │ ├── thumbsup.svg │ │ ├── tools.svg │ │ ├── trashcan.svg │ │ ├── triangle-down.svg │ │ ├── triangle-left.svg │ │ ├── triangle-right.svg │ │ ├── triangle-up.svg │ │ ├── unfold.svg │ │ ├── unmute.svg │ │ ├── unsaved.svg │ │ ├── unverified.svg │ │ ├── verified.svg │ │ ├── versions.svg │ │ ├── watch.svg │ │ ├── workflow-all.svg │ │ ├── workflow.svg │ │ ├── x.svg │ │ └── zap.svg │ │ ├── svg_fixed │ │ ├── alert.svg │ │ ├── archive.svg │ │ ├── arrow-both.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── arrow-small-down.svg │ │ ├── arrow-small-left.svg │ │ ├── arrow-small-right.svg │ │ ├── arrow-small-up.svg │ │ ├── arrow-up.svg │ │ ├── beaker.svg │ │ ├── bell.svg │ │ ├── bold.svg │ │ ├── book.svg │ │ ├── bookmark.svg │ │ ├── briefcase.svg │ │ ├── broadcast.svg │ │ ├── browser.svg │ │ ├── bug.svg │ │ ├── calendar.svg │ │ ├── check.svg │ │ ├── checklist.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right.svg │ │ ├── chevron-up.svg │ │ ├── circle-slash.svg │ │ ├── circuit-board.svg │ │ ├── clippy.svg │ │ ├── clock.svg │ │ ├── cloud-download.svg │ │ ├── cloud-upload.svg │ │ ├── code.svg │ │ ├── comment-discussion.svg │ │ ├── comment.svg │ │ ├── credit-card.svg │ │ ├── dash.svg │ │ ├── dashboard.svg │ │ ├── database.svg │ │ ├── dependent.svg │ │ ├── desktop-download.svg │ │ ├── device-camera-video.svg │ │ ├── device-camera.svg │ │ ├── device-desktop.svg │ │ ├── device-mobile.svg │ │ ├── diff-added.svg │ │ ├── diff-ignored.svg │ │ ├── diff-modified.svg │ │ ├── diff-removed.svg │ │ ├── diff-renamed.svg │ │ ├── diff.svg │ │ ├── ellipsis.svg │ │ ├── eye-closed.svg │ │ ├── eye.svg │ │ ├── file-binary.svg │ │ ├── file-code.svg │ │ ├── file-directory.svg │ │ ├── file-media.svg │ │ ├── file-pdf.svg │ │ ├── file-submodule.svg │ │ ├── file-symlink-directory.svg │ │ ├── file-symlink-file.svg │ │ ├── file-zip.svg │ │ ├── file.svg │ │ ├── flame.svg │ │ ├── fold-down.svg │ │ ├── fold-up.svg │ │ ├── fold.svg │ │ ├── gear.svg │ │ ├── gift.svg │ │ ├── gist-secret.svg │ │ ├── gist.svg │ │ ├── git-branch.svg │ │ ├── git-commit.svg │ │ ├── git-compare.svg │ │ ├── git-merge.svg │ │ ├── git-pull-request.svg │ │ ├── github-action.svg │ │ ├── globe.svg │ │ ├── grabber.svg │ │ ├── graph.svg │ │ ├── heart-outline.svg │ │ ├── heart.svg │ │ ├── history.svg │ │ ├── home.svg │ │ ├── horizontal-rule.svg │ │ ├── hubot.svg │ │ ├── inbox.svg │ │ ├── infinity.svg │ │ ├── info.svg │ │ ├── internal-repo.svg │ │ ├── issue-closed.svg │ │ ├── issue-opened.svg │ │ ├── issue-reopened.svg │ │ ├── italic.svg │ │ ├── jersey.svg │ │ ├── kebab-horizontal.svg │ │ ├── kebab-vertical.svg │ │ ├── key.svg │ │ ├── keyboard.svg │ │ ├── law.svg │ │ ├── light-bulb.svg │ │ ├── line-arrow-down.svg │ │ ├── line-arrow-left.svg │ │ ├── line-arrow-right.svg │ │ ├── line-arrow-up.svg │ │ ├── link-external.svg │ │ ├── link.svg │ │ ├── list-ordered.svg │ │ ├── list-unordered.svg │ │ ├── location.svg │ │ ├── lock.svg │ │ ├── logo-gist.svg │ │ ├── logo-github.svg │ │ ├── mail-read.svg │ │ ├── mail.svg │ │ ├── mark-github.svg │ │ ├── markdown.svg │ │ ├── megaphone.svg │ │ ├── mention.svg │ │ ├── milestone.svg │ │ ├── mirror.svg │ │ ├── mortar-board.svg │ │ ├── mute.svg │ │ ├── no-newline.svg │ │ ├── north-star.svg │ │ ├── note.svg │ │ ├── octoface.svg │ │ ├── organization.svg │ │ ├── package.svg │ │ ├── paintcan.svg │ │ ├── pencil.svg │ │ ├── person.svg │ │ ├── pin.svg │ │ ├── play.svg │ │ ├── plug.svg │ │ ├── plus-small.svg │ │ ├── plus.svg │ │ ├── primitive-dot-stroke.svg │ │ ├── primitive-dot.svg │ │ ├── primitive-square.svg │ │ ├── project.svg │ │ ├── pulse.svg │ │ ├── question.svg │ │ ├── quote.svg │ │ ├── radio-tower.svg │ │ ├── reply.svg │ │ ├── repo-clone.svg │ │ ├── repo-force-push.svg │ │ ├── repo-forked.svg │ │ ├── repo-pull.svg │ │ ├── repo-push.svg │ │ ├── repo-template-private.svg │ │ ├── repo-template.svg │ │ ├── repo.svg │ │ ├── report.svg │ │ ├── request-changes.svg │ │ ├── rocket.svg │ │ ├── rss.svg │ │ ├── ruby.svg │ │ ├── saved.svg │ │ ├── screen-full.svg │ │ ├── screen-normal.svg │ │ ├── search.svg │ │ ├── server.svg │ │ ├── settings.svg │ │ ├── shield-check.svg │ │ ├── shield-lock.svg │ │ ├── shield-x.svg │ │ ├── shield.svg │ │ ├── sign-in.svg │ │ ├── sign-out.svg │ │ ├── skip.svg │ │ ├── smiley.svg │ │ ├── squirrel.svg │ │ ├── star.svg │ │ ├── stop.svg │ │ ├── sync.svg │ │ ├── tag.svg │ │ ├── tasklist.svg │ │ ├── telescope.svg │ │ ├── terminal.svg │ │ ├── text-size.svg │ │ ├── three-bars.svg │ │ ├── thumbsdown.svg │ │ ├── thumbsup.svg │ │ ├── tools.svg │ │ ├── trashcan.svg │ │ ├── triangle-down.svg │ │ ├── triangle-left.svg │ │ ├── triangle-right.svg │ │ ├── triangle-up.svg │ │ ├── unfold.svg │ │ ├── unmute.svg │ │ ├── unsaved.svg │ │ ├── unverified.svg │ │ ├── verified.svg │ │ ├── versions.svg │ │ ├── watch.svg │ │ ├── workflow-all.svg │ │ ├── workflow.svg │ │ ├── x.svg │ │ └── zap.svg │ │ └── svg_orig │ │ ├── alert.svg │ │ ├── archive.svg │ │ ├── arrow-both.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── arrow-small-down.svg │ │ ├── arrow-small-left.svg │ │ ├── arrow-small-right.svg │ │ ├── arrow-small-up.svg │ │ ├── arrow-up.svg │ │ ├── beaker.svg │ │ ├── bell.svg │ │ ├── bold.svg │ │ ├── book.svg │ │ ├── bookmark.svg │ │ ├── briefcase.svg │ │ ├── broadcast.svg │ │ ├── browser.svg │ │ ├── bug.svg │ │ ├── calendar.svg │ │ ├── check.svg │ │ ├── checklist.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right.svg │ │ ├── chevron-up.svg │ │ ├── circle-slash.svg │ │ ├── circuit-board.svg │ │ ├── clippy.svg │ │ ├── clock.svg │ │ ├── cloud-download.svg │ │ ├── cloud-upload.svg │ │ ├── code.svg │ │ ├── comment-discussion.svg │ │ ├── comment.svg │ │ ├── credit-card.svg │ │ ├── dash.svg │ │ ├── dashboard.svg │ │ ├── database.svg │ │ ├── dependent.svg │ │ ├── desktop-download.svg │ │ ├── device-camera-video.svg │ │ ├── device-camera.svg │ │ ├── device-desktop.svg │ │ ├── device-mobile.svg │ │ ├── diff-added.svg │ │ ├── diff-ignored.svg │ │ ├── diff-modified.svg │ │ ├── diff-removed.svg │ │ ├── diff-renamed.svg │ │ ├── diff.svg │ │ ├── ellipsis.svg │ │ ├── eye-closed.svg │ │ ├── eye.svg │ │ ├── file-binary.svg │ │ ├── file-code.svg │ │ ├── file-directory.svg │ │ ├── file-media.svg │ │ ├── file-pdf.svg │ │ ├── file-submodule.svg │ │ ├── file-symlink-directory.svg │ │ ├── file-symlink-file.svg │ │ ├── file-zip.svg │ │ ├── file.svg │ │ ├── flame.svg │ │ ├── fold-down.svg │ │ ├── fold-up.svg │ │ ├── fold.svg │ │ ├── gear.svg │ │ ├── gift.svg │ │ ├── gist-secret.svg │ │ ├── gist.svg │ │ ├── git-branch.svg │ │ ├── git-commit.svg │ │ ├── git-compare.svg │ │ ├── git-merge.svg │ │ ├── git-pull-request.svg │ │ ├── github-action.svg │ │ ├── globe.svg │ │ ├── grabber.svg │ │ ├── graph.svg │ │ ├── heart-outline.svg │ │ ├── heart.svg │ │ ├── history.svg │ │ ├── home.svg │ │ ├── horizontal-rule.svg │ │ ├── hubot.svg │ │ ├── inbox.svg │ │ ├── infinity.svg │ │ ├── info.svg │ │ ├── internal-repo.svg │ │ ├── issue-closed.svg │ │ ├── issue-opened.svg │ │ ├── issue-reopened.svg │ │ ├── italic.svg │ │ ├── jersey.svg │ │ ├── kebab-horizontal.svg │ │ ├── kebab-vertical.svg │ │ ├── key.svg │ │ ├── keyboard.svg │ │ ├── law.svg │ │ ├── light-bulb.svg │ │ ├── line-arrow-down.svg │ │ ├── line-arrow-left.svg │ │ ├── line-arrow-right.svg │ │ ├── line-arrow-up.svg │ │ ├── link-external.svg │ │ ├── link.svg │ │ ├── list-ordered.svg │ │ ├── list-unordered.svg │ │ ├── location.svg │ │ ├── lock.svg │ │ ├── logo-gist.svg │ │ ├── logo-github.svg │ │ ├── mail-read.svg │ │ ├── mail.svg │ │ ├── mark-github.svg │ │ ├── markdown.svg │ │ ├── megaphone.svg │ │ ├── mention.svg │ │ ├── milestone.svg │ │ ├── mirror.svg │ │ ├── mortar-board.svg │ │ ├── mute.svg │ │ ├── no-newline.svg │ │ ├── north-star.svg │ │ ├── note.svg │ │ ├── octoface.svg │ │ ├── organization.svg │ │ ├── package.svg │ │ ├── paintcan.svg │ │ ├── pencil.svg │ │ ├── person.svg │ │ ├── pin.svg │ │ ├── play.svg │ │ ├── plug.svg │ │ ├── plus-small.svg │ │ ├── plus.svg │ │ ├── primitive-dot-stroke.svg │ │ ├── primitive-dot.svg │ │ ├── primitive-square.svg │ │ ├── project.svg │ │ ├── pulse.svg │ │ ├── question.svg │ │ ├── quote.svg │ │ ├── radio-tower.svg │ │ ├── reply.svg │ │ ├── repo-clone.svg │ │ ├── repo-force-push.svg │ │ ├── repo-forked.svg │ │ ├── repo-pull.svg │ │ ├── repo-push.svg │ │ ├── repo-template-private.svg │ │ ├── repo-template.svg │ │ ├── repo.svg │ │ ├── report.svg │ │ ├── request-changes.svg │ │ ├── rocket.svg │ │ ├── rss.svg │ │ ├── ruby.svg │ │ ├── saved.svg │ │ ├── screen-full.svg │ │ ├── screen-normal.svg │ │ ├── search.svg │ │ ├── server.svg │ │ ├── settings.svg │ │ ├── shield-check.svg │ │ ├── shield-lock.svg │ │ ├── shield-x.svg │ │ ├── shield.svg │ │ ├── sign-in.svg │ │ ├── sign-out.svg │ │ ├── skip.svg │ │ ├── smiley.svg │ │ ├── squirrel.svg │ │ ├── star.svg │ │ ├── stop.svg │ │ ├── sync.svg │ │ ├── tag.svg │ │ ├── tasklist.svg │ │ ├── telescope.svg │ │ ├── terminal.svg │ │ ├── text-size.svg │ │ ├── three-bars.svg │ │ ├── thumbsdown.svg │ │ ├── thumbsup.svg │ │ ├── tools.svg │ │ ├── trashcan.svg │ │ ├── triangle-down.svg │ │ ├── triangle-left.svg │ │ ├── triangle-right.svg │ │ ├── triangle-up.svg │ │ ├── unfold.svg │ │ ├── unmute.svg │ │ ├── unsaved.svg │ │ ├── unverified.svg │ │ ├── verified.svg │ │ ├── versions.svg │ │ ├── watch.svg │ │ ├── workflow-all.svg │ │ ├── workflow.svg │ │ ├── x.svg │ │ └── zap.svg └── rpgawesome.font │ ├── DEVELOPMENT.md │ ├── Makefile │ ├── config.yml │ ├── diff.yml │ ├── dump.svgo.yml │ ├── font │ ├── rpgawesome.eot │ ├── rpgawesome.svg │ ├── rpgawesome.ttf │ └── rpgawesome.woff │ ├── package-lock.json │ ├── package.json │ └── src │ ├── original │ └── rpgawesome-webfont.svg │ └── svg │ ├── acid.svg │ ├── acorn.svg │ ├── alien_fire.svg │ ├── all_for_one.svg │ ├── alligator_clip.svg │ ├── ammo_bag.svg │ ├── anchor.svg │ ├── angel_wings.svg │ ├── ankh.svg │ ├── anvil.svg │ ├── apple.svg │ ├── aquarius.svg │ ├── arcane_mask.svg │ ├── archer.svg │ ├── archery_target.svg │ ├── arena.svg │ ├── aries.svg │ ├── arrow_cluster.svg │ ├── arrow_flights.svg │ ├── arson.svg │ ├── aura.svg │ ├── aware.svg │ ├── axe.svg │ ├── axe_swing.svg │ ├── ball.svg │ ├── barbed_arrow.svg │ ├── barrier.svg │ ├── bat_sword.svg │ ├── battered_axe.svg │ ├── batteries.svg │ ├── battery_0.svg │ ├── battery_100.svg │ ├── battery_25.svg │ ├── battery_50.svg │ ├── battery_75.svg │ ├── battery_black.svg │ ├── battery_negative.svg │ ├── battery_positive.svg │ ├── battery_white.svg │ ├── batwings.svg │ ├── beam_wake.svg │ ├── bear_trap.svg │ ├── beer.svg │ ├── beetle.svg │ ├── bell.svg │ ├── biohazard.svg │ ├── bird_claw.svg │ ├── bird_mask.svg │ ├── blade_bite.svg │ ├── blast.svg │ ├── blaster.svg │ ├── bleeding_eye.svg │ ├── bleeding_hearts.svg │ ├── bolt_shield.svg │ ├── bomb_explosion.svg │ ├── bombs.svg │ ├── bone_bite.svg │ ├── bone_knife.svg │ ├── book.svg │ ├── boomerang.svg │ ├── boot_stomp.svg │ ├── bottle_vapors.svg │ ├── bottled_bolt.svg │ ├── bottom_right.svg │ ├── bowie_knife.svg │ ├── bowling_pin.svg │ ├── brain_freeze.svg │ ├── brandy_bottle.svg │ ├── bridge.svg │ ├── broadhead_arrow.svg │ ├── broadsword.svg │ ├── broken_bone.svg │ ├── broken_bottle.svg │ ├── broken_heart.svg │ ├── broken_shield.svg │ ├── broken_skull.svg │ ├── bubbling_potion.svg │ ├── bullets.svg │ ├── burning_book.svg │ ├── burning_embers.svg │ ├── burning_eye.svg │ ├── burning_meteor.svg │ ├── burst_blob.svg │ ├── butterfly.svg │ ├── campfire.svg │ ├── cancel.svg │ ├── cancer.svg │ ├── candle.svg │ ├── candle_fire.svg │ ├── cannon_shot.svg │ ├── capitol.svg │ ├── capricorn.svg │ ├── carrot.svg │ ├── castle_emblem.svg │ ├── castle_flag.svg │ ├── cat.svg │ ├── chain.svg │ ├── cheese.svg │ ├── chemical_arrow.svg │ ├── chessboard.svg │ ├── chicken_leg.svg │ ├── circle_of_circles.svg │ ├── circular_saw.svg │ ├── circular_shield.svg │ ├── cloak_and_dagger.svg │ ├── clockwork.svg │ ├── clover.svg │ ├── clovers.svg │ ├── clovers_card.svg │ ├── cluster_bomb.svg │ ├── coffee_mug.svg │ ├── cog.svg │ ├── cog_wheel.svg │ ├── cold_heart.svg │ ├── compass.svg │ ├── corked_tube.svg │ ├── crab_claw.svg │ ├── cracked_helm.svg │ ├── cracked_shield.svg │ ├── croc_sword.svg │ ├── crossbow.svg │ ├── crossed_axes.svg │ ├── crossed_bones.svg │ ├── crossed_pistols.svg │ ├── crossed_sabres.svg │ ├── crossed_swords.svg │ ├── crown.svg │ ├── crown_of_thorns.svg │ ├── crowned_heart.svg │ ├── crush.svg │ ├── crystal_ball.svg │ ├── crystal_cluster.svg │ ├── crystal_wand.svg │ ├── crystals.svg │ ├── cubes.svg │ ├── cut_palm.svg │ ├── cycle.svg │ ├── daggers.svg │ ├── daisy.svg │ ├── dead_tree.svg │ ├── death_skull.svg │ ├── decapitation.svg │ ├── defibrillate.svg │ ├── demolish.svg │ ├── dervish_swords.svg │ ├── desert_skull.svg │ ├── diamond.svg │ ├── diamonds.svg │ ├── diamonds_card.svg │ ├── dice_five.svg │ ├── dice_four.svg │ ├── dice_one.svg │ ├── dice_six.svg │ ├── dice_three.svg │ ├── dice_two.svg │ ├── dinosaur.svg │ ├── divert.svg │ ├── diving_dagger.svg │ ├── double_team.svg │ ├── doubled.svg │ ├── dragon.svg │ ├── dragon_breath.svg │ ├── dragon_wing.svg │ ├── dragonfly.svg │ ├── drill.svg │ ├── dripping_blade.svg │ ├── dripping_knife.svg │ ├── dripping_sword.svg │ ├── droplet.svg │ ├── droplet_splash.svg │ ├── droplets.svg │ ├── duel.svg │ ├── egg.svg │ ├── egg_pod.svg │ ├── eggplant.svg │ ├── emerald.svg │ ├── energise.svg │ ├── explosion.svg │ ├── explosive_materials.svg │ ├── eye_monster.svg │ ├── eye_shield.svg │ ├── eyeball.svg │ ├── fairy.svg │ ├── fairy_wand.svg │ ├── fall_down.svg │ ├── falling.svg │ ├── fast_ship.svg │ ├── feather_wing.svg │ ├── feathered_wing.svg │ ├── fedora.svg │ ├── fire.svg │ ├── fire_bomb.svg │ ├── fire_breath.svg │ ├── fire_ring.svg │ ├── fire_shield.svg │ ├── fire_symbol.svg │ ├── fireball_sword.svg │ ├── fish.svg │ ├── fizzing_flask.svg │ ├── flame_symbol.svg │ ├── flaming_arrow.svg │ ├── flaming_claw.svg │ ├── flaming_trident.svg │ ├── flask.svg │ ├── flat_hammer.svg │ ├── flower.svg │ ├── flowers.svg │ ├── fluffy_swirl.svg │ ├── focused_lightning.svg │ ├── food_chain.svg │ ├── footprint.svg │ ├── forging.svg │ ├── forward.svg │ ├── fox.svg │ ├── frost_emblem.svg │ ├── frostfire.svg │ ├── frozen_arrow.svg │ ├── gamepad_cross.svg │ ├── gavel.svg │ ├── gear_hammer.svg │ ├── gear_heart.svg │ ├── gears.svg │ ├── gecko.svg │ ├── gem.svg │ ├── gem_pendant.svg │ ├── gemini.svg │ ├── glass_heart.svg │ ├── gloop.svg │ ├── gold_bar.svg │ ├── grappling_hook.svg │ ├── grass.svg │ ├── grass_patch.svg │ ├── grenade.svg │ ├── groundbreaker.svg │ ├── guarded_tower.svg │ ├── guillotine.svg │ ├── halberd.svg │ ├── hammer.svg │ ├── hammer_drop.svg │ ├── hand.svg │ ├── hand_emblem.svg │ ├── hand_saw.svg │ ├── harpoon_trident.svg │ ├── health.svg │ ├── health_decrease.svg │ ├── health_increase.svg │ ├── heart_bottle.svg │ ├── heart_tower.svg │ ├── heartburn.svg │ ├── hearts.svg │ ├── hearts_card.svg │ ├── heat_haze.svg │ ├── heavy_fall.svg │ ├── heavy_shield.svg │ ├── helmet.svg │ ├── help.svg │ ├── hive_emblem.svg │ ├── hole_ladder.svg │ ├── honeycomb.svg │ ├── hood.svg │ ├── horn_call.svg │ ├── horns.svg │ ├── horseshoe.svg │ ├── hospital_cross.svg │ ├── hot_surface.svg │ ├── hourglass.svg │ ├── hydra.svg │ ├── hydra_shot.svg │ ├── ice_cube.svg │ ├── implosion.svg │ ├── incense.svg │ ├── insect_jaws.svg │ ├── interdiction.svg │ ├── jetpack.svg │ ├── jigsaw_piece.svg │ ├── kaleidoscope.svg │ ├── kettlebell.svg │ ├── key.svg │ ├── key_basic.svg │ ├── kitchen_knives.svg │ ├── knife.svg │ ├── knife_fork.svg │ ├── knight_helmet.svg │ ├── kunai.svg │ ├── lantern_flame.svg │ ├── large_hammer.svg │ ├── laser_blast.svg │ ├── laser_site.svg │ ├── lava.svg │ ├── leaf.svg │ ├── leo.svg │ ├── level_four.svg │ ├── level_four_advanced.svg │ ├── level_three.svg │ ├── level_three_advanced.svg │ ├── level_two.svg │ ├── level_two_advanced.svg │ ├── lever.svg │ ├── libra.svg │ ├── light_bulb.svg │ ├── lighthouse.svg │ ├── lightning.svg │ ├── lightning_bolt.svg │ ├── lightning_storm.svg │ ├── lightning_sword.svg │ ├── lightning_trio.svg │ ├── lion.svg │ ├── lit_candelabra.svg │ ├── load.svg │ ├── locked_fortress.svg │ ├── love_howl.svg │ ├── maggot.svg │ ├── magnet.svg │ ├── mass_driver.svg │ ├── match.svg │ ├── meat.svg │ ├── meat_hook.svg │ ├── medical_pack.svg │ ├── metal_gate.svg │ ├── microphone.svg │ ├── mine_wagon.svg │ ├── mining_diamonds.svg │ ├── mirror.svg │ ├── monster_skull.svg │ ├── montains.svg │ ├── moon_sun.svg │ ├── mp5.svg │ ├── muscle_fat.svg │ ├── muscle_up.svg │ ├── musket.svg │ ├── nails.svg │ ├── nodular.svg │ ├── noose.svg │ ├── nuclear.svg │ ├── ocarina.svg │ ├── ocean_emblem.svg │ ├── octopus.svg │ ├── omega.svg │ ├── on_target.svg │ ├── ophiuchus.svg │ ├── overhead.svg │ ├── overmind.svg │ ├── palm_tree.svg │ ├── pawn.svg │ ├── pawprint.svg │ ├── perspective_dice_five.svg │ ├── perspective_dice_four.svg │ ├── perspective_dice_one.svg │ ├── perspective_dice_random.svg │ ├── perspective_dice_six.svg │ ├── perspective_dice_six_two.svg │ ├── perspective_dice_three.svg │ ├── pill.svg │ ├── pills.svg │ ├── pine_tree.svg │ ├── ping_pong.svg │ ├── pisces.svg │ ├── plain_dagger.svg │ ├── player.svg │ ├── player_despair.svg │ ├── player_dodge.svg │ ├── player_king.svg │ ├── player_lift.svg │ ├── player_pain.svg │ ├── player_pyromaniac.svg │ ├── player_shot.svg │ ├── player_teleport.svg │ ├── player_thunder_struck.svg │ ├── podium.svg │ ├── poison_cloud.svg │ ├── potion.svg │ ├── pyramids.svg │ ├── queen_crown.svg │ ├── quill_ink.svg │ ├── rabbit.svg │ ├── radar_dish.svg │ ├── radial_balance.svg │ ├── radioactive.svg │ ├── raven.svg │ ├── reactor.svg │ ├── recycle.svg │ ├── regeneration.svg │ ├── relic_blade.svg │ ├── repair.svg │ ├── reverse.svg │ ├── revolver.svg │ ├── rifle.svg │ ├── ringing_bell.svg │ ├── roast_chicken.svg │ ├── robot_arm.svg │ ├── round_bottom_flask.svg │ ├── round_shield.svg │ ├── rss.svg │ ├── rune_stone.svg │ ├── sagittarius.svg │ ├── sapphire.svg │ ├── satellite.svg │ ├── save.svg │ ├── scorpio.svg │ ├── scroll_unfurled.svg │ ├── scythe.svg │ ├── sea_serpent.svg │ ├── seagull.svg │ ├── shark.svg │ ├── sheep.svg │ ├── sheriff.svg │ ├── shield.svg │ ├── ship_emblem.svg │ ├── shoe_prints.svg │ ├── shot_through_the_heart.svg │ ├── shotgun_shell.svg │ ├── shovel.svg │ ├── shuriken.svg │ ├── sickle.svg │ ├── sideswipe.svg │ ├── site.svg │ ├── skull.svg │ ├── skull_trophy.svg │ ├── slash_ring.svg │ ├── small_fire.svg │ ├── snail.svg │ ├── snake.svg │ ├── snorkel.svg │ ├── snowflake.svg │ ├── soccer_ball.svg │ ├── spades.svg │ ├── spades_card.svg │ ├── spawn_node.svg │ ├── spear_head.svg │ ├── speech_bubble.svg │ ├── speech_bubbles.svg │ ├── spider_face.svg │ ├── spikeball.svg │ ├── spiked_mace.svg │ ├── spiked_tentacle.svg │ ├── spinning_sword.svg │ ├── spiral_shell.svg │ ├── splash.svg │ ├── spray_can.svg │ ├── sprout.svg │ ├── sprout_emblem.svg │ ├── stopwatch.svg │ ├── suckered_tentacle.svg │ ├── suits.svg │ ├── sun.svg │ ├── sun_symbol.svg │ ├── sunbeams.svg │ ├── super_mushroom.svg │ ├── supersonic_arrow.svg │ ├── surveillance_camera.svg │ ├── syringe.svg │ ├── target_arrows.svg │ ├── target_laser.svg │ ├── targeted.svg │ ├── taurus.svg │ ├── telescope.svg │ ├── tentacle.svg │ ├── tesla.svg │ ├── thorn_arrow.svg │ ├── thorny_vine.svg │ ├── three_keys.svg │ ├── tic_tac_toe.svg │ ├── toast.svg │ ├── tombstone.svg │ ├── tooth.svg │ ├── torch.svg │ ├── tower.svg │ ├── trail.svg │ ├── trefoil_lily.svg │ ├── trident.svg │ ├── triforce.svg │ ├── trophy.svg │ ├── turd.svg │ ├── two_dragons.svg │ ├── two_hearts.svg │ ├── uncertainty.svg │ ├── underhand.svg │ ├── unplugged.svg │ ├── vase.svg │ ├── venomous_snake.svg │ ├── vest.svg │ ├── vial.svg │ ├── vine_whip.svg │ ├── virgo.svg │ ├── water_drop.svg │ ├── wifi.svg │ ├── wireless_signal.svg │ ├── wolf_head.svg │ ├── wolf_howl.svg │ ├── wooden_sign.svg │ ├── wrench.svg │ ├── wyvern.svg │ ├── x_mark.svg │ ├── zebra_shield.svg │ └── zigzag_leaf.svg ├── support ├── font-templates │ ├── LICENSE.pug │ ├── README.txt │ ├── bootstrap.styl │ ├── bower.jade │ ├── css │ │ ├── animation.css │ │ ├── css-codes.pug │ │ ├── css-embedded.pug │ │ ├── css-ie7-codes.pug │ │ ├── css-ie7.pug │ │ └── css.pug │ ├── demo.pug │ ├── font │ │ ├── flutter_iconset.tpl │ │ ├── iron_iconset_svg.tpl │ │ └── svg.tpl │ └── index.jade ├── images │ ├── drag-config-json-file.gif │ └── import-config-json-menu.gif └── ttfautohint-ubuntu-12.04.sh └── test ├── .eslintrc.yml ├── client └── transpile_to_es5.js └── server ├── api ├── download.js └── fixtures │ ├── config_custom.json │ ├── config_fontelico.json │ ├── result_custom.zip │ └── result_fontelico.zip ├── ping.js └── redirect_invalid_host.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/README.md -------------------------------------------------------------------------------- /bundle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/bundle.yml -------------------------------------------------------------------------------- /cli/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/cli/assets.js -------------------------------------------------------------------------------- /cli/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/cli/config.js -------------------------------------------------------------------------------- /cli/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/cli/filters.js -------------------------------------------------------------------------------- /cli/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/cli/seed.js -------------------------------------------------------------------------------- /cli/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/cli/server.js -------------------------------------------------------------------------------- /cli/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/cli/test.js -------------------------------------------------------------------------------- /cli/www.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/cli/www.js -------------------------------------------------------------------------------- /client/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/.eslintrc -------------------------------------------------------------------------------- /client/fontello/_lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/_lib/utils.js -------------------------------------------------------------------------------- /client/fontello/_variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/_variables.styl -------------------------------------------------------------------------------- /client/fontello/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/app/app.js -------------------------------------------------------------------------------- /client/fontello/app/app.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/app/app.pug -------------------------------------------------------------------------------- /client/fontello/app/app.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/app/app.styl -------------------------------------------------------------------------------- /client/fontello/app/i18n/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/app/i18n/en.yml -------------------------------------------------------------------------------- /client/fontello/app/import/i18n/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/app/import/i18n/en.yml -------------------------------------------------------------------------------- /client/fontello/app/import/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/app/import/import.js -------------------------------------------------------------------------------- /client/fontello/app/session/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/app/session/session.js -------------------------------------------------------------------------------- /client/fontello/blocks/tabs/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/blocks/tabs/tabs.js -------------------------------------------------------------------------------- /client/fontello/blocks/tabs/tabs.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/blocks/tabs/tabs.pug -------------------------------------------------------------------------------- /client/fontello/blocks/tabs/tabs.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/blocks/tabs/tabs.styl -------------------------------------------------------------------------------- /client/fontello/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/config.yml -------------------------------------------------------------------------------- /client/fontello/layout/i18n/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/layout/i18n/en.yml -------------------------------------------------------------------------------- /client/fontello/layout/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/layout/layout.js -------------------------------------------------------------------------------- /client/fontello/layout/layout.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/layout/layout.pug -------------------------------------------------------------------------------- /client/fontello/layout/layout.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/layout/layout.styl -------------------------------------------------------------------------------- /client/fontello/models/i18n/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/models/i18n/en.yml -------------------------------------------------------------------------------- /client/fontello/models/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/models/models.js -------------------------------------------------------------------------------- /client/fontello/system/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/fontello/system/error.js -------------------------------------------------------------------------------- /client/fontello/system/io_progress/io_progress.pug: -------------------------------------------------------------------------------- 1 | #io-progress.alert 2 | button.close × 3 | span.message 4 | -------------------------------------------------------------------------------- /client/lib/bootstrap_custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/bootstrap_custom/index.js -------------------------------------------------------------------------------- /client/lib/bootstrap_custom/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/bootstrap_custom/index.less -------------------------------------------------------------------------------- /client/lib/bootstrap_material_design/.ruby-gemset: -------------------------------------------------------------------------------- 1 | bootstrap-material-design 2 | -------------------------------------------------------------------------------- /client/lib/bootstrap_material_design/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.2 2 | -------------------------------------------------------------------------------- /client/lib/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/config.yml -------------------------------------------------------------------------------- /client/lib/embedded_fonts/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/embedded_fonts/config.yml -------------------------------------------------------------------------------- /client/lib/icons/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/config.yml -------------------------------------------------------------------------------- /client/lib/icons/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/index.css -------------------------------------------------------------------------------- /client/lib/icons/src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/LICENSE.txt -------------------------------------------------------------------------------- /client/lib/icons/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/README.txt -------------------------------------------------------------------------------- /client/lib/icons/src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/config.json -------------------------------------------------------------------------------- /client/lib/icons/src/css/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/css/animation.css -------------------------------------------------------------------------------- /client/lib/icons/src/css/icons-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/css/icons-ie7.css -------------------------------------------------------------------------------- /client/lib/icons/src/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/css/icons.css -------------------------------------------------------------------------------- /client/lib/icons/src/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/demo.html -------------------------------------------------------------------------------- /client/lib/icons/src/font/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/font/icons.eot -------------------------------------------------------------------------------- /client/lib/icons/src/font/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/font/icons.svg -------------------------------------------------------------------------------- /client/lib/icons/src/font/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/font/icons.ttf -------------------------------------------------------------------------------- /client/lib/icons/src/font/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/font/icons.woff -------------------------------------------------------------------------------- /client/lib/icons/src/font/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/icons/src/font/icons.woff2 -------------------------------------------------------------------------------- /client/lib/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/init.js -------------------------------------------------------------------------------- /client/lib/jquery.numeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/jquery.numeric.js -------------------------------------------------------------------------------- /client/lib/jquery.xselectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/jquery.xselectable.js -------------------------------------------------------------------------------- /client/lib/loader/.eslintrc: -------------------------------------------------------------------------------- 1 | rules: 2 | strict: [2, "function"] 3 | -------------------------------------------------------------------------------- /client/lib/loader/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/loader/config.yml -------------------------------------------------------------------------------- /client/lib/loader/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/loader/loader.js -------------------------------------------------------------------------------- /client/lib/polyfills/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/polyfills/config.yml -------------------------------------------------------------------------------- /client/lib/typeahead/typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/typeahead/typeahead.js -------------------------------------------------------------------------------- /client/lib/typeahead/typeahead.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/client/lib/typeahead/typeahead.less -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/config/.gitignore -------------------------------------------------------------------------------- /config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/config/application.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/fontello.com.yml.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/config/fontello.com.yml.config -------------------------------------------------------------------------------- /config/logger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/config/logger.yml -------------------------------------------------------------------------------- /config/router.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/config/router.yml -------------------------------------------------------------------------------- /config/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/config/test.yml -------------------------------------------------------------------------------- /embed.svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/embed.svgo.yml -------------------------------------------------------------------------------- /etc/certs/fontello-dev.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/etc/certs/fontello-dev.cert -------------------------------------------------------------------------------- /etc/certs/fontello-dev.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/etc/certs/fontello-dev.key -------------------------------------------------------------------------------- /etc/init/fontello.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/etc/init/fontello.conf -------------------------------------------------------------------------------- /fontello-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/fontello-image.svg -------------------------------------------------------------------------------- /lib/app/bag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/app/bag.js -------------------------------------------------------------------------------- /lib/autoload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/autoload.js -------------------------------------------------------------------------------- /lib/autoload/hooks/init/service_www.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/autoload/hooks/init/service_www.js -------------------------------------------------------------------------------- /lib/autoload/hooks/init/storages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/autoload/hooks/init/storages.js -------------------------------------------------------------------------------- /lib/autoload/hooks/responder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/autoload/hooks/responder/README.md -------------------------------------------------------------------------------- /lib/autoload/hooks/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/autoload/hooks/server/README.md -------------------------------------------------------------------------------- /lib/autoload/hooks/shutdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/autoload/hooks/shutdown.js -------------------------------------------------------------------------------- /lib/bundler/assets/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/assets/base.js -------------------------------------------------------------------------------- /lib/bundler/assets/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/assets/concat.js -------------------------------------------------------------------------------- /lib/bundler/assets/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/assets/file.js -------------------------------------------------------------------------------- /lib/bundler/assets/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/assets/lang.js -------------------------------------------------------------------------------- /lib/bundler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/index.js -------------------------------------------------------------------------------- /lib/bundler/plugins/auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/auto.js -------------------------------------------------------------------------------- /lib/bundler/plugins/autoprefixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/autoprefixer.js -------------------------------------------------------------------------------- /lib/bundler/plugins/clean-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/clean-css.js -------------------------------------------------------------------------------- /lib/bundler/plugins/jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/jade.js -------------------------------------------------------------------------------- /lib/bundler/plugins/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/less.js -------------------------------------------------------------------------------- /lib/bundler/plugins/load_bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/load_bin.js -------------------------------------------------------------------------------- /lib/bundler/plugins/load_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/load_text.js -------------------------------------------------------------------------------- /lib/bundler/plugins/macros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/macros.js -------------------------------------------------------------------------------- /lib/bundler/plugins/pug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/pug.js -------------------------------------------------------------------------------- /lib/bundler/plugins/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/sass.js -------------------------------------------------------------------------------- /lib/bundler/plugins/stylus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/stylus.js -------------------------------------------------------------------------------- /lib/bundler/plugins/uglifyjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/uglifyjs.js -------------------------------------------------------------------------------- /lib/bundler/plugins/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/plugins/wrapper.js -------------------------------------------------------------------------------- /lib/bundler/utils/dependency_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/bundler/utils/dependency_error.js -------------------------------------------------------------------------------- /lib/embedded_fonts/client_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/embedded_fonts/client_config.js -------------------------------------------------------------------------------- /lib/embedded_fonts/server_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/embedded_fonts/server_config.js -------------------------------------------------------------------------------- /lib/system/client/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/client/.eslintrc -------------------------------------------------------------------------------- /lib/system/client/kernel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/client/kernel.js -------------------------------------------------------------------------------- /lib/system/client/kernel/io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/client/kernel/io.js -------------------------------------------------------------------------------- /lib/system/client/kernel/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/client/kernel/logger.js -------------------------------------------------------------------------------- /lib/system/client/kernel/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/client/kernel/render.js -------------------------------------------------------------------------------- /lib/system/dummy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/dummy.js -------------------------------------------------------------------------------- /lib/system/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/env.js -------------------------------------------------------------------------------- /lib/system/init/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle.js -------------------------------------------------------------------------------- /lib/system/init/bundle/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/bin.js -------------------------------------------------------------------------------- /lib/system/init/bundle/cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/cleanup.js -------------------------------------------------------------------------------- /lib/system/init/bundle/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/client.js -------------------------------------------------------------------------------- /lib/system/init/bundle/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/compile.js -------------------------------------------------------------------------------- /lib/system/init/bundle/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/css.js -------------------------------------------------------------------------------- /lib/system/init/bundle/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/i18n.js -------------------------------------------------------------------------------- /lib/system/init/bundle/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/js.js -------------------------------------------------------------------------------- /lib/system/init/bundle/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/manifest.js -------------------------------------------------------------------------------- /lib/system/init/bundle/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/map.js -------------------------------------------------------------------------------- /lib/system/init/bundle/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/router.js -------------------------------------------------------------------------------- /lib/system/init/bundle/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/server.js -------------------------------------------------------------------------------- /lib/system/init/bundle/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/setup.js -------------------------------------------------------------------------------- /lib/system/init/bundle/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/vendor.js -------------------------------------------------------------------------------- /lib/system/init/bundle/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/bundle/views.js -------------------------------------------------------------------------------- /lib/system/init/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/index.js -------------------------------------------------------------------------------- /lib/system/init/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/models.js -------------------------------------------------------------------------------- /lib/system/init/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/server.js -------------------------------------------------------------------------------- /lib/system/init/utils/apify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/utils/apify.js -------------------------------------------------------------------------------- /lib/system/init/utils/stopwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/init/utils/stopwatch.js -------------------------------------------------------------------------------- /lib/system/io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/io.js -------------------------------------------------------------------------------- /lib/system/render/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/render/common.js -------------------------------------------------------------------------------- /lib/system/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/router.js -------------------------------------------------------------------------------- /lib/system/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/runner.js -------------------------------------------------------------------------------- /lib/system/runner/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/runner/application.js -------------------------------------------------------------------------------- /lib/system/runner/exec_cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/runner/exec_cli.js -------------------------------------------------------------------------------- /lib/system/runner/initialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/runner/initialize.js -------------------------------------------------------------------------------- /lib/system/worker_pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/lib/system/worker_pool.js -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/package.json -------------------------------------------------------------------------------- /root/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/root/favicon.ico -------------------------------------------------------------------------------- /root/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/root/favicon.png -------------------------------------------------------------------------------- /root/favicon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/root/favicon.xcf -------------------------------------------------------------------------------- /root/logo_dart_192px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/root/logo_dart_192px.svg -------------------------------------------------------------------------------- /root/snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/root/snippet.png -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/server.js -------------------------------------------------------------------------------- /server/fontello/api.download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/server/fontello/api.download.js -------------------------------------------------------------------------------- /server/fontello/api.post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/server/fontello/api.post.js -------------------------------------------------------------------------------- /server/fontello/api.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/server/fontello/api.update.js -------------------------------------------------------------------------------- /server/fontello/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/server/fontello/app.js -------------------------------------------------------------------------------- /server/fontello/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/server/fontello/config.yml -------------------------------------------------------------------------------- /server/fontello/font/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/server/fontello/font/download.js -------------------------------------------------------------------------------- /server/fontello/robots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/server/fontello/robots.js -------------------------------------------------------------------------------- /src/awesome5.font/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/DEVELOPMENT.md -------------------------------------------------------------------------------- /src/awesome5.font/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/Makefile -------------------------------------------------------------------------------- /src/awesome5.font/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/README.md -------------------------------------------------------------------------------- /src/awesome5.font/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/config.yml -------------------------------------------------------------------------------- /src/awesome5.font/dump.svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/dump.svgo.yml -------------------------------------------------------------------------------- /src/awesome5.font/font/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/font/demo.html -------------------------------------------------------------------------------- /src/awesome5.font/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/package-lock.json -------------------------------------------------------------------------------- /src/awesome5.font/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/package.json -------------------------------------------------------------------------------- /src/awesome5.font/src/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/demo/README.md -------------------------------------------------------------------------------- /src/awesome5.font/src/demo/demo.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/demo/demo.jade -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/accusoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/accusoft.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ad.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/adjust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/adjust.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/adn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/adn.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/adobe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/adobe.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/adversal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/adversal.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/airbnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/airbnb.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/algolia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/algolia.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/alipay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/alipay.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/amazon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/amazon.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/amilia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/amilia.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/anchor.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/android.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/angle_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/angle_up.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/angry.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/angular.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ankh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ankh.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/apper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/apper.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/apple.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/archive.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/archway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/archway.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/arrow_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/arrow_up.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/asterisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/asterisk.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/at.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/atlas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/atlas.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/atom.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/audible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/audible.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/avianex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/avianex.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/aviato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/aviato.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/award.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/award.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/aws.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/baby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/baby.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/backward.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bacon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bacon.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bahai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bahai.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ban.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/band_aid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/band_aid.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bandcamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bandcamp.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/barcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/barcode.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bars.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bath.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bed.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/beer.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/behance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/behance.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bell.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bible.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bicycle.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/biking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/biking.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bitcoin.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bity.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/blender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/blender.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/blind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/blind.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/blog.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/blogger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/blogger.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bold.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bolt.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bomb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bomb.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bone.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bong.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/book.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bookmark.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/box.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/box_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/box_open.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/boxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/boxes.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/braille.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/braille.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/brain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/brain.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/broom.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/brush.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/btc.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/buffer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/buffer.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bug.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/building.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bullhorn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bullhorn.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bullseye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bullseye.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/burn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/burn.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bus.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/bus_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/bus_alt.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/calendar.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/camera.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cannabis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cannabis.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/capsules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/capsules.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/car.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/car_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/car_alt.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/car_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/car_side.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/caravan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/caravan.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/caret_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/caret_up.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/carrot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/carrot.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cat.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cc_amex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cc_amex.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cc_jcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cc_jcb.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cc_visa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cc_visa.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/centos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/centos.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/chair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/chair.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/check.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cheese.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cheese.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/chess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/chess.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/child.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/child.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/chrome.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/church.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/church.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/circle.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/city.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/clock.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/clone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/clone.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cloud.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cocktail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cocktail.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/code.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/codepen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/codepen.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/codiepie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/codiepie.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/coffee.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cog.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cogs.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/coins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/coins.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/columns.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/comment.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/comments.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/compass.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/compress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/compress.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/contao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/contao.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cookie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cookie.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/copy.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/couch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/couch.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cpanel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cpanel.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/crop.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/crop_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/crop_alt.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cross.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/crow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/crow.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/crown.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/crutch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/crutch.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/css3.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/css3_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/css3_alt.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cube.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cubes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cubes.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/cut.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/d_and_d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/d_and_d.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dashcube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dashcube.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/database.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/deaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/deaf.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/democrat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/democrat.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/deskpro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/deskpro.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/desktop.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dev.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dhl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dhl.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/diaspora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/diaspora.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dice.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dice_d20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dice_d20.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dice_d6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dice_d6.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dice_one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dice_one.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dice_six.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dice_six.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dice_two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dice_two.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/digg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/digg.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/discord.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/disease.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/disease.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/divide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/divide.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dizzy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dizzy.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dna.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dochub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dochub.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/docker.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dog.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dolly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dolly.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/donate.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dove.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/download.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dragon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dragon.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dribbble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dribbble.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dropbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dropbox.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/drum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/drum.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/drupal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/drupal.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dumbbell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dumbbell.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dumpster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dumpster.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dungeon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dungeon.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/dyalog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/dyalog.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ebay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ebay.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/edge.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/edit.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/egg.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/eject.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ello.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ember.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ember.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/empire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/empire.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/envelope.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/envira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/envira.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/equals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/equals.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/eraser.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/erlang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/erlang.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ethereum.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ethernet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ethernet.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/etsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/etsy.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/evernote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/evernote.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/expand.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/eye.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/facebook.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/fan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/fan.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/faucet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/faucet.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/fax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/fax.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/feather.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/fedex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/fedex.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/fedora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/fedora.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/female.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/figma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/figma.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/file.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/file_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/file_alt.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/file_csv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/file_csv.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/file_pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/file_pdf.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/fill.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/film.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/filter.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/fire.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/fire_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/fire_alt.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/firefox.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/fish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/fish.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/flag.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/flag_usa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/flag_usa.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/flask.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/flickr.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/flushed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/flushed.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/fly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/fly.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/folder.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/font.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/forumbee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/forumbee.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/forward.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/freebsd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/freebsd.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/frog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/frog.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/frown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/frown.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/fulcrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/fulcrum.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/futbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/futbol.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gamepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gamepad.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gas_pump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gas_pump.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gavel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gavel.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gem.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gg.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ghost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ghost.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gift.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gifts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gifts.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/git.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/git_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/git_alt.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/github.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gitlab.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gitter.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/glasses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/glasses.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/glide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/glide.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/glide_g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/glide_g.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/globe.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gofore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gofore.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/google.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gopuram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gopuram.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/grav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/grav.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/grin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/grin.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/grunt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/grunt.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/guitar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/guitar.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/gulp.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/hammer.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/hamsa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/hamsa.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/hands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/hands.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/hdd.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/heart.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/hiking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/hiking.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/hippo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/hippo.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/hips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/hips.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/home.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/hooli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/hooli.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/horse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/horse.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/hotdog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/hotdog.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/hotel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/hotel.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/hotjar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/hotjar.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/houzz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/houzz.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/html5.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/icons.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ideal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ideal.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/igloo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/igloo.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/image.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/images.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/imdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/imdb.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/inbox.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/indent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/indent.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/info.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/italic.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/itunes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/itunes.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/java.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/jedi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/jedi.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/jira.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/joget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/joget.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/joint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/joint.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/joomla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/joomla.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/js.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/kaaba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/kaaba.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/kaggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/kaggle.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/key.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/keycdn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/keycdn.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/khanda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/khanda.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/kiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/kiss.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/korvue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/korvue.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/laptop.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/lastfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/lastfm.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/laugh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/laugh.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/leaf.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/lemon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/lemon.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/less.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/line.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/link.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/linode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/linode.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/linux.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/list.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/lock.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/lungs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/lungs.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/lyft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/lyft.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/magic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/magic.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/magnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/magnet.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/male.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/map.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/marker.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/mars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/mars.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/mask.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/maxcdn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/maxcdn.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/mdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/mdb.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/medal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/medal.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/medium.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/medkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/medkit.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/medrt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/medrt.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/meetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/meetup.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/meh.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/memory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/memory.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/meteor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/meteor.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/minus.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/mitten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/mitten.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/mix.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/mixer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/mixer.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/mizuni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/mizuni.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/mobile.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/modx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/modx.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/monero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/monero.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/moon.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/mosque.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/mosque.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/mouse.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/music.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/neos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/neos.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/neuter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/neuter.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/nimblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/nimblr.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/node.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/npm.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ns8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ns8.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/om.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/openid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/openid.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/opera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/opera.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/orcid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/orcid.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/osi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/osi.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/otter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/otter.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/page4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/page4.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/pager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/pager.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/palfed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/palfed.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/pallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/pallet.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/paste.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/pause.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/paw.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/paypal.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/peace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/peace.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/pen.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/phone.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/php.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/pills.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/pills.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/plane.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/play.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/plug.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/plus.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/poll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/poll.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/poll_h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/poll_h.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/poo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/poo.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/poop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/poop.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/pray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/pray.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/print.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/pushed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/pushed.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/python.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/qq.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/qrcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/qrcode.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/quora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/quora.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/quran.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/quran.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/random.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/react.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/readme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/readme.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/rebel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/rebel.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/reddit.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/redhat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/redhat.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/redo.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/renren.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/renren.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/reply.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/replyd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/replyd.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/rev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/rev.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ribbon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ribbon.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ring.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/road.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/road.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/robot.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/rocket.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/route.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/route.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/rss.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ruler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ruler.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/safari.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/safari.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/sass.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/save.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/schlix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/schlix.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/school.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/scribd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/scribd.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/scroll.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/search.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/sellsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/sellsy.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/server.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/shapes.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/share.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ship.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/shower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/shower.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/sign.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/signal.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/sith.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/sith.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/sketch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/sketch.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/skiing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/skiing.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/skull.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/skype.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/slack.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/slash.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/sleigh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/sleigh.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/smile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/smile.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/smog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/smog.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/sms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/sms.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/soap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/soap.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/socks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/socks.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/sort.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/spa.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/spider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/spider.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/square.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/stamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/stamp.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/star.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/steam.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/stop.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/store.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/strava.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/strava.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/stream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/stream.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/stripe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/stripe.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/subway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/subway.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/sun.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/supple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/supple.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/suse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/suse.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/swift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/swift.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/sync.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/table.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tablet.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tag.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tags.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tape.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tasks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tasks.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/taxi.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/teeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/teeth.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tenge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tenge.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/th.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/times.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tint.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tired.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/toilet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/toilet.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tools.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tooth.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/torah.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/torah.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/train.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tram.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/trash.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tree.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/trello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/trello.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/trophy.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/truck.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tshirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tshirt.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tty.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tumblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tumblr.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/tv.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/twitch.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/typo3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/typo3.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/uber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/uber.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ubuntu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ubuntu.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/uikit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/uikit.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/undo.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/unity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/unity.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/unlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/unlink.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/unlock.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/upload.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/ups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/ups.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/usb.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/user.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/users.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/usps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/usps.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/vaadin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/vaadin.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/venus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/venus.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/viadeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/viadeo.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/vial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/vial.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/vials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/vials.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/viber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/viber.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/video.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/vihara.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/vihara.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/vimeo.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/vine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/vine.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/virus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/virus.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/vk.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/vnv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/vnv.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/vuejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/vuejs.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/wallet.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/water.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/waze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/waze.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/weebly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/weebly.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/weibo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/weibo.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/weight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/weight.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/weixin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/weixin.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/whmcs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/whmcs.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/wifi.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/wind.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/wix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/wix.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/wrench.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/x_ray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/x_ray.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/xbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/xbox.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/xing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/xing.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/yahoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/yahoo.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/yammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/yammer.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/yandex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/yandex.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/yarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/yarn.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/yelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/yelp.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/yoast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/yoast.svg -------------------------------------------------------------------------------- /src/awesome5.font/src/svg/zhihu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/awesome5.font/src/svg/zhihu.svg -------------------------------------------------------------------------------- /src/linearicons.font/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | 3 | -------------------------------------------------------------------------------- /src/linearicons.font/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/Makefile -------------------------------------------------------------------------------- /src/linearicons.font/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/config.yml -------------------------------------------------------------------------------- /src/linearicons.font/dump.svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/dump.svgo.yml -------------------------------------------------------------------------------- /src/linearicons.font/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/package.json -------------------------------------------------------------------------------- /src/linearicons.font/src/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/src/svg/bug.svg -------------------------------------------------------------------------------- /src/linearicons.font/src/svg/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/src/svg/bus.svg -------------------------------------------------------------------------------- /src/linearicons.font/src/svg/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/src/svg/car.svg -------------------------------------------------------------------------------- /src/linearicons.font/src/svg/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/src/svg/cog.svg -------------------------------------------------------------------------------- /src/linearicons.font/src/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/src/svg/eye.svg -------------------------------------------------------------------------------- /src/linearicons.font/src/svg/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/src/svg/map.svg -------------------------------------------------------------------------------- /src/linearicons.font/src/svg/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/src/svg/mic.svg -------------------------------------------------------------------------------- /src/linearicons.font/src/svg/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/src/svg/paw.svg -------------------------------------------------------------------------------- /src/linearicons.font/src/svg/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/src/svg/sad.svg -------------------------------------------------------------------------------- /src/linearicons.font/src/svg/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/src/svg/sun.svg -------------------------------------------------------------------------------- /src/linearicons.font/src/svg/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/linearicons.font/src/svg/tag.svg -------------------------------------------------------------------------------- /src/material-design-icons.font/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | 3 | -------------------------------------------------------------------------------- /src/octicons.font/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/DEVELOPMENT.md -------------------------------------------------------------------------------- /src/octicons.font/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/Makefile -------------------------------------------------------------------------------- /src/octicons.font/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/README.md -------------------------------------------------------------------------------- /src/octicons.font/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/config.yml -------------------------------------------------------------------------------- /src/octicons.font/configFromSvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/configFromSvg.py -------------------------------------------------------------------------------- /src/octicons.font/dump.svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/dump.svgo.yml -------------------------------------------------------------------------------- /src/octicons.font/font/octicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/font/octicons.eot -------------------------------------------------------------------------------- /src/octicons.font/font/octicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/font/octicons.svg -------------------------------------------------------------------------------- /src/octicons.font/font/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/font/octicons.ttf -------------------------------------------------------------------------------- /src/octicons.font/font/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/font/octicons.woff -------------------------------------------------------------------------------- /src/octicons.font/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/package-lock.json -------------------------------------------------------------------------------- /src/octicons.font/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/package.json -------------------------------------------------------------------------------- /src/octicons.font/src/svg/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/alert.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/beaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/beaker.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/bell.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/bold.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/book.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/bug.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/check.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/clippy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/clippy.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/clock.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/code.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/dash.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/diff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/diff.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/eye.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/file.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/flame.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/fold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/fold.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/gear.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/gift.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/gist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/gist.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/globe.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/graph.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/heart.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/home.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/hubot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/hubot.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/inbox.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/info.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/italic.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/jersey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/jersey.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/key.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/law.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/law.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/link.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/lock.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/mail.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/mirror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/mirror.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/mute.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/note.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/pencil.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/person.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/pin.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/play.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/plug.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/plus.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/pulse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/pulse.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/quote.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/reply.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/repo.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/report.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/rocket.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/rss.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/ruby.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/saved.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/saved.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/search.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/server.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/shield.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/skip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/skip.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/smiley.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/smiley.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/star.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/stop.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/sync.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/tag.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/tools.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/unfold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/unfold.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/unmute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/unmute.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/watch.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/x.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg/zap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg/zap.svg -------------------------------------------------------------------------------- /src/octicons.font/src/svg_orig/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/octicons.font/src/svg_orig/x.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/DEVELOPMENT.md -------------------------------------------------------------------------------- /src/rpgawesome.font/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/Makefile -------------------------------------------------------------------------------- /src/rpgawesome.font/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/config.yml -------------------------------------------------------------------------------- /src/rpgawesome.font/diff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/diff.yml -------------------------------------------------------------------------------- /src/rpgawesome.font/dump.svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/dump.svgo.yml -------------------------------------------------------------------------------- /src/rpgawesome.font/font/rpgawesome.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/rpgawesome.font/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/package.json -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/acid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/acid.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/ankh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/ankh.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/aura.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/aura.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/axe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/axe.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/ball.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/beer.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/bell.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/book.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/cat.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/cog.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/duel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/duel.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/egg.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/fire.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/fish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/fish.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/fox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/fox.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/gem.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/hand.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/help.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/hood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/hood.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/key.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/lava.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/lava.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/leaf.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/leo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/leo.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/lion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/lion.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/load.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/load.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/meat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/meat.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/mp5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/mp5.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/pawn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/pawn.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/pill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/pill.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/rss.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/save.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/site.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/site.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/sun.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/turd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/turd.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/vase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/vase.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/vest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/vest.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/vial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/vial.svg -------------------------------------------------------------------------------- /src/rpgawesome.font/src/svg/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/src/rpgawesome.font/src/svg/wifi.svg -------------------------------------------------------------------------------- /support/font-templates/LICENSE.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/support/font-templates/LICENSE.pug -------------------------------------------------------------------------------- /support/font-templates/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/support/font-templates/README.txt -------------------------------------------------------------------------------- /support/font-templates/bower.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/support/font-templates/bower.jade -------------------------------------------------------------------------------- /support/font-templates/css/css.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/support/font-templates/css/css.pug -------------------------------------------------------------------------------- /support/font-templates/demo.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/support/font-templates/demo.pug -------------------------------------------------------------------------------- /support/font-templates/font/svg.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/support/font-templates/font/svg.tpl -------------------------------------------------------------------------------- /support/font-templates/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/support/font-templates/index.jade -------------------------------------------------------------------------------- /support/ttfautohint-ubuntu-12.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/support/ttfautohint-ubuntu-12.04.sh -------------------------------------------------------------------------------- /test/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/test/.eslintrc.yml -------------------------------------------------------------------------------- /test/client/transpile_to_es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/test/client/transpile_to_es5.js -------------------------------------------------------------------------------- /test/server/api/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/test/server/api/download.js -------------------------------------------------------------------------------- /test/server/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/test/server/ping.js -------------------------------------------------------------------------------- /test/server/redirect_invalid_host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilikerobots/polyicon/HEAD/test/server/redirect_invalid_host.js --------------------------------------------------------------------------------