├── .browserslistrc ├── .coveralls.yml ├── .dockerignore ├── .env ├── .env.local.example ├── .env.test ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .nvmrc ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── COLUMNS.md ├── CORRECTION_SPECS.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── Procfile.dev ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── logo-black.svg │ │ ├── logo-diff.svg │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── logop.png │ │ ├── medias │ │ │ ├── ipni.png │ │ │ ├── jardinplantes.png │ │ │ ├── kew.svg │ │ │ ├── missouri.gif │ │ │ ├── muhitnat.png │ │ │ ├── tela-botanica.png │ │ │ ├── tropicos.gif │ │ │ ├── usda.svg │ │ │ └── wikimedia.png │ │ ├── phoenix.png │ │ ├── plug.svg │ │ ├── static │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon.ico │ │ │ ├── robots.txt │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-light-300.eot │ │ │ │ ├── fa-light-300.svg │ │ │ │ ├── fa-light-300.ttf │ │ │ │ ├── fa-light-300.woff │ │ │ │ ├── fa-light-300.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ └── test-med.svg │ ├── javascripts │ │ ├── application.js │ │ ├── application.scss │ │ ├── explore │ │ │ ├── CorrectionContext.js │ │ │ ├── DataPage.jsx │ │ │ ├── Review.js │ │ │ ├── Species.js │ │ │ ├── SpeciesPage.jsx │ │ │ ├── constants │ │ │ │ └── constants.js │ │ │ ├── elements │ │ │ │ ├── Calendar.js │ │ │ │ ├── ChangeInput.js │ │ │ │ ├── ChangeInputRange.js │ │ │ │ ├── ChangeInputSelect.js │ │ │ │ ├── ColorBadge.js │ │ │ │ ├── DoneButton.js │ │ │ │ ├── EditButton.js │ │ │ │ ├── MappedValue.js │ │ │ │ ├── ReferencesInput.js │ │ │ │ ├── ReportModal.js │ │ │ │ └── Scale.js │ │ │ ├── fields │ │ │ │ ├── Field.js │ │ │ │ ├── FieldAtmosphericHumidity.js │ │ │ │ ├── FieldCalendar.js │ │ │ │ ├── FieldColor.js │ │ │ │ ├── FieldConspicuous.js │ │ │ │ ├── FieldDuration.js │ │ │ │ ├── FieldEdiblePart.js │ │ │ │ ├── FieldFoliageTexture.js │ │ │ │ ├── FieldGrowthHabit.js │ │ │ │ ├── FieldHeightAverage.js │ │ │ │ ├── FieldImage.js │ │ │ │ ├── FieldLeafRetention.js │ │ │ │ ├── FieldLight.js │ │ │ │ ├── FieldObservation.js │ │ │ │ ├── FieldPh.js │ │ │ │ ├── FieldPrecipitations.js │ │ │ │ ├── FieldSoilHumidity.js │ │ │ │ ├── FieldSoilNutriments.js │ │ │ │ ├── FieldSoilSalinity.js │ │ │ │ ├── FieldSoilTexture.js │ │ │ │ ├── FieldTemperature.js │ │ │ │ └── Unknown.js │ │ │ └── utils │ │ │ │ └── utils.js │ │ ├── home │ │ │ ├── admin.js │ │ │ ├── codesandbox.js │ │ │ └── home.js │ │ ├── lazy.js │ │ ├── manage.js │ │ ├── manage.scss │ │ ├── manage │ │ │ ├── plants.scss │ │ │ ├── scaffolds.scss │ │ │ ├── search.js │ │ │ └── stats.js │ │ └── sections │ │ │ ├── _explore.scss │ │ │ ├── _home.scss │ │ │ └── _variables.scss │ └── stylesheets │ │ └── main.css ├── controllers │ ├── api │ │ ├── api_controller.rb │ │ ├── auth │ │ │ └── auth_controller.rb │ │ └── v1 │ │ │ ├── division_classes_controller.rb │ │ │ ├── division_orders_controller.rb │ │ │ ├── divisions_controller.rb │ │ │ ├── families_controller.rb │ │ │ ├── genus_controller.rb │ │ │ ├── home_controller.rb │ │ │ ├── kingdoms_controller.rb │ │ │ ├── plants_controller.rb │ │ │ ├── record_corrections_controller.rb │ │ │ ├── species_controller.rb │ │ │ ├── subkingdoms_controller.rb │ │ │ ├── users_controller.rb │ │ │ └── zones_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ ├── .keep │ │ ├── collection_renderers.rb │ │ └── with_cached_count.rb │ ├── explore │ │ ├── data_controller.rb │ │ ├── explore_controller.rb │ │ ├── genus_controller.rb │ │ ├── record_corrections_controller.rb │ │ └── species_controller.rb │ ├── home_controller.rb │ ├── management │ │ ├── division_classes_controller.rb │ │ ├── division_orders_controller.rb │ │ ├── divisions_controller.rb │ │ ├── families_controller.rb │ │ ├── foreign_sources_controller.rb │ │ ├── foreign_sources_plants_controller.rb │ │ ├── genuses_controller.rb │ │ ├── kingdoms_controller.rb │ │ ├── major_groups_controller.rb │ │ ├── management_controller.rb │ │ ├── plants_controller.rb │ │ ├── record_corrections_controller.rb │ │ ├── species_controller.rb │ │ ├── species_images_controller.rb │ │ ├── subkingdoms_controller.rb │ │ ├── user_queries_controller.rb │ │ └── users_controller.rb │ ├── profile_controller.rb │ └── users │ │ ├── omniauth_callbacks_controller.rb │ │ └── registrations_controller.rb ├── helpers │ ├── application_helper.rb │ ├── plants_helper.rb │ ├── record_correction_helper.rb │ └── users │ │ └── omniauth_callbacks_helper.rb ├── interactors │ ├── corrections │ │ ├── save_record_correction.rb │ │ └── validate_record_correction.rb │ └── submit_correction.rb ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── common_name.rb │ ├── concerns │ │ ├── .keep │ │ ├── filterable.rb │ │ ├── rangeable.rb │ │ ├── scopes │ │ │ ├── families.rb │ │ │ ├── genus.rb │ │ │ ├── plants.rb │ │ │ ├── species.rb │ │ │ └── zones.rb │ │ ├── search │ │ │ └── species.rb │ │ └── sortable.rb │ ├── division.rb │ ├── division_class.rb │ ├── division_order.rb │ ├── family.rb │ ├── foreign_source.rb │ ├── foreign_sources_plant.rb │ ├── genus.rb │ ├── kingdom.rb │ ├── major_group.rb │ ├── plant.rb │ ├── record_correction.rb │ ├── session.rb │ ├── species.rb │ ├── species_distribution.rb │ ├── species_image.rb │ ├── species_proposal.rb │ ├── species_trend.rb │ ├── subkingdom.rb │ ├── synonym.rb │ ├── user.rb │ ├── user_query.rb │ └── zone.rb ├── serializers │ ├── base_serializer.rb │ ├── division_class_serializer.rb │ ├── division_order_serializer.rb │ ├── division_serializer.rb │ ├── family_light_serializer.rb │ ├── family_serializer.rb │ ├── foreign_sources_plant_serializer.rb │ ├── genus_light_serializer.rb │ ├── genus_serializer.rb │ ├── kingdom_serializer.rb │ ├── plant_light_serializer.rb │ ├── plant_serializer.rb │ ├── record_correction_serializer.rb │ ├── species_distribution_serializer.rb │ ├── species_image_serializer.rb │ ├── species_light_serializer.rb │ ├── species_serializer.rb │ ├── subkingdom_serializer.rb │ ├── synonym_serializer.rb │ ├── zone_light_serializer.rb │ └── zone_serializer.rb ├── validators │ ├── scientific_name_length_validator.rb │ └── scientific_name_structure_validator.rb ├── views │ ├── devise │ │ ├── confirmations │ │ │ └── new.html.erb │ │ ├── mailer │ │ │ ├── confirmation_instructions.html.erb │ │ │ ├── email_changed.html.erb │ │ │ ├── password_change.html.erb │ │ │ ├── reset_password_instructions.html.erb │ │ │ └── unlock_instructions.html.erb │ │ ├── passwords │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── registrations │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── sessions │ │ │ └── new.html.erb │ │ ├── shared │ │ │ ├── _error_messages.html.erb │ │ │ └── _links.html.erb │ │ └── unlocks │ │ │ └── new.html.erb │ ├── explore │ │ ├── data │ │ │ └── index.html.erb │ │ ├── genus │ │ │ ├── _genus_header.html.erb │ │ │ ├── index.html.erb │ │ │ └── show.html.erb │ │ ├── layouts │ │ │ └── _navbar.html.erb │ │ ├── record_corrections │ │ │ ├── _correction_header.html.erb │ │ │ ├── _correction_item.html.erb │ │ │ ├── _corrections_menu.html.erb │ │ │ ├── _header.html.erb │ │ │ ├── index.html.erb │ │ │ └── show.html.erb │ │ └── species │ │ │ ├── _species_header.html.erb │ │ │ ├── _species_item.html.erb │ │ │ ├── _species_menu.html.erb │ │ │ ├── index.html.erb │ │ │ └── show.html.erb │ ├── home │ │ ├── about.html.erb │ │ ├── donate.html.erb │ │ ├── index.html.erb │ │ └── licence.erb │ ├── layouts │ │ ├── _footer.erb │ │ ├── _navbar.html.erb │ │ └── application.html.erb │ ├── management │ │ ├── division_classes │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── division_orders │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── divisions │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── families │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── foreign_sources │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── foreign_sources_plants │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── genuses │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── kingdoms │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── layouts │ │ │ ├── _header.html.erb │ │ │ ├── application.html.erb │ │ │ ├── mailer.html.erb │ │ │ └── mailer.text.erb │ │ ├── major_groups │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── plants │ │ │ ├── _form.html.erb │ │ │ ├── _plant.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── record_corrections │ │ │ └── index.html.erb │ │ ├── sessions │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── species │ │ │ ├── _form.html.erb │ │ │ ├── _form_flower.html.erb │ │ │ ├── _form_foliage.html.erb │ │ │ ├── _form_fruit.html.erb │ │ │ ├── _form_growth.html.erb │ │ │ ├── _form_specifications.html.erb │ │ │ ├── _species.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── species_images │ │ │ ├── _form.html.erb │ │ │ ├── chaos.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── species_proposals │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── subkingdoms │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── user_queries │ │ │ ├── index.html.erb │ │ │ └── stats.html.erb │ │ └── users │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ └── profile │ │ └── index.html.erb └── workers │ ├── migrators │ ├── counters_worker.rb │ ├── flags_worker.rb │ ├── images_fixer_worker.rb │ ├── main_images_worker.rb │ ├── slugs_worker.rb │ ├── species_scientific_names_subspecies_worker.rb │ ├── synonyms_duplicates_worker.rb │ ├── synonyms_worker.rb │ ├── update_correction_species_references_worker.rb │ └── usda_references_worker.rb │ ├── run_check_worker.rb │ ├── search │ ├── index_all_worker.rb │ └── reindex_species_worker.rb │ ├── sitemap_worker.rb │ ├── species_refresh_worker.rb │ ├── sponsorship │ └── update_sponsor_worker.rb │ └── user_query_worker.rb ├── bin ├── bundle ├── dev ├── post-start ├── rails ├── rake ├── setup ├── spring ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── bulma_form_builder.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── cors.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── measured.rb │ ├── meta_tags.rb │ ├── mime_types.rb │ ├── new_framework_defaults_6_0.rb │ ├── new_framework_defaults_7_0.rb │ ├── pagy.rb │ ├── permissions_policy.rb │ ├── rack_attack.rb │ ├── rswag-ui.rb │ ├── rswag_api.rb │ ├── searchkiq.rb │ ├── sentry.rb │ ├── session_store.rb │ ├── sidekiq.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── puma.rb ├── routes.rb ├── schedule.yml ├── sidekiq.yml ├── sitemap.rb ├── spring.rb ├── storage.yml └── webpack │ └── webpack.config.js ├── db ├── botanic_seeds.rb ├── migrate │ ├── 20190422114953_add_vegetables.rb │ ├── 20191208125753_add_plants_metadata.rb │ ├── 20191213135913_add_copyright_to_foreign_sources.rb │ ├── 20200609003426_change_plants_biblio_column_type.rb │ ├── 20200609083938_add_devise_to_users.rb │ ├── 20200611135633_create_record_corrections.rb │ ├── 20200611193330_add_foreign_key_constraint_to_active_storage_attachments_for_blob_id.active_storage.rb │ ├── 20200611215231_add_created_at_to_resources.rb │ ├── 20200613134326_create_synonyms.rb │ ├── 20200613141329_migrate_fs_data.rb │ ├── 20200615001016_add_measurements_columns.rb │ ├── 20200615004208_migrate_mesurements.rb │ ├── 20200615183904_setup_indexes.rb │ ├── 20200616112455_create_common_names.rb │ ├── 20200616112526_add_part_to_image.rb │ ├── 20200616180939_add_images_count_to_plants.rb │ ├── 20200616181035_add_sources_count_to_species.rb │ ├── 20200616181046_add_sources_count_to_plants.rb │ ├── 20200616181100_add_images_count_to_species.rb │ ├── 20200616181831_add_synonyms_count_to_species.rb │ ├── 20200617120741_remove_unused_indexes.rb │ ├── 20200617120817_add_suggested_indexes.rb │ ├── 20200617121059_add_scores.rb │ ├── 20200617124253_add_image_score.rb │ ├── 20200618213219_add_duration_flag.rb │ ├── 20200619105715_migrate_new_species_columns.rb │ ├── 20200619202712_cleanup_columns.rb │ ├── 20200620100635_rename_species_columns.rb │ ├── 20200620123313_add_additional_fields.rb │ ├── 20200620125100_add_other_additional_fields.rb │ ├── 20200620210049_add_hardiness_and_zones.rb │ ├── 20200620212005_create_zones.rb │ ├── 20200620212041_create_species_distributions.rb │ ├── 20200621111116_rename_native_status.rb │ ├── 20200621131510_add_text_catminat_columns.rb │ ├── 20200624160931_add_checks_and_tokens.rb │ ├── 20200625175116_add_vegetable_type.rb │ ├── 20200626015552_add_planting_columns.rb │ ├── 20200702005046_create_user_queries.rb │ ├── 20200702142643_additional_fields_for_record_corrections.rb │ ├── 20200704102557_add_species_main_image.rb │ ├── 20200704123501_add_species_metadatas.rb │ ├── 20200704125502_add_species_other_metadatas.rb │ ├── 20200704130740_add_main_image_url_to_plant.rb │ ├── 20200704140423_remove_units_columns.rb │ ├── 20200705140448_add_suggested_indexes_bis.rb │ ├── 20200705144833_add_species_indexes_again.rb │ ├── 20200711102502_add_zone_slug.rb │ ├── 20200711103755_add_species_count_to_zones.rb │ ├── 20200714091503_create_millisearch_indexes.rb │ ├── 20200714114150_create_guest_user.rb │ ├── 20200715174645_add_better_filters_indexes.rb │ ├── 20200723110359_add_light_suggested_indexes.rb │ ├── 20200723120531_add_slug_to_distributions.rb │ ├── 20200809123247_remove_old_columns.rb │ ├── 20200814120043_add_phylum_to_species.rb │ ├── 20200814135845_create_species_trends.rb │ ├── 20200910100523_add_suggested_indexes_2.rb │ ├── 20201002141450_add_species_contraint.rb │ ├── 20221206140234_add_service_name_to_active_storage_blobs.active_storage.rb │ ├── 20221206140235_create_active_storage_variant_records.active_storage.rb │ ├── 20221206140236_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb │ ├── 20250930132418_add_omni_auth_to_users.rb │ └── 20250930132420_add_sponsorship_fields_to_users.rb ├── schema.rb └── seeds.rb ├── entrypoint.sh ├── lib ├── assets │ └── .keep ├── auth │ └── json_web_token.rb ├── checks.rb ├── checks │ ├── check.rb │ ├── genus_name.rb │ ├── genus_species.rb │ ├── name_acceptance.rb │ ├── scientific_name_format.rb │ ├── species_duplicates.rb │ └── wrong_plants_scientific_names.rb ├── ingester.rb ├── ingester │ ├── converter │ │ ├── boolean.rb │ │ ├── common_name.rb │ │ ├── enum.rb │ │ ├── flag.rb │ │ ├── float.rb │ │ ├── genus.rb │ │ ├── image.rb │ │ ├── measurement.rb │ │ ├── number.rb │ │ ├── source.rb │ │ └── text.rb │ └── species.rb ├── migrators │ ├── families.rb │ ├── flags.rb │ ├── images_fixer.rb │ ├── main_images.rb │ ├── main_species.rb │ ├── metrics.rb │ ├── plant_scientific_names.rb │ ├── references.rb │ ├── slugs.rb │ ├── species_scientific_names_subspecies.rb │ ├── synonyms.rb │ ├── synonyms_duplicates.rb │ ├── tokens_duplicates.rb │ ├── update_correction_species_references.rb │ ├── usda_references.rb │ └── zones.rb ├── resolver.rb ├── resolver │ ├── gbif.rb │ └── powo.rb ├── schemas │ ├── helpers.rb │ ├── v1.rb │ └── v1 │ │ ├── division.rb │ │ ├── division_class.rb │ │ ├── division_order.rb │ │ ├── family.rb │ │ ├── genus.rb │ │ ├── kingdom.rb │ │ ├── plant.rb │ │ ├── record_correction.rb │ │ ├── source.rb │ │ ├── species.rb │ │ ├── subkingdom.rb │ │ └── zone.rb ├── sponsorship │ └── github_sponsorship.rb ├── tasks │ ├── .keep │ ├── admin.rake │ ├── auto_annotate_models.rake │ ├── doc.rake │ ├── dump.rake │ └── dump_data.rake ├── temperature.rb └── utils │ ├── csv.rb │ ├── merger.rb │ ├── ranges.rb │ └── scientific_name.rb ├── log └── .keep ├── package.json ├── postcss.config.js ├── public ├── 404.html ├── 422.html ├── 500.html ├── android-chrome-192x192.png ├── android-chrome-384x384.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fontawesome │ ├── LICENSE.txt │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── duotone.css │ │ ├── duotone.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── light.css │ │ ├── light.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-shims.css │ │ └── v4-shims.min.css │ ├── js │ │ ├── all.js │ │ ├── all.min.js │ │ ├── brands.js │ │ ├── brands.min.js │ │ ├── conflict-detection.js │ │ ├── conflict-detection.min.js │ │ ├── duotone.js │ │ ├── duotone.min.js │ │ ├── fontawesome.js │ │ ├── fontawesome.min.js │ │ ├── light.js │ │ ├── light.min.js │ │ ├── regular.js │ │ ├── regular.min.js │ │ ├── solid.js │ │ ├── solid.min.js │ │ ├── v4-shims.js │ │ └── v4-shims.min.js │ ├── less │ │ ├── _animated.less │ │ ├── _bordered-pulled.less │ │ ├── _core.less │ │ ├── _fixed-width.less │ │ ├── _icons.less │ │ ├── _larger.less │ │ ├── _list.less │ │ ├── _mixins.less │ │ ├── _rotated-flipped.less │ │ ├── _screen-reader.less │ │ ├── _shims.less │ │ ├── _stacked.less │ │ ├── _variables.less │ │ ├── brands.less │ │ ├── duotone.less │ │ ├── fontawesome.less │ │ ├── light.less │ │ ├── regular.less │ │ ├── solid.less │ │ └── v4-shims.less │ ├── metadata │ │ ├── categories.yml │ │ ├── icons.json │ │ ├── icons.yml │ │ ├── shims.json │ │ ├── shims.yml │ │ └── sponsors.yml │ ├── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _shims.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ ├── brands.scss │ │ ├── duotone.scss │ │ ├── fontawesome.scss │ │ ├── light.scss │ │ ├── regular.scss │ │ ├── solid.scss │ │ └── v4-shims.scss │ ├── sprites │ │ ├── brands.svg │ │ ├── duotone.svg │ │ ├── light.svg │ │ ├── regular.svg │ │ └── solid.svg │ ├── svgs │ │ ├── brands │ │ │ ├── 500px.svg │ │ │ ├── accessible-icon.svg │ │ │ ├── accusoft.svg │ │ │ ├── acquisitions-incorporated.svg │ │ │ ├── adn.svg │ │ │ ├── adobe.svg │ │ │ ├── adversal.svg │ │ │ ├── affiliatetheme.svg │ │ │ ├── airbnb.svg │ │ │ ├── algolia.svg │ │ │ ├── alipay.svg │ │ │ ├── amazon-pay.svg │ │ │ ├── amazon.svg │ │ │ ├── amilia.svg │ │ │ ├── android.svg │ │ │ ├── angellist.svg │ │ │ ├── angrycreative.svg │ │ │ ├── angular.svg │ │ │ ├── app-store-ios.svg │ │ │ ├── app-store.svg │ │ │ ├── apper.svg │ │ │ ├── apple-pay.svg │ │ │ ├── apple.svg │ │ │ ├── artstation.svg │ │ │ ├── asymmetrik.svg │ │ │ ├── atlassian.svg │ │ │ ├── audible.svg │ │ │ ├── autoprefixer.svg │ │ │ ├── avianex.svg │ │ │ ├── aviato.svg │ │ │ ├── aws.svg │ │ │ ├── bandcamp.svg │ │ │ ├── battle-net.svg │ │ │ ├── behance-square.svg │ │ │ ├── behance.svg │ │ │ ├── bimobject.svg │ │ │ ├── bitbucket.svg │ │ │ ├── bitcoin.svg │ │ │ ├── bity.svg │ │ │ ├── black-tie.svg │ │ │ ├── blackberry.svg │ │ │ ├── blogger-b.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-b.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bootstrap.svg │ │ │ ├── btc.svg │ │ │ ├── buffer.svg │ │ │ ├── buromobelexperte.svg │ │ │ ├── buy-n-large.svg │ │ │ ├── buysellads.svg │ │ │ ├── canadian-maple-leaf.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 │ │ │ ├── chrome.svg │ │ │ ├── chromecast.svg │ │ │ ├── cloudscale.svg │ │ │ ├── cloudsmith.svg │ │ │ ├── cloudversify.svg │ │ │ ├── codepen.svg │ │ │ ├── codiepie.svg │ │ │ ├── confluence.svg │ │ │ ├── connectdevelop.svg │ │ │ ├── contao.svg │ │ │ ├── cotton-bureau.svg │ │ │ ├── cpanel.svg │ │ │ ├── creative-commons-by.svg │ │ │ ├── creative-commons-nc-eu.svg │ │ │ ├── creative-commons-nc-jp.svg │ │ │ ├── creative-commons-nc.svg │ │ │ ├── creative-commons-nd.svg │ │ │ ├── creative-commons-pd-alt.svg │ │ │ ├── creative-commons-pd.svg │ │ │ ├── creative-commons-remix.svg │ │ │ ├── creative-commons-sa.svg │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ ├── creative-commons-sampling.svg │ │ │ ├── creative-commons-share.svg │ │ │ ├── creative-commons-zero.svg │ │ │ ├── creative-commons.svg │ │ │ ├── critical-role.svg │ │ │ ├── css3-alt.svg │ │ │ ├── css3.svg │ │ │ ├── cuttlefish.svg │ │ │ ├── d-and-d-beyond.svg │ │ │ ├── d-and-d.svg │ │ │ ├── dailymotion.svg │ │ │ ├── dashcube.svg │ │ │ ├── deezer.svg │ │ │ ├── delicious.svg │ │ │ ├── deploydog.svg │ │ │ ├── deskpro.svg │ │ │ ├── dev.svg │ │ │ ├── deviantart.svg │ │ │ ├── dhl.svg │ │ │ ├── diaspora.svg │ │ │ ├── digg.svg │ │ │ ├── digital-ocean.svg │ │ │ ├── discord.svg │ │ │ ├── discourse.svg │ │ │ ├── dochub.svg │ │ │ ├── docker.svg │ │ │ ├── draft2digital.svg │ │ │ ├── dribbble-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox.svg │ │ │ ├── drupal.svg │ │ │ ├── dyalog.svg │ │ │ ├── earlybirds.svg │ │ │ ├── ebay.svg │ │ │ ├── edge-legacy.svg │ │ │ ├── edge.svg │ │ │ ├── elementor.svg │ │ │ ├── ello.svg │ │ │ ├── ember.svg │ │ │ ├── empire.svg │ │ │ ├── envira.svg │ │ │ ├── erlang.svg │ │ │ ├── ethereum.svg │ │ │ ├── etsy.svg │ │ │ ├── evernote.svg │ │ │ ├── expeditedssl.svg │ │ │ ├── facebook-f.svg │ │ │ ├── facebook-messenger.svg │ │ │ ├── facebook-square.svg │ │ │ ├── facebook.svg │ │ │ ├── fantasy-flight-games.svg │ │ │ ├── fedex.svg │ │ │ ├── fedora.svg │ │ │ ├── figma.svg │ │ │ ├── firefox-browser.svg │ │ │ ├── firefox.svg │ │ │ ├── first-order-alt.svg │ │ │ ├── first-order.svg │ │ │ ├── firstdraft.svg │ │ │ ├── flickr.svg │ │ │ ├── flipboard.svg │ │ │ ├── fly.svg │ │ │ ├── font-awesome-alt.svg │ │ │ ├── font-awesome-flag.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-awesome.svg │ │ │ ├── fonticons-fi.svg │ │ │ ├── fonticons.svg │ │ │ ├── fort-awesome-alt.svg │ │ │ ├── fort-awesome.svg │ │ │ ├── forumbee.svg │ │ │ ├── foursquare.svg │ │ │ ├── free-code-camp.svg │ │ │ ├── freebsd.svg │ │ │ ├── fulcrum.svg │ │ │ ├── galactic-republic.svg │ │ │ ├── galactic-senate.svg │ │ │ ├── get-pocket.svg │ │ │ ├── gg-circle.svg │ │ │ ├── gg.svg │ │ │ ├── git-alt.svg │ │ │ ├── git-square.svg │ │ │ ├── git.svg │ │ │ ├── github-alt.svg │ │ │ ├── github-square.svg │ │ │ ├── github.svg │ │ │ ├── gitkraken.svg │ │ │ ├── gitlab.svg │ │ │ ├── gitter.svg │ │ │ ├── glide-g.svg │ │ │ ├── glide.svg │ │ │ ├── gofore.svg │ │ │ ├── goodreads-g.svg │ │ │ ├── goodreads.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-pay.svg │ │ │ ├── google-play.svg │ │ │ ├── google-plus-g.svg │ │ │ ├── google-plus-square.svg │ │ │ ├── google-plus.svg │ │ │ ├── google-wallet.svg │ │ │ ├── google.svg │ │ │ ├── gratipay.svg │ │ │ ├── grav.svg │ │ │ ├── gripfire.svg │ │ │ ├── grunt.svg │ │ │ ├── gulp.svg │ │ │ ├── hacker-news-square.svg │ │ │ ├── hacker-news.svg │ │ │ ├── hackerrank.svg │ │ │ ├── hips.svg │ │ │ ├── hire-a-helper.svg │ │ │ ├── hooli.svg │ │ │ ├── hornbill.svg │ │ │ ├── hotjar.svg │ │ │ ├── houzz.svg │ │ │ ├── html5.svg │ │ │ ├── hubspot.svg │ │ │ ├── ideal.svg │ │ │ ├── imdb.svg │ │ │ ├── instagram-square.svg │ │ │ ├── instagram.svg │ │ │ ├── intercom.svg │ │ │ ├── internet-explorer.svg │ │ │ ├── invision.svg │ │ │ ├── ioxhost.svg │ │ │ ├── itch-io.svg │ │ │ ├── itunes-note.svg │ │ │ ├── itunes.svg │ │ │ ├── java.svg │ │ │ ├── jedi-order.svg │ │ │ ├── jenkins.svg │ │ │ ├── jira.svg │ │ │ ├── joget.svg │ │ │ ├── joomla.svg │ │ │ ├── js-square.svg │ │ │ ├── js.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── kaggle.svg │ │ │ ├── keybase.svg │ │ │ ├── keycdn.svg │ │ │ ├── kickstarter-k.svg │ │ │ ├── kickstarter.svg │ │ │ ├── korvue.svg │ │ │ ├── laravel.svg │ │ │ ├── lastfm-square.svg │ │ │ ├── lastfm.svg │ │ │ ├── leanpub.svg │ │ │ ├── less.svg │ │ │ ├── line.svg │ │ │ ├── linkedin-in.svg │ │ │ ├── linkedin.svg │ │ │ ├── linode.svg │ │ │ ├── linux.svg │ │ │ ├── lyft.svg │ │ │ ├── magento.svg │ │ │ ├── mailchimp.svg │ │ │ ├── mandalorian.svg │ │ │ ├── markdown.svg │ │ │ ├── mastodon.svg │ │ │ ├── maxcdn.svg │ │ │ ├── mdb.svg │ │ │ ├── medapps.svg │ │ │ ├── medium-m.svg │ │ │ ├── medium.svg │ │ │ ├── medrt.svg │ │ │ ├── meetup.svg │ │ │ ├── megaport.svg │ │ │ ├── mendeley.svg │ │ │ ├── microblog.svg │ │ │ ├── microsoft.svg │ │ │ ├── mix.svg │ │ │ ├── mixcloud.svg │ │ │ ├── mixer.svg │ │ │ ├── mizuni.svg │ │ │ ├── modx.svg │ │ │ ├── monero.svg │ │ │ ├── napster.svg │ │ │ ├── neos.svg │ │ │ ├── nimblr.svg │ │ │ ├── node-js.svg │ │ │ ├── node.svg │ │ │ ├── npm.svg │ │ │ ├── ns8.svg │ │ │ ├── nutritionix.svg │ │ │ ├── odnoklassniki-square.svg │ │ │ ├── odnoklassniki.svg │ │ │ ├── old-republic.svg │ │ │ ├── opencart.svg │ │ │ ├── openid.svg │ │ │ ├── opera.svg │ │ │ ├── optin-monster.svg │ │ │ ├── orcid.svg │ │ │ ├── osi.svg │ │ │ ├── page4.svg │ │ │ ├── pagelines.svg │ │ │ ├── palfed.svg │ │ │ ├── patreon.svg │ │ │ ├── paypal.svg │ │ │ ├── penny-arcade.svg │ │ │ ├── periscope.svg │ │ │ ├── phabricator.svg │ │ │ ├── phoenix-framework.svg │ │ │ ├── phoenix-squadron.svg │ │ │ ├── php.svg │ │ │ ├── pied-piper-alt.svg │ │ │ ├── pied-piper-hat.svg │ │ │ ├── pied-piper-pp.svg │ │ │ ├── pied-piper-square.svg │ │ │ ├── pied-piper.svg │ │ │ ├── pinterest-p.svg │ │ │ ├── pinterest-square.svg │ │ │ ├── pinterest.svg │ │ │ ├── playstation.svg │ │ │ ├── product-hunt.svg │ │ │ ├── pushed.svg │ │ │ ├── python.svg │ │ │ ├── qq.svg │ │ │ ├── quinscape.svg │ │ │ ├── quora.svg │ │ │ ├── r-project.svg │ │ │ ├── raspberry-pi.svg │ │ │ ├── ravelry.svg │ │ │ ├── react.svg │ │ │ ├── reacteurope.svg │ │ │ ├── readme.svg │ │ │ ├── rebel.svg │ │ │ ├── red-river.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── reddit-square.svg │ │ │ ├── reddit.svg │ │ │ ├── redhat.svg │ │ │ ├── renren.svg │ │ │ ├── replyd.svg │ │ │ ├── researchgate.svg │ │ │ ├── resolving.svg │ │ │ ├── rev.svg │ │ │ ├── rocketchat.svg │ │ │ ├── rockrms.svg │ │ │ ├── rust.svg │ │ │ ├── safari.svg │ │ │ ├── salesforce.svg │ │ │ ├── sass.svg │ │ │ ├── schlix.svg │ │ │ ├── scribd.svg │ │ │ ├── searchengin.svg │ │ │ ├── sellcast.svg │ │ │ ├── sellsy.svg │ │ │ ├── servicestack.svg │ │ │ ├── shirtsinbulk.svg │ │ │ ├── shopify.svg │ │ │ ├── shopware.svg │ │ │ ├── simplybuilt.svg │ │ │ ├── sistrix.svg │ │ │ ├── sith.svg │ │ │ ├── sketch.svg │ │ │ ├── skyatlas.svg │ │ │ ├── skype.svg │ │ │ ├── slack-hash.svg │ │ │ ├── slack.svg │ │ │ ├── slideshare.svg │ │ │ ├── snapchat-ghost.svg │ │ │ ├── snapchat-square.svg │ │ │ ├── snapchat.svg │ │ │ ├── soundcloud.svg │ │ │ ├── sourcetree.svg │ │ │ ├── speakap.svg │ │ │ ├── speaker-deck.svg │ │ │ ├── spotify.svg │ │ │ ├── squarespace.svg │ │ │ ├── stack-exchange.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stackpath.svg │ │ │ ├── staylinked.svg │ │ │ ├── steam-square.svg │ │ │ ├── steam-symbol.svg │ │ │ ├── steam.svg │ │ │ ├── sticker-mule.svg │ │ │ ├── strava.svg │ │ │ ├── stripe-s.svg │ │ │ ├── stripe.svg │ │ │ ├── studiovinari.svg │ │ │ ├── stumbleupon-circle.svg │ │ │ ├── stumbleupon.svg │ │ │ ├── superpowers.svg │ │ │ ├── supple.svg │ │ │ ├── suse.svg │ │ │ ├── swift.svg │ │ │ ├── symfony.svg │ │ │ ├── teamspeak.svg │ │ │ ├── telegram-plane.svg │ │ │ ├── telegram.svg │ │ │ ├── tencent-weibo.svg │ │ │ ├── the-red-yeti.svg │ │ │ ├── themeco.svg │ │ │ ├── themeisle.svg │ │ │ ├── think-peaks.svg │ │ │ ├── tiktok.svg │ │ │ ├── trade-federation.svg │ │ │ ├── trello.svg │ │ │ ├── tripadvisor.svg │ │ │ ├── tumblr-square.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitch.svg │ │ │ ├── twitter-square.svg │ │ │ ├── twitter.svg │ │ │ ├── typo3.svg │ │ │ ├── uber.svg │ │ │ ├── ubuntu.svg │ │ │ ├── uikit.svg │ │ │ ├── umbraco.svg │ │ │ ├── uniregistry.svg │ │ │ ├── unity.svg │ │ │ ├── unsplash.svg │ │ │ ├── untappd.svg │ │ │ ├── ups.svg │ │ │ ├── usb.svg │ │ │ ├── usps.svg │ │ │ ├── ussunnah.svg │ │ │ ├── vaadin.svg │ │ │ ├── viacoin.svg │ │ │ ├── viadeo-square.svg │ │ │ ├── viadeo.svg │ │ │ ├── viber.svg │ │ │ ├── vimeo-square.svg │ │ │ ├── vimeo-v.svg │ │ │ ├── vimeo.svg │ │ │ ├── vine.svg │ │ │ ├── vk.svg │ │ │ ├── vnv.svg │ │ │ ├── vuejs.svg │ │ │ ├── waze.svg │ │ │ ├── weebly.svg │ │ │ ├── weibo.svg │ │ │ ├── weixin.svg │ │ │ ├── whatsapp-square.svg │ │ │ ├── whatsapp.svg │ │ │ ├── whmcs.svg │ │ │ ├── wikipedia-w.svg │ │ │ ├── windows.svg │ │ │ ├── wix.svg │ │ │ ├── wizards-of-the-coast.svg │ │ │ ├── wolf-pack-battalion.svg │ │ │ ├── wordpress-simple.svg │ │ │ ├── wordpress.svg │ │ │ ├── wpbeginner.svg │ │ │ ├── wpexplorer.svg │ │ │ ├── wpforms.svg │ │ │ ├── wpressr.svg │ │ │ ├── xbox.svg │ │ │ ├── xing-square.svg │ │ │ ├── xing.svg │ │ │ ├── y-combinator.svg │ │ │ ├── yahoo.svg │ │ │ ├── yammer.svg │ │ │ ├── yandex-international.svg │ │ │ ├── yandex.svg │ │ │ ├── yarn.svg │ │ │ ├── yelp.svg │ │ │ ├── yoast.svg │ │ │ ├── youtube-square.svg │ │ │ ├── youtube.svg │ │ │ └── zhihu.svg │ │ ├── duotone │ │ │ ├── abacus.svg │ │ │ ├── acorn.svg │ │ │ ├── ad.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── adjust.svg │ │ │ ├── air-conditioner.svg │ │ │ ├── air-freshener.svg │ │ │ ├── alarm-clock.svg │ │ │ ├── alarm-exclamation.svg │ │ │ ├── alarm-plus.svg │ │ │ ├── alarm-snooze.svg │ │ │ ├── album-collection.svg │ │ │ ├── album.svg │ │ │ ├── alicorn.svg │ │ │ ├── alien-monster.svg │ │ │ ├── alien.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── align-slash.svg │ │ │ ├── allergies.svg │ │ │ ├── ambulance.svg │ │ │ ├── american-sign-language-interpreting.svg │ │ │ ├── amp-guitar.svg │ │ │ ├── analytics.svg │ │ │ ├── anchor.svg │ │ │ ├── angel.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 │ │ │ ├── ankh.svg │ │ │ ├── apple-alt.svg │ │ │ ├── apple-crate.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-alt-down.svg │ │ │ ├── arrow-alt-from-bottom.svg │ │ │ ├── arrow-alt-from-left.svg │ │ │ ├── arrow-alt-from-right.svg │ │ │ ├── arrow-alt-from-top.svg │ │ │ ├── arrow-alt-left.svg │ │ │ ├── arrow-alt-right.svg │ │ │ ├── arrow-alt-square-down.svg │ │ │ ├── arrow-alt-square-left.svg │ │ │ ├── arrow-alt-square-right.svg │ │ │ ├── arrow-alt-square-up.svg │ │ │ ├── arrow-alt-to-bottom.svg │ │ │ ├── arrow-alt-to-left.svg │ │ │ ├── arrow-alt-to-right.svg │ │ │ ├── arrow-alt-to-top.svg │ │ │ ├── arrow-alt-up.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-from-bottom.svg │ │ │ ├── arrow-from-left.svg │ │ │ ├── arrow-from-right.svg │ │ │ ├── arrow-from-top.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-square-down.svg │ │ │ ├── arrow-square-left.svg │ │ │ ├── arrow-square-right.svg │ │ │ ├── arrow-square-up.svg │ │ │ ├── arrow-to-bottom.svg │ │ │ ├── arrow-to-left.svg │ │ │ ├── arrow-to-right.svg │ │ │ ├── arrow-to-top.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-alt-h.svg │ │ │ ├── arrows-alt-v.svg │ │ │ ├── arrows-alt.svg │ │ │ ├── arrows-h.svg │ │ │ ├── arrows-v.svg │ │ │ ├── arrows.svg │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atlas.svg │ │ │ ├── atom-alt.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── award.svg │ │ │ ├── axe-battle.svg │ │ │ ├── axe.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backpack.svg │ │ │ ├── backspace.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── bacteria.svg │ │ │ ├── bacterium.svg │ │ │ ├── badge-check.svg │ │ │ ├── badge-dollar.svg │ │ │ ├── badge-percent.svg │ │ │ ├── badge-sheriff.svg │ │ │ ├── badge.svg │ │ │ ├── badger-honey.svg │ │ │ ├── bags-shopping.svg │ │ │ ├── bahai.svg │ │ │ ├── balance-scale-left.svg │ │ │ ├── balance-scale-right.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ball-pile.svg │ │ │ ├── ballot-check.svg │ │ │ ├── ballot.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── banjo.svg │ │ │ ├── barcode-alt.svg │ │ │ ├── barcode-read.svg │ │ │ ├── barcode-scan.svg │ │ │ ├── barcode.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── baseball.svg │ │ │ ├── basketball-ball.svg │ │ │ ├── basketball-hoop.svg │ │ │ ├── bat.svg │ │ │ ├── bath.svg │ │ │ ├── battery-bolt.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── battery-slash.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── bed-alt.svg │ │ │ ├── bed-bunk.svg │ │ │ ├── bed-empty.svg │ │ │ ├── bed.svg │ │ │ ├── beer.svg │ │ │ ├── bell-exclamation.svg │ │ │ ├── bell-on.svg │ │ │ ├── bell-plus.svg │ │ │ ├── bell-school-slash.svg │ │ │ ├── bell-school.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bells.svg │ │ │ ├── betamax.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bible.svg │ │ │ ├── bicycle.svg │ │ │ ├── biking-mountain.svg │ │ │ ├── biking.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── blanket.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blind.svg │ │ │ ├── blinds-open.svg │ │ │ ├── blinds-raised.svg │ │ │ ├── blinds.svg │ │ │ ├── blog.svg │ │ │ ├── bold.svg │ │ │ ├── bolt.svg │ │ │ ├── bomb.svg │ │ │ ├── bone-break.svg │ │ │ ├── bone.svg │ │ │ ├── bong.svg │ │ │ ├── book-alt.svg │ │ │ ├── book-dead.svg │ │ │ ├── book-heart.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open.svg │ │ │ ├── book-reader.svg │ │ │ ├── book-spells.svg │ │ │ ├── book-user.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── books-medical.svg │ │ │ ├── books.svg │ │ │ ├── boombox.svg │ │ │ ├── boot.svg │ │ │ ├── booth-curtain.svg │ │ │ ├── border-all.svg │ │ │ ├── border-bottom.svg │ │ │ ├── border-center-h.svg │ │ │ ├── border-center-v.svg │ │ │ ├── border-inner.svg │ │ │ ├── border-left.svg │ │ │ ├── border-none.svg │ │ │ ├── border-outer.svg │ │ │ ├── border-right.svg │ │ │ ├── border-style-alt.svg │ │ │ ├── border-style.svg │ │ │ ├── border-top.svg │ │ │ ├── bow-arrow.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── bowling-pins.svg │ │ │ ├── box-alt.svg │ │ │ ├── box-ballot.svg │ │ │ ├── box-check.svg │ │ │ ├── box-fragile.svg │ │ │ ├── box-full.svg │ │ │ ├── box-heart.svg │ │ │ ├── box-open.svg │ │ │ ├── box-tissue.svg │ │ │ ├── box-up.svg │ │ │ ├── box-usd.svg │ │ │ ├── box.svg │ │ │ ├── boxes-alt.svg │ │ │ ├── boxes.svg │ │ │ ├── boxing-glove.svg │ │ │ ├── brackets-curly.svg │ │ │ ├── brackets.svg │ │ │ ├── braille.svg │ │ │ ├── brain.svg │ │ │ ├── bread-loaf.svg │ │ │ ├── bread-slice.svg │ │ │ ├── briefcase-medical.svg │ │ │ ├── briefcase.svg │ │ │ ├── bring-forward.svg │ │ │ ├── bring-front.svg │ │ │ ├── broadcast-tower.svg │ │ │ ├── broom.svg │ │ │ ├── browser.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── bullseye-arrow.svg │ │ │ ├── bullseye-pointer.svg │ │ │ ├── bullseye.svg │ │ │ ├── burger-soda.svg │ │ │ ├── burn.svg │ │ │ ├── burrito.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus-school.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── cabinet-filing.svg │ │ │ ├── cactus.svg │ │ │ ├── calculator-alt.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-edit.svg │ │ │ ├── calendar-exclamation.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-star.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar.svg │ │ │ ├── camcorder.svg │ │ │ ├── camera-alt.svg │ │ │ ├── camera-home.svg │ │ │ ├── camera-movie.svg │ │ │ ├── camera-polaroid.svg │ │ │ ├── camera-retro.svg │ │ │ ├── camera.svg │ │ │ ├── campfire.svg │ │ │ ├── campground.svg │ │ │ ├── candle-holder.svg │ │ │ ├── candy-cane.svg │ │ │ ├── candy-corn.svg │ │ │ ├── cannabis.svg │ │ │ ├── capsules.svg │ │ │ ├── car-alt.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-building.svg │ │ │ ├── car-bump.svg │ │ │ ├── car-bus.svg │ │ │ ├── car-crash.svg │ │ │ ├── car-garage.svg │ │ │ ├── car-mechanic.svg │ │ │ ├── car-side.svg │ │ │ ├── car-tilt.svg │ │ │ ├── car-wash.svg │ │ │ ├── car.svg │ │ │ ├── caravan-alt.svg │ │ │ ├── caravan.svg │ │ │ ├── caret-circle-down.svg │ │ │ ├── caret-circle-left.svg │ │ │ ├── caret-circle-right.svg │ │ │ ├── caret-circle-up.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 │ │ │ ├── cars.svg │ │ │ ├── cart-arrow-down.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cash-register.svg │ │ │ ├── cassette-tape.svg │ │ │ ├── cat-space.svg │ │ │ ├── cat.svg │ │ │ ├── cauldron.svg │ │ │ ├── cctv.svg │ │ │ ├── certificate.svg │ │ │ ├── chair-office.svg │ │ │ ├── chair.svg │ │ │ ├── chalkboard-teacher.svg │ │ │ ├── chalkboard.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line-down.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-network.svg │ │ │ ├── chart-pie-alt.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chart-scatter.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── cheese-swiss.svg │ │ │ ├── cheese.svg │ │ │ ├── cheeseburger.svg │ │ │ ├── chess-bishop-alt.svg │ │ │ ├── chess-bishop.svg │ │ │ ├── chess-board.svg │ │ │ ├── chess-clock-alt.svg │ │ │ ├── chess-clock.svg │ │ │ ├── chess-king-alt.svg │ │ │ ├── chess-king.svg │ │ │ ├── chess-knight-alt.svg │ │ │ ├── chess-knight.svg │ │ │ ├── chess-pawn-alt.svg │ │ │ ├── chess-pawn.svg │ │ │ ├── chess-queen-alt.svg │ │ │ ├── chess-queen.svg │ │ │ ├── chess-rook-alt.svg │ │ │ ├── chess-rook.svg │ │ │ ├── chess.svg │ │ │ ├── chevron-circle-down.svg │ │ │ ├── chevron-circle-left.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── chevron-double-down.svg │ │ │ ├── chevron-double-left.svg │ │ │ ├── chevron-double-right.svg │ │ │ ├── chevron-double-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-square-down.svg │ │ │ ├── chevron-square-left.svg │ │ │ ├── chevron-square-right.svg │ │ │ ├── chevron-square-up.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child.svg │ │ │ ├── chimney.svg │ │ │ ├── church.svg │ │ │ ├── circle-notch.svg │ │ │ ├── circle.svg │ │ │ ├── city.svg │ │ │ ├── clarinet.svg │ │ │ ├── claw-marks.svg │ │ │ ├── clinic-medical.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-list-check.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard-prescription.svg │ │ │ ├── clipboard-user.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-download-alt.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-hail-mixed.svg │ │ │ ├── cloud-hail.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-music.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-rainbow.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-showers.svg │ │ │ ├── cloud-sleet.svg │ │ │ ├── cloud-snow.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-upload-alt.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── clouds-moon.svg │ │ │ ├── clouds-sun.svg │ │ │ ├── clouds.svg │ │ │ ├── club.svg │ │ │ ├── cocktail.svg │ │ │ ├── code-branch.svg │ │ │ ├── code-commit.svg │ │ │ ├── code-merge.svg │ │ │ ├── code.svg │ │ │ ├── coffee-pot.svg │ │ │ ├── coffee-togo.svg │ │ │ ├── coffee.svg │ │ │ ├── coffin-cross.svg │ │ │ ├── coffin.svg │ │ │ ├── cog.svg │ │ │ ├── cogs.svg │ │ │ ├── coin.svg │ │ │ ├── coins.svg │ │ │ ├── columns.svg │ │ │ ├── comet.svg │ │ │ ├── comment-alt-check.svg │ │ │ ├── comment-alt-dollar.svg │ │ │ ├── comment-alt-dots.svg │ │ │ ├── comment-alt-edit.svg │ │ │ ├── comment-alt-exclamation.svg │ │ │ ├── comment-alt-lines.svg │ │ │ ├── comment-alt-medical.svg │ │ │ ├── comment-alt-minus.svg │ │ │ ├── comment-alt-music.svg │ │ │ ├── comment-alt-plus.svg │ │ │ ├── comment-alt-slash.svg │ │ │ ├── comment-alt-smile.svg │ │ │ ├── comment-alt-times.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-check.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-edit.svg │ │ │ ├── comment-exclamation.svg │ │ │ ├── comment-lines.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-minus.svg │ │ │ ├── comment-music.svg │ │ │ ├── comment-plus.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment-smile.svg │ │ │ ├── comment-times.svg │ │ │ ├── comment.svg │ │ │ ├── comments-alt-dollar.svg │ │ │ ├── comments-alt.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass-slash.svg │ │ │ ├── compass.svg │ │ │ ├── compress-alt.svg │ │ │ ├── compress-arrows-alt.svg │ │ │ ├── compress-wide.svg │ │ │ ├── compress.svg │ │ │ ├── computer-classic.svg │ │ │ ├── computer-speaker.svg │ │ │ ├── concierge-bell.svg │ │ │ ├── construction.svg │ │ │ ├── container-storage.svg │ │ │ ├── conveyor-belt-alt.svg │ │ │ ├── conveyor-belt.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── corn.svg │ │ │ ├── couch.svg │ │ │ ├── cow.svg │ │ │ ├── cowbell-more.svg │ │ │ ├── cowbell.svg │ │ │ ├── credit-card-blank.svg │ │ │ ├── credit-card-front.svg │ │ │ ├── credit-card.svg │ │ │ ├── cricket.svg │ │ │ ├── croissant.svg │ │ │ ├── crop-alt.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshairs.svg │ │ │ ├── crow.svg │ │ │ ├── crown.svg │ │ │ ├── crutch.svg │ │ │ ├── crutches.svg │ │ │ ├── cube.svg │ │ │ ├── cubes.svg │ │ │ ├── curling.svg │ │ │ ├── cut.svg │ │ │ ├── dagger.svg │ │ │ ├── database.svg │ │ │ ├── deaf.svg │ │ │ ├── debug.svg │ │ │ ├── deer-rudolph.svg │ │ │ ├── deer.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop-alt.svg │ │ │ ├── desktop.svg │ │ │ ├── dewpoint.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagnoses.svg │ │ │ ├── diamond.svg │ │ │ ├── dice-d10.svg │ │ │ ├── dice-d12.svg │ │ │ ├── dice-d20.svg │ │ │ ├── dice-d4.svg │ │ │ ├── dice-d6.svg │ │ │ ├── dice-d8.svg │ │ │ ├── dice-five.svg │ │ │ ├── dice-four.svg │ │ │ ├── dice-one.svg │ │ │ ├── dice-six.svg │ │ │ ├── dice-three.svg │ │ │ ├── dice-two.svg │ │ │ ├── dice.svg │ │ │ ├── digging.svg │ │ │ ├── digital-tachograph.svg │ │ │ ├── diploma.svg │ │ │ ├── directions.svg │ │ │ ├── disc-drive.svg │ │ │ ├── disease.svg │ │ │ ├── divide.svg │ │ │ ├── dizzy.svg │ │ │ ├── dna.svg │ │ │ ├── do-not-enter.svg │ │ │ ├── dog-leashed.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly-empty.svg │ │ │ ├── dolly-flatbed-alt.svg │ │ │ ├── dolly-flatbed-empty.svg │ │ │ ├── dolly-flatbed.svg │ │ │ ├── dolly.svg │ │ │ ├── donate.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dot-circle.svg │ │ │ ├── dove.svg │ │ │ ├── download.svg │ │ │ ├── drafting-compass.svg │ │ │ ├── dragon.svg │ │ │ ├── draw-circle.svg │ │ │ ├── draw-polygon.svg │ │ │ ├── draw-square.svg │ │ │ ├── dreidel.svg │ │ │ ├── drone-alt.svg │ │ │ ├── drone.svg │ │ │ ├── drum-steelpan.svg │ │ │ ├── drum.svg │ │ │ ├── drumstick-bite.svg │ │ │ ├── drumstick.svg │ │ │ ├── dryer-alt.svg │ │ │ ├── dryer.svg │ │ │ ├── duck.svg │ │ │ ├── dumbbell.svg │ │ │ ├── dumpster-fire.svg │ │ │ ├── dumpster.svg │ │ │ ├── dungeon.svg │ │ │ ├── ear-muffs.svg │ │ │ ├── ear.svg │ │ │ ├── eclipse-alt.svg │ │ │ ├── eclipse.svg │ │ │ ├── edit.svg │ │ │ ├── egg-fried.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── elephant.svg │ │ │ ├── ellipsis-h-alt.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v-alt.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── empty-set.svg │ │ │ ├── engine-warning.svg │ │ │ ├── envelope-open-dollar.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-square.svg │ │ │ ├── envelope.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exchange.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-square.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand-alt.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand-arrows.svg │ │ │ ├── expand-wide.svg │ │ │ ├── expand.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── external-link-square-alt.svg │ │ │ ├── external-link-square.svg │ │ │ ├── external-link.svg │ │ │ ├── eye-dropper.svg │ │ │ ├── eye-evil.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── fan-table.svg │ │ │ ├── fan.svg │ │ │ ├── farm.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── faucet-drip.svg │ │ │ ├── faucet.svg │ │ │ ├── fax.svg │ │ │ ├── feather-alt.svg │ │ │ ├── feather.svg │ │ │ ├── female.svg │ │ │ ├── field-hockey.svg │ │ │ ├── fighter-jet.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-certificate.svg │ │ │ ├── file-chart-line.svg │ │ │ ├── file-chart-pie.svg │ │ │ ├── file-check.svg │ │ │ ├── file-code.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-csv.svg │ │ │ ├── file-download.svg │ │ │ ├── file-edit.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-exclamation.svg │ │ │ ├── file-export.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-minus.svg │ │ │ ├── file-music.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-plus.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-search.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-spreadsheet.svg │ │ │ ├── file-times.svg │ │ │ ├── file-upload.svg │ │ │ ├── file-user.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── files-medical.svg │ │ │ ├── fill-drip.svg │ │ │ ├── fill.svg │ │ │ ├── film-alt.svg │ │ │ ├── film-canister.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire-alt.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire-smoke.svg │ │ │ ├── fire.svg │ │ │ ├── fireplace.svg │ │ │ ├── first-aid.svg │ │ │ ├── fish-cooked.svg │ │ │ ├── fish.svg │ │ │ ├── fist-raised.svg │ │ │ ├── flag-alt.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flame.svg │ │ │ ├── flashlight.svg │ │ │ ├── flask-poison.svg │ │ │ ├── flask-potion.svg │ │ │ ├── flask.svg │ │ │ ├── flower-daffodil.svg │ │ │ ├── flower-tulip.svg │ │ │ ├── flower.svg │ │ │ ├── flushed.svg │ │ │ ├── flute.svg │ │ │ ├── flux-capacitor.svg │ │ │ ├── fog.svg │ │ │ ├── folder-download.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder-times.svg │ │ │ ├── folder-tree.svg │ │ │ ├── folder-upload.svg │ │ │ ├── folder.svg │ │ │ ├── folders.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-case.svg │ │ │ ├── font.svg │ │ │ ├── football-ball.svg │ │ │ ├── football-helmet.svg │ │ │ ├── forklift.svg │ │ │ ├── forward.svg │ │ │ ├── fragile.svg │ │ │ ├── french-fries.svg │ │ │ ├── frog.svg │ │ │ ├── frosty-head.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── function.svg │ │ │ ├── funnel-dollar.svg │ │ │ ├── futbol.svg │ │ │ ├── galaxy.svg │ │ │ ├── game-board-alt.svg │ │ │ ├── game-board.svg │ │ │ ├── game-console-handheld.svg │ │ │ ├── gamepad-alt.svg │ │ │ ├── gamepad.svg │ │ │ ├── garage-car.svg │ │ │ ├── garage-open.svg │ │ │ ├── garage.svg │ │ │ ├── gas-pump-slash.svg │ │ │ ├── gas-pump.svg │ │ │ ├── gavel.svg │ │ │ ├── gem.svg │ │ │ ├── genderless.svg │ │ │ ├── ghost.svg │ │ │ ├── gift-card.svg │ │ │ ├── gift.svg │ │ │ ├── gifts.svg │ │ │ ├── gingerbread-man.svg │ │ │ ├── glass-champagne.svg │ │ │ ├── glass-cheers.svg │ │ │ ├── glass-citrus.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-whiskey-rocks.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── glass.svg │ │ │ ├── glasses-alt.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-africa.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia.svg │ │ │ ├── globe-europe.svg │ │ │ ├── globe-snow.svg │ │ │ ├── globe-stand.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball.svg │ │ │ ├── golf-club.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── gramophone.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── grip-lines.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── guitar-electric.svg │ │ │ ├── guitar.svg │ │ │ ├── guitars.svg │ │ │ ├── h-square.svg │ │ │ ├── h1.svg │ │ │ ├── h2.svg │ │ │ ├── h3.svg │ │ │ ├── h4.svg │ │ │ ├── hamburger.svg │ │ │ ├── hammer-war.svg │ │ │ ├── hammer.svg │ │ │ ├── hamsa.svg │ │ │ ├── hand-heart.svg │ │ │ ├── hand-holding-box.svg │ │ │ ├── hand-holding-heart.svg │ │ │ ├── hand-holding-magic.svg │ │ │ ├── hand-holding-medical.svg │ │ │ ├── hand-holding-seedling.svg │ │ │ ├── hand-holding-usd.svg │ │ │ ├── hand-holding-water.svg │ │ │ ├── hand-holding.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-receiving.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-sparkles.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hands-heart.svg │ │ │ ├── hands-helping.svg │ │ │ ├── hands-usd.svg │ │ │ ├── hands-wash.svg │ │ │ ├── hands.svg │ │ │ ├── handshake-alt-slash.svg │ │ │ ├── handshake-alt.svg │ │ │ ├── handshake-slash.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-chef.svg │ │ │ ├── hat-cowboy-side.svg │ │ │ ├── hat-cowboy.svg │ │ │ ├── hat-santa.svg │ │ │ ├── hat-winter.svg │ │ │ ├── hat-witch.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── hdd.svg │ │ │ ├── head-side-brain.svg │ │ │ ├── head-side-cough-slash.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-headphones.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side-medical.svg │ │ │ ├── head-side-virus.svg │ │ │ ├── head-side.svg │ │ │ ├── head-vr.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart-circle.svg │ │ │ ├── heart-rate.svg │ │ │ ├── heart-square.svg │ │ │ ├── heart.svg │ │ │ ├── heartbeat.svg │ │ │ ├── heat.svg │ │ │ ├── helicopter.svg │ │ │ ├── helmet-battle.svg │ │ │ ├── hexagon.svg │ │ │ ├── highlighter.svg │ │ │ ├── hiking.svg │ │ │ ├── hippo.svg │ │ │ ├── history.svg │ │ │ ├── hockey-mask.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── hockey-sticks.svg │ │ │ ├── holly-berry.svg │ │ │ ├── home-alt.svg │ │ │ ├── home-heart.svg │ │ │ ├── home-lg-alt.svg │ │ │ ├── home-lg.svg │ │ │ ├── home.svg │ │ │ ├── hood-cloak.svg │ │ │ ├── horizontal-rule.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse-saddle.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-alt.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital-user.svg │ │ │ ├── hospital.svg │ │ │ ├── hospitals.svg │ │ │ ├── hot-tub.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-half.svg │ │ │ ├── hourglass-start.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-damage.svg │ │ │ ├── house-day.svg │ │ │ ├── house-flood.svg │ │ │ ├── house-leave.svg │ │ │ ├── house-night.svg │ │ │ ├── house-return.svg │ │ │ ├── house-signal.svg │ │ │ ├── house-user.svg │ │ │ ├── house.svg │ │ │ ├── hryvnia.svg │ │ │ ├── humidity.svg │ │ │ ├── hurricane.svg │ │ │ ├── i-cursor.svg │ │ │ ├── ice-cream.svg │ │ │ ├── ice-skate.svg │ │ │ ├── icicles.svg │ │ │ ├── icons-alt.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-alt.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image-polaroid.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox-in.svg │ │ │ ├── inbox-out.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── industry-alt.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle.svg │ │ │ ├── info-square.svg │ │ │ ├── info.svg │ │ │ ├── inhaler.svg │ │ │ ├── integral.svg │ │ │ ├── intersection.svg │ │ │ ├── inventory.svg │ │ │ ├── island-tropical.svg │ │ │ ├── italic.svg │ │ │ ├── jack-o-lantern.svg │ │ │ ├── jedi.svg │ │ │ ├── joint.svg │ │ │ ├── journal-whills.svg │ │ │ ├── joystick.svg │ │ │ ├── jug.svg │ │ │ ├── kaaba.svg │ │ │ ├── kazoo.svg │ │ │ ├── kerning.svg │ │ │ ├── key-skeleton.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── keynote.svg │ │ │ ├── khanda.svg │ │ │ ├── kidneys.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── kite.svg │ │ │ ├── kiwi-bird.svg │ │ │ ├── knife-kitchen.svg │ │ │ ├── lambda.svg │ │ │ ├── lamp-desk.svg │ │ │ ├── lamp-floor.svg │ │ │ ├── lamp.svg │ │ │ ├── landmark-alt.svg │ │ │ ├── landmark.svg │ │ │ ├── language.svg │ │ │ ├── laptop-code.svg │ │ │ ├── laptop-house.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── lasso.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── layer-group.svg │ │ │ ├── layer-minus.svg │ │ │ ├── layer-plus.svg │ │ │ ├── leaf-heart.svg │ │ │ ├── leaf-maple.svg │ │ │ ├── leaf-oak.svg │ │ │ ├── leaf.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── level-down-alt.svg │ │ │ ├── level-down.svg │ │ │ ├── level-up-alt.svg │ │ │ ├── level-up.svg │ │ │ ├── life-ring.svg │ │ │ ├── light-ceiling.svg │ │ │ ├── light-switch-off.svg │ │ │ ├── light-switch-on.svg │ │ │ ├── light-switch.svg │ │ │ ├── lightbulb-dollar.svg │ │ │ ├── lightbulb-exclamation.svg │ │ │ ├── lightbulb-on.svg │ │ │ ├── lightbulb-slash.svg │ │ │ ├── lightbulb.svg │ │ │ ├── lights-holiday.svg │ │ │ ├── line-columns.svg │ │ │ ├── line-height.svg │ │ │ ├── link.svg │ │ │ ├── lips.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-alt.svg │ │ │ ├── list-music.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── location-circle.svg │ │ │ ├── location-slash.svg │ │ │ ├── location.svg │ │ │ ├── lock-alt.svg │ │ │ ├── lock-open-alt.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── long-arrow-down.svg │ │ │ ├── long-arrow-left.svg │ │ │ ├── long-arrow-right.svg │ │ │ ├── long-arrow-up.svg │ │ │ ├── loveseat.svg │ │ │ ├── low-vision.svg │ │ │ ├── luchador.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── lungs-virus.svg │ │ │ ├── lungs.svg │ │ │ ├── mace.svg │ │ │ ├── magic.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-bulk.svg │ │ │ ├── mailbox.svg │ │ │ ├── male.svg │ │ │ ├── mandolin.svg │ │ │ ├── map-marked-alt.svg │ │ │ ├── map-marked.svg │ │ │ ├── map-marker-alt-slash.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker-check.svg │ │ │ ├── map-marker-edit.svg │ │ │ ├── map-marker-exclamation.svg │ │ │ ├── map-marker-minus.svg │ │ │ ├── map-marker-plus.svg │ │ │ ├── map-marker-question.svg │ │ │ ├── map-marker-slash.svg │ │ │ ├── map-marker-smile.svg │ │ │ ├── map-marker-times.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin.svg │ │ │ ├── map-signs.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-h.svg │ │ │ ├── mars-stroke-v.svg │ │ │ ├── mars-stroke.svg │ │ │ ├── mars.svg │ │ │ ├── mask.svg │ │ │ ├── meat.svg │ │ │ ├── medal.svg │ │ │ ├── medkit.svg │ │ │ ├── megaphone.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-alt-slash.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone-stand.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── microwave.svg │ │ │ ├── mind-share.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-hexagon.svg │ │ │ ├── minus-octagon.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mistletoe.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-alt.svg │ │ │ ├── mobile-android-alt.svg │ │ │ ├── mobile-android.svg │ │ │ ├── mobile.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── money-bill-wave-alt.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-check-alt.svg │ │ │ ├── money-check-edit-alt.svg │ │ │ ├── money-check-edit.svg │ │ │ ├── money-check.svg │ │ │ ├── monitor-heart-rate.svg │ │ │ ├── monkey.svg │ │ │ ├── monument.svg │ │ │ ├── moon-cloud.svg │ │ │ ├── moon-stars.svg │ │ │ ├── moon.svg │ │ │ ├── mortar-pestle.svg │ │ │ ├── mosque.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mountain.svg │ │ │ ├── mountains.svg │ │ │ ├── mouse-alt.svg │ │ │ ├── mouse-pointer.svg │ │ │ ├── mouse.svg │ │ │ ├── mp3-player.svg │ │ │ ├── mug-hot.svg │ │ │ ├── mug-marshmallows.svg │ │ │ ├── mug-tea.svg │ │ │ ├── mug.svg │ │ │ ├── music-alt-slash.svg │ │ │ ├── music-alt.svg │ │ │ ├── music-slash.svg │ │ │ ├── music.svg │ │ │ ├── narwhal.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── notes-medical.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── octagon.svg │ │ │ ├── oil-can.svg │ │ │ ├── oil-temp.svg │ │ │ ├── om.svg │ │ │ ├── omega.svg │ │ │ ├── ornament.svg │ │ │ ├── otter.svg │ │ │ ├── outdent.svg │ │ │ ├── outlet.svg │ │ │ ├── oven.svg │ │ │ ├── overline.svg │ │ │ ├── page-break.svg │ │ │ ├── pager.svg │ │ │ ├── paint-brush-alt.svg │ │ │ ├── paint-brush.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── pallet-alt.svg │ │ │ ├── pallet.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph-rtl.svg │ │ │ ├── paragraph.svg │ │ │ ├── parking-circle-slash.svg │ │ │ ├── parking-circle.svg │ │ │ ├── parking-slash.svg │ │ │ ├── parking.svg │ │ │ ├── passport.svg │ │ │ ├── pastafarianism.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paw-alt.svg │ │ │ ├── paw-claws.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pegasus.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-paintbrush.svg │ │ │ ├── pencil-ruler.svg │ │ │ ├── pencil.svg │ │ │ ├── pennant.svg │ │ │ ├── people-arrows.svg │ │ │ ├── people-carry.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── percentage.svg │ │ │ ├── person-booth.svg │ │ │ ├── person-carry.svg │ │ │ ├── person-dolly-empty.svg │ │ │ ├── person-dolly.svg │ │ │ ├── person-sign.svg │ │ │ ├── phone-alt.svg │ │ │ ├── phone-laptop.svg │ │ │ ├── phone-office.svg │ │ │ ├── phone-plus.svg │ │ │ ├── phone-rotary.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-square-alt.svg │ │ │ ├── phone-square.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-video.svg │ │ │ ├── pi.svg │ │ │ ├── piano-keyboard.svg │ │ │ ├── piano.svg │ │ │ ├── pie.svg │ │ │ ├── pig.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pills.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── pizza.svg │ │ │ ├── place-of-worship.svg │ │ │ ├── plane-alt.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane-slash.svg │ │ │ ├── plane.svg │ │ │ ├── planet-moon.svg │ │ │ ├── planet-ringed.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-hexagon.svg │ │ │ ├── plus-octagon.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── podium-star.svg │ │ │ ├── podium.svg │ │ │ ├── police-box.svg │ │ │ ├── poll-h.svg │ │ │ ├── poll-people.svg │ │ │ ├── poll.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── popcorn.svg │ │ │ ├── portal-enter.svg │ │ │ ├── portal-exit.svg │ │ │ ├── portrait.svg │ │ │ ├── pound-sign.svg │ │ │ ├── power-off.svg │ │ │ ├── pray.svg │ │ │ ├── praying-hands.svg │ │ │ ├── prescription-bottle-alt.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── presentation.svg │ │ │ ├── print-search.svg │ │ │ ├── print-slash.svg │ │ │ ├── print.svg │ │ │ ├── procedures.svg │ │ │ ├── project-diagram.svg │ │ │ ├── projector.svg │ │ │ ├── pump-medical.svg │ │ │ ├── pump-soap.svg │ │ │ ├── pumpkin.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-circle.svg │ │ │ ├── question-square.svg │ │ │ ├── question.svg │ │ │ ├── quidditch.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── quran.svg │ │ │ ├── rabbit-fast.svg │ │ │ ├── rabbit.svg │ │ │ ├── racquet.svg │ │ │ ├── radar.svg │ │ │ ├── radiation-alt.svg │ │ │ ├── radiation.svg │ │ │ ├── radio-alt.svg │ │ │ ├── radio.svg │ │ │ ├── rainbow.svg │ │ │ ├── raindrops.svg │ │ │ ├── ram.svg │ │ │ ├── ramp-loading.svg │ │ │ ├── random.svg │ │ │ ├── raygun.svg │ │ │ ├── receipt.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── rectangle-landscape.svg │ │ │ ├── rectangle-portrait.svg │ │ │ ├── rectangle-wide.svg │ │ │ ├── recycle.svg │ │ │ ├── redo-alt.svg │ │ │ ├── redo.svg │ │ │ ├── refrigerator.svg │ │ │ ├── registered.svg │ │ │ ├── remove-format.svg │ │ │ ├── repeat-1-alt.svg │ │ │ ├── repeat-1.svg │ │ │ ├── repeat-alt.svg │ │ │ ├── repeat.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── republican.svg │ │ │ ├── restroom.svg │ │ │ ├── retweet-alt.svg │ │ │ ├── retweet.svg │ │ │ ├── ribbon.svg │ │ │ ├── ring.svg │ │ │ ├── rings-wedding.svg │ │ │ ├── road.svg │ │ │ ├── robot.svg │ │ │ ├── rocket-launch.svg │ │ │ ├── rocket.svg │ │ │ ├── route-highway.svg │ │ │ ├── route-interstate.svg │ │ │ ├── route.svg │ │ │ ├── router.svg │ │ │ ├── rss-square.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-triangle.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── running.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── rv.svg │ │ │ ├── sack-dollar.svg │ │ │ ├── sack.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── salad.svg │ │ │ ├── sandwich.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── sausage.svg │ │ │ ├── save.svg │ │ │ ├── sax-hot.svg │ │ │ ├── saxophone.svg │ │ │ ├── scalpel-path.svg │ │ │ ├── scalpel.svg │ │ │ ├── scanner-image.svg │ │ │ ├── scanner-keyboard.svg │ │ │ ├── scanner-touchscreen.svg │ │ │ ├── scanner.svg │ │ │ ├── scarecrow.svg │ │ │ ├── scarf.svg │ │ │ ├── school.svg │ │ │ ├── screwdriver.svg │ │ │ ├── scroll-old.svg │ │ │ ├── scroll.svg │ │ │ ├── scrubber.svg │ │ │ ├── scythe.svg │ │ │ ├── sd-card.svg │ │ │ ├── search-dollar.svg │ │ │ ├── search-location.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── seedling.svg │ │ │ ├── send-back.svg │ │ │ ├── send-backward.svg │ │ │ ├── sensor-alert.svg │ │ │ ├── sensor-fire.svg │ │ │ ├── sensor-on.svg │ │ │ ├── sensor-smoke.svg │ │ │ ├── sensor.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-all.svg │ │ │ ├── share-alt-square.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-square.svg │ │ │ ├── share.svg │ │ │ ├── sheep.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-alt.svg │ │ │ ├── shield-check.svg │ │ │ ├── shield-cross.svg │ │ │ ├── shield-virus.svg │ │ │ ├── shield.svg │ │ │ ├── ship.svg │ │ │ ├── shipping-fast.svg │ │ │ ├── shipping-timed.svg │ │ │ ├── shish-kebab.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shovel-snow.svg │ │ │ ├── shovel.svg │ │ │ ├── shower.svg │ │ │ ├── shredder.svg │ │ │ ├── shuttle-van.svg │ │ │ ├── shuttlecock.svg │ │ │ ├── sickle.svg │ │ │ ├── sigma.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-in.svg │ │ │ ├── sign-language.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign-out.svg │ │ │ ├── sign.svg │ │ │ ├── signal-1.svg │ │ │ ├── signal-2.svg │ │ │ ├── signal-3.svg │ │ │ ├── signal-4.svg │ │ │ ├── signal-alt-1.svg │ │ │ ├── signal-alt-2.svg │ │ │ ├── signal-alt-3.svg │ │ │ ├── signal-alt-slash.svg │ │ │ ├── signal-alt.svg │ │ │ ├── signal-slash.svg │ │ │ ├── signal-stream.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── sim-card.svg │ │ │ ├── sink.svg │ │ │ ├── siren-on.svg │ │ │ ├── siren.svg │ │ │ ├── sitemap.svg │ │ │ ├── skating.svg │ │ │ ├── skeleton.svg │ │ │ ├── ski-jump.svg │ │ │ ├── ski-lift.svg │ │ │ ├── skiing-nordic.svg │ │ │ ├── skiing.svg │ │ │ ├── skull-cow.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sledding.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders-h-square.svg │ │ │ ├── sliders-h.svg │ │ │ ├── sliders-v-square.svg │ │ │ ├── sliders-v.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-plus.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── smog.svg │ │ │ ├── smoke.svg │ │ │ ├── smoking-ban.svg │ │ │ ├── smoking.svg │ │ │ ├── sms.svg │ │ │ ├── snake.svg │ │ │ ├── snooze.svg │ │ │ ├── snow-blowing.svg │ │ │ ├── snowboarding.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowflakes.svg │ │ │ ├── snowman.svg │ │ │ ├── snowmobile.svg │ │ │ ├── snowplow.svg │ │ │ ├── soap.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── solar-system.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-alt.svg │ │ │ ├── sort-amount-down-alt.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up-alt.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort-circle-down.svg │ │ │ ├── sort-circle-up.svg │ │ │ ├── sort-circle.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-shapes-down-alt.svg │ │ │ ├── sort-shapes-down.svg │ │ │ ├── sort-shapes-up-alt.svg │ │ │ ├── sort-shapes-up.svg │ │ │ ├── sort-size-down-alt.svg │ │ │ ├── sort-size-down.svg │ │ │ ├── sort-size-up-alt.svg │ │ │ ├── sort-size-up.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── soup.svg │ │ │ ├── spa.svg │ │ │ ├── space-shuttle.svg │ │ │ ├── space-station-moon-alt.svg │ │ │ ├── space-station-moon.svg │ │ │ ├── spade.svg │ │ │ ├── sparkles.svg │ │ │ ├── speaker.svg │ │ │ ├── speakers.svg │ │ │ ├── spell-check.svg │ │ │ ├── spider-black-widow.svg │ │ │ ├── spider-web.svg │ │ │ ├── spider.svg │ │ │ ├── spinner-third.svg │ │ │ ├── spinner.svg │ │ │ ├── splotch.svg │ │ │ ├── spray-can.svg │ │ │ ├── sprinkler.svg │ │ │ ├── square-full.svg │ │ │ ├── square-root-alt.svg │ │ │ ├── square-root.svg │ │ │ ├── square.svg │ │ │ ├── squirrel.svg │ │ │ ├── staff.svg │ │ │ ├── stamp.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-christmas.svg │ │ │ ├── star-exclamation.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star-shooting.svg │ │ │ ├── star.svg │ │ │ ├── starfighter-alt.svg │ │ │ ├── starfighter.svg │ │ │ ├── stars.svg │ │ │ ├── starship-freighter.svg │ │ │ ├── starship.svg │ │ │ ├── steak.svg │ │ │ ├── steering-wheel.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stocking.svg │ │ │ ├── stomach.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-20.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt-slash.svg │ │ │ ├── store-alt.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── stream.svg │ │ │ ├── street-view.svg │ │ │ ├── stretcher.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun-cloud.svg │ │ │ ├── sun-dust.svg │ │ │ ├── sun-haze.svg │ │ │ ├── sun.svg │ │ │ ├── sunglasses.svg │ │ │ ├── sunrise.svg │ │ │ ├── sunset.svg │ │ │ ├── superscript.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swimmer.svg │ │ │ ├── swimming-pool.svg │ │ │ ├── sword-laser-alt.svg │ │ │ ├── sword-laser.svg │ │ │ ├── sword.svg │ │ │ ├── swords-laser.svg │ │ │ ├── swords.svg │ │ │ ├── synagogue.svg │ │ │ ├── sync-alt.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet-alt.svg │ │ │ ├── tablet-android-alt.svg │ │ │ ├── tablet-android.svg │ │ │ ├── tablet-rugged.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachometer-alt-average.svg │ │ │ ├── tachometer-alt-fast.svg │ │ │ ├── tachometer-alt-fastest.svg │ │ │ ├── tachometer-alt-slow.svg │ │ │ ├── tachometer-alt-slowest.svg │ │ │ ├── tachometer-alt.svg │ │ │ ├── tachometer-average.svg │ │ │ ├── tachometer-fast.svg │ │ │ ├── tachometer-fastest.svg │ │ │ ├── tachometer-slow.svg │ │ │ ├── tachometer-slowest.svg │ │ │ ├── tachometer.svg │ │ │ ├── taco.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tally.svg │ │ │ ├── tanakh.svg │ │ │ ├── tape.svg │ │ │ ├── tasks-alt.svg │ │ │ ├── tasks.svg │ │ │ ├── taxi.svg │ │ │ ├── teeth-open.svg │ │ │ ├── teeth.svg │ │ │ ├── telescope.svg │ │ │ ├── temperature-down.svg │ │ │ ├── temperature-frigid.svg │ │ │ ├── temperature-high.svg │ │ │ ├── temperature-hot.svg │ │ │ ├── temperature-low.svg │ │ │ ├── temperature-up.svg │ │ │ ├── tenge.svg │ │ │ ├── tennis-ball.svg │ │ │ ├── terminal.svg │ │ │ ├── text-height.svg │ │ │ ├── text-size.svg │ │ │ ├── text-width.svg │ │ │ ├── text.svg │ │ │ ├── th-large.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── theater-masks.svg │ │ │ ├── thermometer-empty.svg │ │ │ ├── thermometer-full.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-quarter.svg │ │ │ ├── thermometer-three-quarters.svg │ │ │ ├── thermometer.svg │ │ │ ├── theta.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack.svg │ │ │ ├── thunderstorm-moon.svg │ │ │ ├── thunderstorm-sun.svg │ │ │ ├── thunderstorm.svg │ │ │ ├── ticket-alt.svg │ │ │ ├── ticket.svg │ │ │ ├── tilde.svg │ │ │ ├── times-circle.svg │ │ │ ├── times-hexagon.svg │ │ │ ├── times-octagon.svg │ │ │ ├── times-square.svg │ │ │ ├── times.svg │ │ │ ├── tint-slash.svg │ │ │ ├── tint.svg │ │ │ ├── tire-flat.svg │ │ │ ├── tire-pressure-warning.svg │ │ │ ├── tire-rugged.svg │ │ │ ├── tire.svg │ │ │ ├── tired.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper-alt.svg │ │ │ ├── toilet-paper-slash.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet.svg │ │ │ ├── tombstone-alt.svg │ │ │ ├── tombstone.svg │ │ │ ├── toolbox.svg │ │ │ ├── tools.svg │ │ │ ├── tooth.svg │ │ │ ├── toothbrush.svg │ │ │ ├── torah.svg │ │ │ ├── torii-gate.svg │ │ │ ├── tornado.svg │ │ │ ├── tractor.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-cone.svg │ │ │ ├── traffic-light-go.svg │ │ │ ├── traffic-light-slow.svg │ │ │ ├── traffic-light-stop.svg │ │ │ ├── traffic-light.svg │ │ │ ├── trailer.svg │ │ │ ├── train.svg │ │ │ ├── tram.svg │ │ │ ├── transgender-alt.svg │ │ │ ├── transgender.svg │ │ │ ├── transporter-1.svg │ │ │ ├── transporter-2.svg │ │ │ ├── transporter-3.svg │ │ │ ├── transporter-empty.svg │ │ │ ├── transporter.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-restore-alt.svg │ │ │ ├── trash-restore.svg │ │ │ ├── trash-undo-alt.svg │ │ │ ├── trash-undo.svg │ │ │ ├── trash.svg │ │ │ ├── treasure-chest.svg │ │ │ ├── tree-alt.svg │ │ │ ├── tree-christmas.svg │ │ │ ├── tree-decorated.svg │ │ │ ├── tree-large.svg │ │ │ ├── tree-palm.svg │ │ │ ├── tree.svg │ │ │ ├── trees.svg │ │ │ ├── triangle-music.svg │ │ │ ├── triangle.svg │ │ │ ├── trophy-alt.svg │ │ │ ├── trophy.svg │ │ │ ├── truck-container.svg │ │ │ ├── truck-couch.svg │ │ │ ├── truck-loading.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck-plow.svg │ │ │ ├── truck-ramp.svg │ │ │ ├── truck.svg │ │ │ ├── trumpet.svg │ │ │ ├── tshirt.svg │ │ │ ├── tty.svg │ │ │ ├── turkey.svg │ │ │ ├── turntable.svg │ │ │ ├── turtle.svg │ │ │ ├── tv-alt.svg │ │ │ ├── tv-music.svg │ │ │ ├── tv-retro.svg │ │ │ ├── tv.svg │ │ │ ├── typewriter.svg │ │ │ ├── ufo-beam.svg │ │ │ ├── ufo.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── undo-alt.svg │ │ │ ├── undo.svg │ │ │ ├── unicorn.svg │ │ │ ├── union.svg │ │ │ ├── universal-access.svg │ │ │ ├── university.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock-alt.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── usb-drive.svg │ │ │ ├── usd-circle.svg │ │ │ ├── usd-square.svg │ │ │ ├── user-alien.svg │ │ │ ├── user-alt-slash.svg │ │ │ ├── user-alt.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-chart.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-cowboy.svg │ │ │ ├── user-crown.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-friends.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-hard-hat.svg │ │ │ ├── user-headset.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-md-chat.svg │ │ │ ├── user-md.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-music.svg │ │ │ ├── user-ninja.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-robot.svg │ │ │ ├── user-secret.svg │ │ │ ├── user-shield.svg │ │ │ ├── user-slash.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tie.svg │ │ │ ├── user-times.svg │ │ │ ├── user-unlock.svg │ │ │ ├── user-visor.svg │ │ │ ├── user.svg │ │ │ ├── users-class.svg │ │ │ ├── users-cog.svg │ │ │ ├── users-crown.svg │ │ │ ├── users-medical.svg │ │ │ ├── users-slash.svg │ │ │ ├── users.svg │ │ │ ├── utensil-fork.svg │ │ │ ├── utensil-knife.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── utensils-alt.svg │ │ │ ├── utensils.svg │ │ │ ├── vacuum-robot.svg │ │ │ ├── vacuum.svg │ │ │ ├── value-absolute.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus-double.svg │ │ │ ├── venus-mars.svg │ │ │ ├── venus.svg │ │ │ ├── vhs.svg │ │ │ ├── vial.svg │ │ │ ├── vials.svg │ │ │ ├── video-plus.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── vihara.svg │ │ │ ├── violin.svg │ │ │ ├── virus-slash.svg │ │ │ ├── virus.svg │ │ │ ├── viruses.svg │ │ │ ├── voicemail.svg │ │ │ ├── volcano.svg │ │ │ ├── volleyball-ball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-slash.svg │ │ │ ├── volume-up.svg │ │ │ ├── volume.svg │ │ │ ├── vote-nay.svg │ │ │ ├── vote-yea.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── wagon-covered.svg │ │ │ ├── walker.svg │ │ │ ├── walkie-talkie.svg │ │ │ ├── walking.svg │ │ │ ├── wallet.svg │ │ │ ├── wand-magic.svg │ │ │ ├── wand.svg │ │ │ ├── warehouse-alt.svg │ │ │ ├── warehouse.svg │ │ │ ├── washer.svg │ │ │ ├── watch-calculator.svg │ │ │ ├── watch-fitness.svg │ │ │ ├── watch.svg │ │ │ ├── water-lower.svg │ │ │ ├── water-rise.svg │ │ │ ├── water.svg │ │ │ ├── wave-sine.svg │ │ │ ├── wave-square.svg │ │ │ ├── wave-triangle.svg │ │ │ ├── waveform-path.svg │ │ │ ├── waveform.svg │ │ │ ├── webcam-slash.svg │ │ │ ├── webcam.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight.svg │ │ │ ├── whale.svg │ │ │ ├── wheat.svg │ │ │ ├── wheelchair.svg │ │ │ ├── whistle.svg │ │ │ ├── wifi-1.svg │ │ │ ├── wifi-2.svg │ │ │ ├── wifi-slash.svg │ │ │ ├── wifi.svg │ │ │ ├── wind-turbine.svg │ │ │ ├── wind-warning.svg │ │ │ ├── wind.svg │ │ │ ├── window-alt.svg │ │ │ ├── window-close.svg │ │ │ ├── window-frame-open.svg │ │ │ ├── window-frame.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── window.svg │ │ │ ├── windsock.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-alt.svg │ │ │ ├── wine-glass.svg │ │ │ ├── won-sign.svg │ │ │ ├── wreath.svg │ │ │ ├── wrench.svg │ │ │ ├── x-ray.svg │ │ │ ├── yen-sign.svg │ │ │ └── yin-yang.svg │ │ ├── light │ │ │ ├── abacus.svg │ │ │ ├── acorn.svg │ │ │ ├── ad.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── adjust.svg │ │ │ ├── air-conditioner.svg │ │ │ ├── air-freshener.svg │ │ │ ├── alarm-clock.svg │ │ │ ├── alarm-exclamation.svg │ │ │ ├── alarm-plus.svg │ │ │ ├── alarm-snooze.svg │ │ │ ├── album-collection.svg │ │ │ ├── album.svg │ │ │ ├── alicorn.svg │ │ │ ├── alien-monster.svg │ │ │ ├── alien.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── align-slash.svg │ │ │ ├── allergies.svg │ │ │ ├── ambulance.svg │ │ │ ├── american-sign-language-interpreting.svg │ │ │ ├── amp-guitar.svg │ │ │ ├── analytics.svg │ │ │ ├── anchor.svg │ │ │ ├── angel.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 │ │ │ ├── ankh.svg │ │ │ ├── apple-alt.svg │ │ │ ├── apple-crate.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-alt-down.svg │ │ │ ├── arrow-alt-from-bottom.svg │ │ │ ├── arrow-alt-from-left.svg │ │ │ ├── arrow-alt-from-right.svg │ │ │ ├── arrow-alt-from-top.svg │ │ │ ├── arrow-alt-left.svg │ │ │ ├── arrow-alt-right.svg │ │ │ ├── arrow-alt-square-down.svg │ │ │ ├── arrow-alt-square-left.svg │ │ │ ├── arrow-alt-square-right.svg │ │ │ ├── arrow-alt-square-up.svg │ │ │ ├── arrow-alt-to-bottom.svg │ │ │ ├── arrow-alt-to-left.svg │ │ │ ├── arrow-alt-to-right.svg │ │ │ ├── arrow-alt-to-top.svg │ │ │ ├── arrow-alt-up.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-from-bottom.svg │ │ │ ├── arrow-from-left.svg │ │ │ ├── arrow-from-right.svg │ │ │ ├── arrow-from-top.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-square-down.svg │ │ │ ├── arrow-square-left.svg │ │ │ ├── arrow-square-right.svg │ │ │ ├── arrow-square-up.svg │ │ │ ├── arrow-to-bottom.svg │ │ │ ├── arrow-to-left.svg │ │ │ ├── arrow-to-right.svg │ │ │ ├── arrow-to-top.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-alt-h.svg │ │ │ ├── arrows-alt-v.svg │ │ │ ├── arrows-alt.svg │ │ │ ├── arrows-h.svg │ │ │ ├── arrows-v.svg │ │ │ ├── arrows.svg │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atlas.svg │ │ │ ├── atom-alt.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── award.svg │ │ │ ├── axe-battle.svg │ │ │ ├── axe.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backpack.svg │ │ │ ├── backspace.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── bacteria.svg │ │ │ ├── bacterium.svg │ │ │ ├── badge-check.svg │ │ │ ├── badge-dollar.svg │ │ │ ├── badge-percent.svg │ │ │ ├── badge-sheriff.svg │ │ │ ├── badge.svg │ │ │ ├── badger-honey.svg │ │ │ ├── bags-shopping.svg │ │ │ ├── bahai.svg │ │ │ ├── balance-scale-left.svg │ │ │ ├── balance-scale-right.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ball-pile.svg │ │ │ ├── ballot-check.svg │ │ │ ├── ballot.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── banjo.svg │ │ │ ├── barcode-alt.svg │ │ │ ├── barcode-read.svg │ │ │ ├── barcode-scan.svg │ │ │ ├── barcode.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── baseball.svg │ │ │ ├── basketball-ball.svg │ │ │ ├── basketball-hoop.svg │ │ │ ├── bat.svg │ │ │ ├── bath.svg │ │ │ ├── battery-bolt.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── battery-slash.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── bed-alt.svg │ │ │ ├── bed-bunk.svg │ │ │ ├── bed-empty.svg │ │ │ ├── bed.svg │ │ │ ├── beer.svg │ │ │ ├── bell-exclamation.svg │ │ │ ├── bell-on.svg │ │ │ ├── bell-plus.svg │ │ │ ├── bell-school-slash.svg │ │ │ ├── bell-school.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bells.svg │ │ │ ├── betamax.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bible.svg │ │ │ ├── bicycle.svg │ │ │ ├── biking-mountain.svg │ │ │ ├── biking.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── blanket.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blind.svg │ │ │ ├── blinds-open.svg │ │ │ ├── blinds-raised.svg │ │ │ ├── blinds.svg │ │ │ ├── blog.svg │ │ │ ├── bold.svg │ │ │ ├── bolt.svg │ │ │ ├── bomb.svg │ │ │ ├── bone-break.svg │ │ │ ├── bone.svg │ │ │ ├── bong.svg │ │ │ ├── book-alt.svg │ │ │ ├── book-dead.svg │ │ │ ├── book-heart.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open.svg │ │ │ ├── book-reader.svg │ │ │ ├── book-spells.svg │ │ │ ├── book-user.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── books-medical.svg │ │ │ ├── books.svg │ │ │ ├── boombox.svg │ │ │ ├── boot.svg │ │ │ ├── booth-curtain.svg │ │ │ ├── border-all.svg │ │ │ ├── border-bottom.svg │ │ │ ├── border-center-h.svg │ │ │ ├── border-center-v.svg │ │ │ ├── border-inner.svg │ │ │ ├── border-left.svg │ │ │ ├── border-none.svg │ │ │ ├── border-outer.svg │ │ │ ├── border-right.svg │ │ │ ├── border-style-alt.svg │ │ │ ├── border-style.svg │ │ │ ├── border-top.svg │ │ │ ├── bow-arrow.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── bowling-pins.svg │ │ │ ├── box-alt.svg │ │ │ ├── box-ballot.svg │ │ │ ├── box-check.svg │ │ │ ├── box-fragile.svg │ │ │ ├── box-full.svg │ │ │ ├── box-heart.svg │ │ │ ├── box-open.svg │ │ │ ├── box-tissue.svg │ │ │ ├── box-up.svg │ │ │ ├── box-usd.svg │ │ │ ├── box.svg │ │ │ ├── boxes-alt.svg │ │ │ ├── boxes.svg │ │ │ ├── boxing-glove.svg │ │ │ ├── brackets-curly.svg │ │ │ ├── brackets.svg │ │ │ ├── braille.svg │ │ │ ├── brain.svg │ │ │ ├── bread-loaf.svg │ │ │ ├── bread-slice.svg │ │ │ ├── briefcase-medical.svg │ │ │ ├── briefcase.svg │ │ │ ├── bring-forward.svg │ │ │ ├── bring-front.svg │ │ │ ├── broadcast-tower.svg │ │ │ ├── broom.svg │ │ │ ├── browser.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── bullseye-arrow.svg │ │ │ ├── bullseye-pointer.svg │ │ │ ├── bullseye.svg │ │ │ ├── burger-soda.svg │ │ │ ├── burn.svg │ │ │ ├── burrito.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus-school.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── cabinet-filing.svg │ │ │ ├── cactus.svg │ │ │ ├── calculator-alt.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-edit.svg │ │ │ ├── calendar-exclamation.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-star.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar.svg │ │ │ ├── camcorder.svg │ │ │ ├── camera-alt.svg │ │ │ ├── camera-home.svg │ │ │ ├── camera-movie.svg │ │ │ ├── camera-polaroid.svg │ │ │ ├── camera-retro.svg │ │ │ ├── camera.svg │ │ │ ├── campfire.svg │ │ │ ├── campground.svg │ │ │ ├── candle-holder.svg │ │ │ ├── candy-cane.svg │ │ │ ├── candy-corn.svg │ │ │ ├── cannabis.svg │ │ │ ├── capsules.svg │ │ │ ├── car-alt.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-building.svg │ │ │ ├── car-bump.svg │ │ │ ├── car-bus.svg │ │ │ ├── car-crash.svg │ │ │ ├── car-garage.svg │ │ │ ├── car-mechanic.svg │ │ │ ├── car-side.svg │ │ │ ├── car-tilt.svg │ │ │ ├── car-wash.svg │ │ │ ├── car.svg │ │ │ ├── caravan-alt.svg │ │ │ ├── caravan.svg │ │ │ ├── caret-circle-down.svg │ │ │ ├── caret-circle-left.svg │ │ │ ├── caret-circle-right.svg │ │ │ ├── caret-circle-up.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 │ │ │ ├── cars.svg │ │ │ ├── cart-arrow-down.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cash-register.svg │ │ │ ├── cassette-tape.svg │ │ │ ├── cat-space.svg │ │ │ ├── cat.svg │ │ │ ├── cauldron.svg │ │ │ ├── cctv.svg │ │ │ ├── certificate.svg │ │ │ ├── chair-office.svg │ │ │ ├── chair.svg │ │ │ ├── chalkboard-teacher.svg │ │ │ ├── chalkboard.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line-down.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-network.svg │ │ │ ├── chart-pie-alt.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chart-scatter.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── cheese-swiss.svg │ │ │ ├── cheese.svg │ │ │ ├── cheeseburger.svg │ │ │ ├── chess-bishop-alt.svg │ │ │ ├── chess-bishop.svg │ │ │ ├── chess-board.svg │ │ │ ├── chess-clock-alt.svg │ │ │ ├── chess-clock.svg │ │ │ ├── chess-king-alt.svg │ │ │ ├── chess-king.svg │ │ │ ├── chess-knight-alt.svg │ │ │ ├── chess-knight.svg │ │ │ ├── chess-pawn-alt.svg │ │ │ ├── chess-pawn.svg │ │ │ ├── chess-queen-alt.svg │ │ │ ├── chess-queen.svg │ │ │ ├── chess-rook-alt.svg │ │ │ ├── chess-rook.svg │ │ │ ├── chess.svg │ │ │ ├── chevron-circle-down.svg │ │ │ ├── chevron-circle-left.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── chevron-double-down.svg │ │ │ ├── chevron-double-left.svg │ │ │ ├── chevron-double-right.svg │ │ │ ├── chevron-double-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-square-down.svg │ │ │ ├── chevron-square-left.svg │ │ │ ├── chevron-square-right.svg │ │ │ ├── chevron-square-up.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child.svg │ │ │ ├── chimney.svg │ │ │ ├── church.svg │ │ │ ├── circle-notch.svg │ │ │ ├── circle.svg │ │ │ ├── city.svg │ │ │ ├── clarinet.svg │ │ │ ├── claw-marks.svg │ │ │ ├── clinic-medical.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-list-check.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard-prescription.svg │ │ │ ├── clipboard-user.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-download-alt.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-hail-mixed.svg │ │ │ ├── cloud-hail.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-music.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-rainbow.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-showers.svg │ │ │ ├── cloud-sleet.svg │ │ │ ├── cloud-snow.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-upload-alt.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── clouds-moon.svg │ │ │ ├── clouds-sun.svg │ │ │ ├── clouds.svg │ │ │ ├── club.svg │ │ │ ├── cocktail.svg │ │ │ ├── code-branch.svg │ │ │ ├── code-commit.svg │ │ │ ├── code-merge.svg │ │ │ ├── code.svg │ │ │ ├── coffee-pot.svg │ │ │ ├── coffee-togo.svg │ │ │ ├── coffee.svg │ │ │ ├── coffin-cross.svg │ │ │ ├── coffin.svg │ │ │ ├── cog.svg │ │ │ ├── cogs.svg │ │ │ ├── coin.svg │ │ │ ├── coins.svg │ │ │ ├── columns.svg │ │ │ ├── comet.svg │ │ │ ├── comment-alt-check.svg │ │ │ ├── comment-alt-dollar.svg │ │ │ ├── comment-alt-dots.svg │ │ │ ├── comment-alt-edit.svg │ │ │ ├── comment-alt-exclamation.svg │ │ │ ├── comment-alt-lines.svg │ │ │ ├── comment-alt-medical.svg │ │ │ ├── comment-alt-minus.svg │ │ │ ├── comment-alt-music.svg │ │ │ ├── comment-alt-plus.svg │ │ │ ├── comment-alt-slash.svg │ │ │ ├── comment-alt-smile.svg │ │ │ ├── comment-alt-times.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-check.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-edit.svg │ │ │ ├── comment-exclamation.svg │ │ │ ├── comment-lines.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-minus.svg │ │ │ ├── comment-music.svg │ │ │ ├── comment-plus.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment-smile.svg │ │ │ ├── comment-times.svg │ │ │ ├── comment.svg │ │ │ ├── comments-alt-dollar.svg │ │ │ ├── comments-alt.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass-slash.svg │ │ │ ├── compass.svg │ │ │ ├── compress-alt.svg │ │ │ ├── compress-arrows-alt.svg │ │ │ ├── compress-wide.svg │ │ │ ├── compress.svg │ │ │ ├── computer-classic.svg │ │ │ ├── computer-speaker.svg │ │ │ ├── concierge-bell.svg │ │ │ ├── construction.svg │ │ │ ├── container-storage.svg │ │ │ ├── conveyor-belt-alt.svg │ │ │ ├── conveyor-belt.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── corn.svg │ │ │ ├── couch.svg │ │ │ ├── cow.svg │ │ │ ├── cowbell-more.svg │ │ │ ├── cowbell.svg │ │ │ ├── credit-card-blank.svg │ │ │ ├── credit-card-front.svg │ │ │ ├── credit-card.svg │ │ │ ├── cricket.svg │ │ │ ├── croissant.svg │ │ │ ├── crop-alt.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshairs.svg │ │ │ ├── crow.svg │ │ │ ├── crown.svg │ │ │ ├── crutch.svg │ │ │ ├── crutches.svg │ │ │ ├── cube.svg │ │ │ ├── cubes.svg │ │ │ ├── curling.svg │ │ │ ├── cut.svg │ │ │ ├── dagger.svg │ │ │ ├── database.svg │ │ │ ├── deaf.svg │ │ │ ├── debug.svg │ │ │ ├── deer-rudolph.svg │ │ │ ├── deer.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop-alt.svg │ │ │ ├── desktop.svg │ │ │ ├── dewpoint.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagnoses.svg │ │ │ ├── diamond.svg │ │ │ ├── dice-d10.svg │ │ │ ├── dice-d12.svg │ │ │ ├── dice-d20.svg │ │ │ ├── dice-d4.svg │ │ │ ├── dice-d6.svg │ │ │ ├── dice-d8.svg │ │ │ ├── dice-five.svg │ │ │ ├── dice-four.svg │ │ │ ├── dice-one.svg │ │ │ ├── dice-six.svg │ │ │ ├── dice-three.svg │ │ │ ├── dice-two.svg │ │ │ ├── dice.svg │ │ │ ├── digging.svg │ │ │ ├── digital-tachograph.svg │ │ │ ├── diploma.svg │ │ │ ├── directions.svg │ │ │ ├── disc-drive.svg │ │ │ ├── disease.svg │ │ │ ├── divide.svg │ │ │ ├── dizzy.svg │ │ │ ├── dna.svg │ │ │ ├── do-not-enter.svg │ │ │ ├── dog-leashed.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly-empty.svg │ │ │ ├── dolly-flatbed-alt.svg │ │ │ ├── dolly-flatbed-empty.svg │ │ │ ├── dolly-flatbed.svg │ │ │ ├── dolly.svg │ │ │ ├── donate.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dot-circle.svg │ │ │ ├── dove.svg │ │ │ ├── download.svg │ │ │ ├── drafting-compass.svg │ │ │ ├── dragon.svg │ │ │ ├── draw-circle.svg │ │ │ ├── draw-polygon.svg │ │ │ ├── draw-square.svg │ │ │ ├── dreidel.svg │ │ │ ├── drone-alt.svg │ │ │ ├── drone.svg │ │ │ ├── drum-steelpan.svg │ │ │ ├── drum.svg │ │ │ ├── drumstick-bite.svg │ │ │ ├── drumstick.svg │ │ │ ├── dryer-alt.svg │ │ │ ├── dryer.svg │ │ │ ├── duck.svg │ │ │ ├── dumbbell.svg │ │ │ ├── dumpster-fire.svg │ │ │ ├── dumpster.svg │ │ │ ├── dungeon.svg │ │ │ ├── ear-muffs.svg │ │ │ ├── ear.svg │ │ │ ├── eclipse-alt.svg │ │ │ ├── eclipse.svg │ │ │ ├── edit.svg │ │ │ ├── egg-fried.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── elephant.svg │ │ │ ├── ellipsis-h-alt.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v-alt.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── empty-set.svg │ │ │ ├── engine-warning.svg │ │ │ ├── envelope-open-dollar.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-square.svg │ │ │ ├── envelope.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exchange.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-square.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand-alt.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand-arrows.svg │ │ │ ├── expand-wide.svg │ │ │ ├── expand.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── external-link-square-alt.svg │ │ │ ├── external-link-square.svg │ │ │ ├── external-link.svg │ │ │ ├── eye-dropper.svg │ │ │ ├── eye-evil.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── fan-table.svg │ │ │ ├── fan.svg │ │ │ ├── farm.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── faucet-drip.svg │ │ │ ├── faucet.svg │ │ │ ├── fax.svg │ │ │ ├── feather-alt.svg │ │ │ ├── feather.svg │ │ │ ├── female.svg │ │ │ ├── field-hockey.svg │ │ │ ├── fighter-jet.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-certificate.svg │ │ │ ├── file-chart-line.svg │ │ │ ├── file-chart-pie.svg │ │ │ ├── file-check.svg │ │ │ ├── file-code.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-csv.svg │ │ │ ├── file-download.svg │ │ │ ├── file-edit.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-exclamation.svg │ │ │ ├── file-export.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-minus.svg │ │ │ ├── file-music.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-plus.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-search.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-spreadsheet.svg │ │ │ ├── file-times.svg │ │ │ ├── file-upload.svg │ │ │ ├── file-user.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── files-medical.svg │ │ │ ├── fill-drip.svg │ │ │ ├── fill.svg │ │ │ ├── film-alt.svg │ │ │ ├── film-canister.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire-alt.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire-smoke.svg │ │ │ ├── fire.svg │ │ │ ├── fireplace.svg │ │ │ ├── first-aid.svg │ │ │ ├── fish-cooked.svg │ │ │ ├── fish.svg │ │ │ ├── fist-raised.svg │ │ │ ├── flag-alt.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flame.svg │ │ │ ├── flashlight.svg │ │ │ ├── flask-poison.svg │ │ │ ├── flask-potion.svg │ │ │ ├── flask.svg │ │ │ ├── flower-daffodil.svg │ │ │ ├── flower-tulip.svg │ │ │ ├── flower.svg │ │ │ ├── flushed.svg │ │ │ ├── flute.svg │ │ │ ├── flux-capacitor.svg │ │ │ ├── fog.svg │ │ │ ├── folder-download.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder-times.svg │ │ │ ├── folder-tree.svg │ │ │ ├── folder-upload.svg │ │ │ ├── folder.svg │ │ │ ├── folders.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-case.svg │ │ │ ├── font.svg │ │ │ ├── football-ball.svg │ │ │ ├── football-helmet.svg │ │ │ ├── forklift.svg │ │ │ ├── forward.svg │ │ │ ├── fragile.svg │ │ │ ├── french-fries.svg │ │ │ ├── frog.svg │ │ │ ├── frosty-head.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── function.svg │ │ │ ├── funnel-dollar.svg │ │ │ ├── futbol.svg │ │ │ ├── galaxy.svg │ │ │ ├── game-board-alt.svg │ │ │ ├── game-board.svg │ │ │ ├── game-console-handheld.svg │ │ │ ├── gamepad-alt.svg │ │ │ ├── gamepad.svg │ │ │ ├── garage-car.svg │ │ │ ├── garage-open.svg │ │ │ ├── garage.svg │ │ │ ├── gas-pump-slash.svg │ │ │ ├── gas-pump.svg │ │ │ ├── gavel.svg │ │ │ ├── gem.svg │ │ │ ├── genderless.svg │ │ │ ├── ghost.svg │ │ │ ├── gift-card.svg │ │ │ ├── gift.svg │ │ │ ├── gifts.svg │ │ │ ├── gingerbread-man.svg │ │ │ ├── glass-champagne.svg │ │ │ ├── glass-cheers.svg │ │ │ ├── glass-citrus.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-whiskey-rocks.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── glass.svg │ │ │ ├── glasses-alt.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-africa.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia.svg │ │ │ ├── globe-europe.svg │ │ │ ├── globe-snow.svg │ │ │ ├── globe-stand.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball.svg │ │ │ ├── golf-club.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── gramophone.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── grip-lines.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── guitar-electric.svg │ │ │ ├── guitar.svg │ │ │ ├── guitars.svg │ │ │ ├── h-square.svg │ │ │ ├── h1.svg │ │ │ ├── h2.svg │ │ │ ├── h3.svg │ │ │ ├── h4.svg │ │ │ ├── hamburger.svg │ │ │ ├── hammer-war.svg │ │ │ ├── hammer.svg │ │ │ ├── hamsa.svg │ │ │ ├── hand-heart.svg │ │ │ ├── hand-holding-box.svg │ │ │ ├── hand-holding-heart.svg │ │ │ ├── hand-holding-magic.svg │ │ │ ├── hand-holding-medical.svg │ │ │ ├── hand-holding-seedling.svg │ │ │ ├── hand-holding-usd.svg │ │ │ ├── hand-holding-water.svg │ │ │ ├── hand-holding.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-receiving.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-sparkles.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hands-heart.svg │ │ │ ├── hands-helping.svg │ │ │ ├── hands-usd.svg │ │ │ ├── hands-wash.svg │ │ │ ├── hands.svg │ │ │ ├── handshake-alt-slash.svg │ │ │ ├── handshake-alt.svg │ │ │ ├── handshake-slash.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-chef.svg │ │ │ ├── hat-cowboy-side.svg │ │ │ ├── hat-cowboy.svg │ │ │ ├── hat-santa.svg │ │ │ ├── hat-winter.svg │ │ │ ├── hat-witch.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── hdd.svg │ │ │ ├── head-side-brain.svg │ │ │ ├── head-side-cough-slash.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-headphones.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side-medical.svg │ │ │ ├── head-side-virus.svg │ │ │ ├── head-side.svg │ │ │ ├── head-vr.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart-circle.svg │ │ │ ├── heart-rate.svg │ │ │ ├── heart-square.svg │ │ │ ├── heart.svg │ │ │ ├── heartbeat.svg │ │ │ ├── heat.svg │ │ │ ├── helicopter.svg │ │ │ ├── helmet-battle.svg │ │ │ ├── hexagon.svg │ │ │ ├── highlighter.svg │ │ │ ├── hiking.svg │ │ │ ├── hippo.svg │ │ │ ├── history.svg │ │ │ ├── hockey-mask.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── hockey-sticks.svg │ │ │ ├── holly-berry.svg │ │ │ ├── home-alt.svg │ │ │ ├── home-heart.svg │ │ │ ├── home-lg-alt.svg │ │ │ ├── home-lg.svg │ │ │ ├── home.svg │ │ │ ├── hood-cloak.svg │ │ │ ├── horizontal-rule.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse-saddle.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-alt.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital-user.svg │ │ │ ├── hospital.svg │ │ │ ├── hospitals.svg │ │ │ ├── hot-tub.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-half.svg │ │ │ ├── hourglass-start.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-damage.svg │ │ │ ├── house-day.svg │ │ │ ├── house-flood.svg │ │ │ ├── house-leave.svg │ │ │ ├── house-night.svg │ │ │ ├── house-return.svg │ │ │ ├── house-signal.svg │ │ │ ├── house-user.svg │ │ │ ├── house.svg │ │ │ ├── hryvnia.svg │ │ │ ├── humidity.svg │ │ │ ├── hurricane.svg │ │ │ ├── i-cursor.svg │ │ │ ├── ice-cream.svg │ │ │ ├── ice-skate.svg │ │ │ ├── icicles.svg │ │ │ ├── icons-alt.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-alt.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image-polaroid.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox-in.svg │ │ │ ├── inbox-out.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── industry-alt.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle.svg │ │ │ ├── info-square.svg │ │ │ ├── info.svg │ │ │ ├── inhaler.svg │ │ │ ├── integral.svg │ │ │ ├── intersection.svg │ │ │ ├── inventory.svg │ │ │ ├── island-tropical.svg │ │ │ ├── italic.svg │ │ │ ├── jack-o-lantern.svg │ │ │ ├── jedi.svg │ │ │ ├── joint.svg │ │ │ ├── journal-whills.svg │ │ │ ├── joystick.svg │ │ │ ├── jug.svg │ │ │ ├── kaaba.svg │ │ │ ├── kazoo.svg │ │ │ ├── kerning.svg │ │ │ ├── key-skeleton.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── keynote.svg │ │ │ ├── khanda.svg │ │ │ ├── kidneys.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── kite.svg │ │ │ ├── kiwi-bird.svg │ │ │ ├── knife-kitchen.svg │ │ │ ├── lambda.svg │ │ │ ├── lamp-desk.svg │ │ │ ├── lamp-floor.svg │ │ │ ├── lamp.svg │ │ │ ├── landmark-alt.svg │ │ │ ├── landmark.svg │ │ │ ├── language.svg │ │ │ ├── laptop-code.svg │ │ │ ├── laptop-house.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── lasso.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── layer-group.svg │ │ │ ├── layer-minus.svg │ │ │ ├── layer-plus.svg │ │ │ ├── leaf-heart.svg │ │ │ ├── leaf-maple.svg │ │ │ ├── leaf-oak.svg │ │ │ ├── leaf.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── level-down-alt.svg │ │ │ ├── level-down.svg │ │ │ ├── level-up-alt.svg │ │ │ ├── level-up.svg │ │ │ ├── life-ring.svg │ │ │ ├── light-ceiling.svg │ │ │ ├── light-switch-off.svg │ │ │ ├── light-switch-on.svg │ │ │ ├── light-switch.svg │ │ │ ├── lightbulb-dollar.svg │ │ │ ├── lightbulb-exclamation.svg │ │ │ ├── lightbulb-on.svg │ │ │ ├── lightbulb-slash.svg │ │ │ ├── lightbulb.svg │ │ │ ├── lights-holiday.svg │ │ │ ├── line-columns.svg │ │ │ ├── line-height.svg │ │ │ ├── link.svg │ │ │ ├── lips.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-alt.svg │ │ │ ├── list-music.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── location-circle.svg │ │ │ ├── location-slash.svg │ │ │ ├── location.svg │ │ │ ├── lock-alt.svg │ │ │ ├── lock-open-alt.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── long-arrow-down.svg │ │ │ ├── long-arrow-left.svg │ │ │ ├── long-arrow-right.svg │ │ │ ├── long-arrow-up.svg │ │ │ ├── loveseat.svg │ │ │ ├── low-vision.svg │ │ │ ├── luchador.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── lungs-virus.svg │ │ │ ├── lungs.svg │ │ │ ├── mace.svg │ │ │ ├── magic.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-bulk.svg │ │ │ ├── mailbox.svg │ │ │ ├── male.svg │ │ │ ├── mandolin.svg │ │ │ ├── map-marked-alt.svg │ │ │ ├── map-marked.svg │ │ │ ├── map-marker-alt-slash.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker-check.svg │ │ │ ├── map-marker-edit.svg │ │ │ ├── map-marker-exclamation.svg │ │ │ ├── map-marker-minus.svg │ │ │ ├── map-marker-plus.svg │ │ │ ├── map-marker-question.svg │ │ │ ├── map-marker-slash.svg │ │ │ ├── map-marker-smile.svg │ │ │ ├── map-marker-times.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin.svg │ │ │ ├── map-signs.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-h.svg │ │ │ ├── mars-stroke-v.svg │ │ │ ├── mars-stroke.svg │ │ │ ├── mars.svg │ │ │ ├── mask.svg │ │ │ ├── meat.svg │ │ │ ├── medal.svg │ │ │ ├── medkit.svg │ │ │ ├── megaphone.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-alt-slash.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone-stand.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── microwave.svg │ │ │ ├── mind-share.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-hexagon.svg │ │ │ ├── minus-octagon.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mistletoe.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-alt.svg │ │ │ ├── mobile-android-alt.svg │ │ │ ├── mobile-android.svg │ │ │ ├── mobile.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── money-bill-wave-alt.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-check-alt.svg │ │ │ ├── money-check-edit-alt.svg │ │ │ ├── money-check-edit.svg │ │ │ ├── money-check.svg │ │ │ ├── monitor-heart-rate.svg │ │ │ ├── monkey.svg │ │ │ ├── monument.svg │ │ │ ├── moon-cloud.svg │ │ │ ├── moon-stars.svg │ │ │ ├── moon.svg │ │ │ ├── mortar-pestle.svg │ │ │ ├── mosque.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mountain.svg │ │ │ ├── mountains.svg │ │ │ ├── mouse-alt.svg │ │ │ ├── mouse-pointer.svg │ │ │ ├── mouse.svg │ │ │ ├── mp3-player.svg │ │ │ ├── mug-hot.svg │ │ │ ├── mug-marshmallows.svg │ │ │ ├── mug-tea.svg │ │ │ ├── mug.svg │ │ │ ├── music-alt-slash.svg │ │ │ ├── music-alt.svg │ │ │ ├── music-slash.svg │ │ │ ├── music.svg │ │ │ ├── narwhal.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── notes-medical.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── octagon.svg │ │ │ ├── oil-can.svg │ │ │ ├── oil-temp.svg │ │ │ ├── om.svg │ │ │ ├── omega.svg │ │ │ ├── ornament.svg │ │ │ ├── otter.svg │ │ │ ├── outdent.svg │ │ │ ├── outlet.svg │ │ │ ├── oven.svg │ │ │ ├── overline.svg │ │ │ ├── page-break.svg │ │ │ ├── pager.svg │ │ │ ├── paint-brush-alt.svg │ │ │ ├── paint-brush.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── pallet-alt.svg │ │ │ ├── pallet.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph-rtl.svg │ │ │ ├── paragraph.svg │ │ │ ├── parking-circle-slash.svg │ │ │ ├── parking-circle.svg │ │ │ ├── parking-slash.svg │ │ │ ├── parking.svg │ │ │ ├── passport.svg │ │ │ ├── pastafarianism.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paw-alt.svg │ │ │ ├── paw-claws.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pegasus.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-paintbrush.svg │ │ │ ├── pencil-ruler.svg │ │ │ ├── pencil.svg │ │ │ ├── pennant.svg │ │ │ ├── people-arrows.svg │ │ │ ├── people-carry.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── percentage.svg │ │ │ ├── person-booth.svg │ │ │ ├── person-carry.svg │ │ │ ├── person-dolly-empty.svg │ │ │ ├── person-dolly.svg │ │ │ ├── person-sign.svg │ │ │ ├── phone-alt.svg │ │ │ ├── phone-laptop.svg │ │ │ ├── phone-office.svg │ │ │ ├── phone-plus.svg │ │ │ ├── phone-rotary.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-square-alt.svg │ │ │ ├── phone-square.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-video.svg │ │ │ ├── pi.svg │ │ │ ├── piano-keyboard.svg │ │ │ ├── piano.svg │ │ │ ├── pie.svg │ │ │ ├── pig.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pills.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── pizza.svg │ │ │ ├── place-of-worship.svg │ │ │ ├── plane-alt.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane-slash.svg │ │ │ ├── plane.svg │ │ │ ├── planet-moon.svg │ │ │ ├── planet-ringed.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-hexagon.svg │ │ │ ├── plus-octagon.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── podium-star.svg │ │ │ ├── podium.svg │ │ │ ├── police-box.svg │ │ │ ├── poll-h.svg │ │ │ ├── poll-people.svg │ │ │ ├── poll.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── popcorn.svg │ │ │ ├── portal-enter.svg │ │ │ ├── portal-exit.svg │ │ │ ├── portrait.svg │ │ │ ├── pound-sign.svg │ │ │ ├── power-off.svg │ │ │ ├── pray.svg │ │ │ ├── praying-hands.svg │ │ │ ├── prescription-bottle-alt.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── presentation.svg │ │ │ ├── print-search.svg │ │ │ ├── print-slash.svg │ │ │ ├── print.svg │ │ │ ├── procedures.svg │ │ │ ├── project-diagram.svg │ │ │ ├── projector.svg │ │ │ ├── pump-medical.svg │ │ │ ├── pump-soap.svg │ │ │ ├── pumpkin.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-circle.svg │ │ │ ├── question-square.svg │ │ │ ├── question.svg │ │ │ ├── quidditch.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── quran.svg │ │ │ ├── rabbit-fast.svg │ │ │ ├── rabbit.svg │ │ │ ├── racquet.svg │ │ │ ├── radar.svg │ │ │ ├── radiation-alt.svg │ │ │ ├── radiation.svg │ │ │ ├── radio-alt.svg │ │ │ ├── radio.svg │ │ │ ├── rainbow.svg │ │ │ ├── raindrops.svg │ │ │ ├── ram.svg │ │ │ ├── ramp-loading.svg │ │ │ ├── random.svg │ │ │ ├── raygun.svg │ │ │ ├── receipt.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── rectangle-landscape.svg │ │ │ ├── rectangle-portrait.svg │ │ │ ├── rectangle-wide.svg │ │ │ ├── recycle.svg │ │ │ ├── redo-alt.svg │ │ │ ├── redo.svg │ │ │ ├── refrigerator.svg │ │ │ ├── registered.svg │ │ │ ├── remove-format.svg │ │ │ ├── repeat-1-alt.svg │ │ │ ├── repeat-1.svg │ │ │ ├── repeat-alt.svg │ │ │ ├── repeat.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── republican.svg │ │ │ ├── restroom.svg │ │ │ ├── retweet-alt.svg │ │ │ ├── retweet.svg │ │ │ ├── ribbon.svg │ │ │ ├── ring.svg │ │ │ ├── rings-wedding.svg │ │ │ ├── road.svg │ │ │ ├── robot.svg │ │ │ ├── rocket-launch.svg │ │ │ ├── rocket.svg │ │ │ ├── route-highway.svg │ │ │ ├── route-interstate.svg │ │ │ ├── route.svg │ │ │ ├── router.svg │ │ │ ├── rss-square.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-triangle.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── running.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── rv.svg │ │ │ ├── sack-dollar.svg │ │ │ ├── sack.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── salad.svg │ │ │ ├── sandwich.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── sausage.svg │ │ │ ├── save.svg │ │ │ ├── sax-hot.svg │ │ │ ├── saxophone.svg │ │ │ ├── scalpel-path.svg │ │ │ ├── scalpel.svg │ │ │ ├── scanner-image.svg │ │ │ ├── scanner-keyboard.svg │ │ │ ├── scanner-touchscreen.svg │ │ │ ├── scanner.svg │ │ │ ├── scarecrow.svg │ │ │ ├── scarf.svg │ │ │ ├── school.svg │ │ │ ├── screwdriver.svg │ │ │ ├── scroll-old.svg │ │ │ ├── scroll.svg │ │ │ ├── scrubber.svg │ │ │ ├── scythe.svg │ │ │ ├── sd-card.svg │ │ │ ├── search-dollar.svg │ │ │ ├── search-location.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── seedling.svg │ │ │ ├── send-back.svg │ │ │ ├── send-backward.svg │ │ │ ├── sensor-alert.svg │ │ │ ├── sensor-fire.svg │ │ │ ├── sensor-on.svg │ │ │ ├── sensor-smoke.svg │ │ │ ├── sensor.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-all.svg │ │ │ ├── share-alt-square.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-square.svg │ │ │ ├── share.svg │ │ │ ├── sheep.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-alt.svg │ │ │ ├── shield-check.svg │ │ │ ├── shield-cross.svg │ │ │ ├── shield-virus.svg │ │ │ ├── shield.svg │ │ │ ├── ship.svg │ │ │ ├── shipping-fast.svg │ │ │ ├── shipping-timed.svg │ │ │ ├── shish-kebab.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shovel-snow.svg │ │ │ ├── shovel.svg │ │ │ ├── shower.svg │ │ │ ├── shredder.svg │ │ │ ├── shuttle-van.svg │ │ │ ├── shuttlecock.svg │ │ │ ├── sickle.svg │ │ │ ├── sigma.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-in.svg │ │ │ ├── sign-language.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign-out.svg │ │ │ ├── sign.svg │ │ │ ├── signal-1.svg │ │ │ ├── signal-2.svg │ │ │ ├── signal-3.svg │ │ │ ├── signal-4.svg │ │ │ ├── signal-alt-1.svg │ │ │ ├── signal-alt-2.svg │ │ │ ├── signal-alt-3.svg │ │ │ ├── signal-alt-slash.svg │ │ │ ├── signal-alt.svg │ │ │ ├── signal-slash.svg │ │ │ ├── signal-stream.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── sim-card.svg │ │ │ ├── sink.svg │ │ │ ├── siren-on.svg │ │ │ ├── siren.svg │ │ │ ├── sitemap.svg │ │ │ ├── skating.svg │ │ │ ├── skeleton.svg │ │ │ ├── ski-jump.svg │ │ │ ├── ski-lift.svg │ │ │ ├── skiing-nordic.svg │ │ │ ├── skiing.svg │ │ │ ├── skull-cow.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sledding.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders-h-square.svg │ │ │ ├── sliders-h.svg │ │ │ ├── sliders-v-square.svg │ │ │ ├── sliders-v.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-plus.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── smog.svg │ │ │ ├── smoke.svg │ │ │ ├── smoking-ban.svg │ │ │ ├── smoking.svg │ │ │ ├── sms.svg │ │ │ ├── snake.svg │ │ │ ├── snooze.svg │ │ │ ├── snow-blowing.svg │ │ │ ├── snowboarding.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowflakes.svg │ │ │ ├── snowman.svg │ │ │ ├── snowmobile.svg │ │ │ ├── snowplow.svg │ │ │ ├── soap.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── solar-system.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-alt.svg │ │ │ ├── sort-amount-down-alt.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up-alt.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort-circle-down.svg │ │ │ ├── sort-circle-up.svg │ │ │ ├── sort-circle.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-shapes-down-alt.svg │ │ │ ├── sort-shapes-down.svg │ │ │ ├── sort-shapes-up-alt.svg │ │ │ ├── sort-shapes-up.svg │ │ │ ├── sort-size-down-alt.svg │ │ │ ├── sort-size-down.svg │ │ │ ├── sort-size-up-alt.svg │ │ │ ├── sort-size-up.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── soup.svg │ │ │ ├── spa.svg │ │ │ ├── space-shuttle.svg │ │ │ ├── space-station-moon-alt.svg │ │ │ ├── space-station-moon.svg │ │ │ ├── spade.svg │ │ │ ├── sparkles.svg │ │ │ ├── speaker.svg │ │ │ ├── speakers.svg │ │ │ ├── spell-check.svg │ │ │ ├── spider-black-widow.svg │ │ │ ├── spider-web.svg │ │ │ ├── spider.svg │ │ │ ├── spinner-third.svg │ │ │ ├── spinner.svg │ │ │ ├── splotch.svg │ │ │ ├── spray-can.svg │ │ │ ├── sprinkler.svg │ │ │ ├── square-full.svg │ │ │ ├── square-root-alt.svg │ │ │ ├── square-root.svg │ │ │ ├── square.svg │ │ │ ├── squirrel.svg │ │ │ ├── staff.svg │ │ │ ├── stamp.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-christmas.svg │ │ │ ├── star-exclamation.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star-shooting.svg │ │ │ ├── star.svg │ │ │ ├── starfighter-alt.svg │ │ │ ├── starfighter.svg │ │ │ ├── stars.svg │ │ │ ├── starship-freighter.svg │ │ │ ├── starship.svg │ │ │ ├── steak.svg │ │ │ ├── steering-wheel.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stocking.svg │ │ │ ├── stomach.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-20.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt-slash.svg │ │ │ ├── store-alt.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── stream.svg │ │ │ ├── street-view.svg │ │ │ ├── stretcher.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun-cloud.svg │ │ │ ├── sun-dust.svg │ │ │ ├── sun-haze.svg │ │ │ ├── sun.svg │ │ │ ├── sunglasses.svg │ │ │ ├── sunrise.svg │ │ │ ├── sunset.svg │ │ │ ├── superscript.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swimmer.svg │ │ │ ├── swimming-pool.svg │ │ │ ├── sword-laser-alt.svg │ │ │ ├── sword-laser.svg │ │ │ ├── sword.svg │ │ │ ├── swords-laser.svg │ │ │ ├── swords.svg │ │ │ ├── synagogue.svg │ │ │ ├── sync-alt.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet-alt.svg │ │ │ ├── tablet-android-alt.svg │ │ │ ├── tablet-android.svg │ │ │ ├── tablet-rugged.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachometer-alt-average.svg │ │ │ ├── tachometer-alt-fast.svg │ │ │ ├── tachometer-alt-fastest.svg │ │ │ ├── tachometer-alt-slow.svg │ │ │ ├── tachometer-alt-slowest.svg │ │ │ ├── tachometer-alt.svg │ │ │ ├── tachometer-average.svg │ │ │ ├── tachometer-fast.svg │ │ │ ├── tachometer-fastest.svg │ │ │ ├── tachometer-slow.svg │ │ │ ├── tachometer-slowest.svg │ │ │ ├── tachometer.svg │ │ │ ├── taco.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tally.svg │ │ │ ├── tanakh.svg │ │ │ ├── tape.svg │ │ │ ├── tasks-alt.svg │ │ │ ├── tasks.svg │ │ │ ├── taxi.svg │ │ │ ├── teeth-open.svg │ │ │ ├── teeth.svg │ │ │ ├── telescope.svg │ │ │ ├── temperature-down.svg │ │ │ ├── temperature-frigid.svg │ │ │ ├── temperature-high.svg │ │ │ ├── temperature-hot.svg │ │ │ ├── temperature-low.svg │ │ │ ├── temperature-up.svg │ │ │ ├── tenge.svg │ │ │ ├── tennis-ball.svg │ │ │ ├── terminal.svg │ │ │ ├── text-height.svg │ │ │ ├── text-size.svg │ │ │ ├── text-width.svg │ │ │ ├── text.svg │ │ │ ├── th-large.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── theater-masks.svg │ │ │ ├── thermometer-empty.svg │ │ │ ├── thermometer-full.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-quarter.svg │ │ │ ├── thermometer-three-quarters.svg │ │ │ ├── thermometer.svg │ │ │ ├── theta.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack.svg │ │ │ ├── thunderstorm-moon.svg │ │ │ ├── thunderstorm-sun.svg │ │ │ ├── thunderstorm.svg │ │ │ ├── ticket-alt.svg │ │ │ ├── ticket.svg │ │ │ ├── tilde.svg │ │ │ ├── times-circle.svg │ │ │ ├── times-hexagon.svg │ │ │ ├── times-octagon.svg │ │ │ ├── times-square.svg │ │ │ ├── times.svg │ │ │ ├── tint-slash.svg │ │ │ ├── tint.svg │ │ │ ├── tire-flat.svg │ │ │ ├── tire-pressure-warning.svg │ │ │ ├── tire-rugged.svg │ │ │ ├── tire.svg │ │ │ ├── tired.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper-alt.svg │ │ │ ├── toilet-paper-slash.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet.svg │ │ │ ├── tombstone-alt.svg │ │ │ ├── tombstone.svg │ │ │ ├── toolbox.svg │ │ │ ├── tools.svg │ │ │ ├── tooth.svg │ │ │ ├── toothbrush.svg │ │ │ ├── torah.svg │ │ │ ├── torii-gate.svg │ │ │ ├── tornado.svg │ │ │ ├── tractor.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-cone.svg │ │ │ ├── traffic-light-go.svg │ │ │ ├── traffic-light-slow.svg │ │ │ ├── traffic-light-stop.svg │ │ │ ├── traffic-light.svg │ │ │ ├── trailer.svg │ │ │ ├── train.svg │ │ │ ├── tram.svg │ │ │ ├── transgender-alt.svg │ │ │ ├── transgender.svg │ │ │ ├── transporter-1.svg │ │ │ ├── transporter-2.svg │ │ │ ├── transporter-3.svg │ │ │ ├── transporter-empty.svg │ │ │ ├── transporter.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-restore-alt.svg │ │ │ ├── trash-restore.svg │ │ │ ├── trash-undo-alt.svg │ │ │ ├── trash-undo.svg │ │ │ ├── trash.svg │ │ │ ├── treasure-chest.svg │ │ │ ├── tree-alt.svg │ │ │ ├── tree-christmas.svg │ │ │ ├── tree-decorated.svg │ │ │ ├── tree-large.svg │ │ │ ├── tree-palm.svg │ │ │ ├── tree.svg │ │ │ ├── trees.svg │ │ │ ├── triangle-music.svg │ │ │ ├── triangle.svg │ │ │ ├── trophy-alt.svg │ │ │ ├── trophy.svg │ │ │ ├── truck-container.svg │ │ │ ├── truck-couch.svg │ │ │ ├── truck-loading.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck-plow.svg │ │ │ ├── truck-ramp.svg │ │ │ ├── truck.svg │ │ │ ├── trumpet.svg │ │ │ ├── tshirt.svg │ │ │ ├── tty.svg │ │ │ ├── turkey.svg │ │ │ ├── turntable.svg │ │ │ ├── turtle.svg │ │ │ ├── tv-alt.svg │ │ │ ├── tv-music.svg │ │ │ ├── tv-retro.svg │ │ │ ├── tv.svg │ │ │ ├── typewriter.svg │ │ │ ├── ufo-beam.svg │ │ │ ├── ufo.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── undo-alt.svg │ │ │ ├── undo.svg │ │ │ ├── unicorn.svg │ │ │ ├── union.svg │ │ │ ├── universal-access.svg │ │ │ ├── university.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock-alt.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── usb-drive.svg │ │ │ ├── usd-circle.svg │ │ │ ├── usd-square.svg │ │ │ ├── user-alien.svg │ │ │ ├── user-alt-slash.svg │ │ │ ├── user-alt.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-chart.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-cowboy.svg │ │ │ ├── user-crown.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-friends.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-hard-hat.svg │ │ │ ├── user-headset.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-md-chat.svg │ │ │ ├── user-md.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-music.svg │ │ │ ├── user-ninja.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-robot.svg │ │ │ ├── user-secret.svg │ │ │ ├── user-shield.svg │ │ │ ├── user-slash.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tie.svg │ │ │ ├── user-times.svg │ │ │ ├── user-unlock.svg │ │ │ ├── user-visor.svg │ │ │ ├── user.svg │ │ │ ├── users-class.svg │ │ │ ├── users-cog.svg │ │ │ ├── users-crown.svg │ │ │ ├── users-medical.svg │ │ │ ├── users-slash.svg │ │ │ ├── users.svg │ │ │ ├── utensil-fork.svg │ │ │ ├── utensil-knife.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── utensils-alt.svg │ │ │ ├── utensils.svg │ │ │ ├── vacuum-robot.svg │ │ │ ├── vacuum.svg │ │ │ ├── value-absolute.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus-double.svg │ │ │ ├── venus-mars.svg │ │ │ ├── venus.svg │ │ │ ├── vhs.svg │ │ │ ├── vial.svg │ │ │ ├── vials.svg │ │ │ ├── video-plus.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── vihara.svg │ │ │ ├── violin.svg │ │ │ ├── virus-slash.svg │ │ │ ├── virus.svg │ │ │ ├── viruses.svg │ │ │ ├── voicemail.svg │ │ │ ├── volcano.svg │ │ │ ├── volleyball-ball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-slash.svg │ │ │ ├── volume-up.svg │ │ │ ├── volume.svg │ │ │ ├── vote-nay.svg │ │ │ ├── vote-yea.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── wagon-covered.svg │ │ │ ├── walker.svg │ │ │ ├── walkie-talkie.svg │ │ │ ├── walking.svg │ │ │ ├── wallet.svg │ │ │ ├── wand-magic.svg │ │ │ ├── wand.svg │ │ │ ├── warehouse-alt.svg │ │ │ ├── warehouse.svg │ │ │ ├── washer.svg │ │ │ ├── watch-calculator.svg │ │ │ ├── watch-fitness.svg │ │ │ ├── watch.svg │ │ │ ├── water-lower.svg │ │ │ ├── water-rise.svg │ │ │ ├── water.svg │ │ │ ├── wave-sine.svg │ │ │ ├── wave-square.svg │ │ │ ├── wave-triangle.svg │ │ │ ├── waveform-path.svg │ │ │ ├── waveform.svg │ │ │ ├── webcam-slash.svg │ │ │ ├── webcam.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight.svg │ │ │ ├── whale.svg │ │ │ ├── wheat.svg │ │ │ ├── wheelchair.svg │ │ │ ├── whistle.svg │ │ │ ├── wifi-1.svg │ │ │ ├── wifi-2.svg │ │ │ ├── wifi-slash.svg │ │ │ ├── wifi.svg │ │ │ ├── wind-turbine.svg │ │ │ ├── wind-warning.svg │ │ │ ├── wind.svg │ │ │ ├── window-alt.svg │ │ │ ├── window-close.svg │ │ │ ├── window-frame-open.svg │ │ │ ├── window-frame.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── window.svg │ │ │ ├── windsock.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-alt.svg │ │ │ ├── wine-glass.svg │ │ │ ├── won-sign.svg │ │ │ ├── wreath.svg │ │ │ ├── wrench.svg │ │ │ ├── x-ray.svg │ │ │ ├── yen-sign.svg │ │ │ └── yin-yang.svg │ │ ├── regular │ │ │ ├── abacus.svg │ │ │ ├── acorn.svg │ │ │ ├── ad.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── adjust.svg │ │ │ ├── air-conditioner.svg │ │ │ ├── air-freshener.svg │ │ │ ├── alarm-clock.svg │ │ │ ├── alarm-exclamation.svg │ │ │ ├── alarm-plus.svg │ │ │ ├── alarm-snooze.svg │ │ │ ├── album-collection.svg │ │ │ ├── album.svg │ │ │ ├── alicorn.svg │ │ │ ├── alien-monster.svg │ │ │ ├── alien.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── align-slash.svg │ │ │ ├── allergies.svg │ │ │ ├── ambulance.svg │ │ │ ├── american-sign-language-interpreting.svg │ │ │ ├── amp-guitar.svg │ │ │ ├── analytics.svg │ │ │ ├── anchor.svg │ │ │ ├── angel.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 │ │ │ ├── ankh.svg │ │ │ ├── apple-alt.svg │ │ │ ├── apple-crate.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-alt-down.svg │ │ │ ├── arrow-alt-from-bottom.svg │ │ │ ├── arrow-alt-from-left.svg │ │ │ ├── arrow-alt-from-right.svg │ │ │ ├── arrow-alt-from-top.svg │ │ │ ├── arrow-alt-left.svg │ │ │ ├── arrow-alt-right.svg │ │ │ ├── arrow-alt-square-down.svg │ │ │ ├── arrow-alt-square-left.svg │ │ │ ├── arrow-alt-square-right.svg │ │ │ ├── arrow-alt-square-up.svg │ │ │ ├── arrow-alt-to-bottom.svg │ │ │ ├── arrow-alt-to-left.svg │ │ │ ├── arrow-alt-to-right.svg │ │ │ ├── arrow-alt-to-top.svg │ │ │ ├── arrow-alt-up.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-from-bottom.svg │ │ │ ├── arrow-from-left.svg │ │ │ ├── arrow-from-right.svg │ │ │ ├── arrow-from-top.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-square-down.svg │ │ │ ├── arrow-square-left.svg │ │ │ ├── arrow-square-right.svg │ │ │ ├── arrow-square-up.svg │ │ │ ├── arrow-to-bottom.svg │ │ │ ├── arrow-to-left.svg │ │ │ ├── arrow-to-right.svg │ │ │ ├── arrow-to-top.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-alt-h.svg │ │ │ ├── arrows-alt-v.svg │ │ │ ├── arrows-alt.svg │ │ │ ├── arrows-h.svg │ │ │ ├── arrows-v.svg │ │ │ ├── arrows.svg │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atlas.svg │ │ │ ├── atom-alt.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── award.svg │ │ │ ├── axe-battle.svg │ │ │ ├── axe.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backpack.svg │ │ │ ├── backspace.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── bacteria.svg │ │ │ ├── bacterium.svg │ │ │ ├── badge-check.svg │ │ │ ├── badge-dollar.svg │ │ │ ├── badge-percent.svg │ │ │ ├── badge-sheriff.svg │ │ │ ├── badge.svg │ │ │ ├── badger-honey.svg │ │ │ ├── bags-shopping.svg │ │ │ ├── bahai.svg │ │ │ ├── balance-scale-left.svg │ │ │ ├── balance-scale-right.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ball-pile.svg │ │ │ ├── ballot-check.svg │ │ │ ├── ballot.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── banjo.svg │ │ │ ├── barcode-alt.svg │ │ │ ├── barcode-read.svg │ │ │ ├── barcode-scan.svg │ │ │ ├── barcode.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── baseball.svg │ │ │ ├── basketball-ball.svg │ │ │ ├── basketball-hoop.svg │ │ │ ├── bat.svg │ │ │ ├── bath.svg │ │ │ ├── battery-bolt.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── battery-slash.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── bed-alt.svg │ │ │ ├── bed-bunk.svg │ │ │ ├── bed-empty.svg │ │ │ ├── bed.svg │ │ │ ├── beer.svg │ │ │ ├── bell-exclamation.svg │ │ │ ├── bell-on.svg │ │ │ ├── bell-plus.svg │ │ │ ├── bell-school-slash.svg │ │ │ ├── bell-school.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bells.svg │ │ │ ├── betamax.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bible.svg │ │ │ ├── bicycle.svg │ │ │ ├── biking-mountain.svg │ │ │ ├── biking.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── blanket.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blind.svg │ │ │ ├── blinds-open.svg │ │ │ ├── blinds-raised.svg │ │ │ ├── blinds.svg │ │ │ ├── blog.svg │ │ │ ├── bold.svg │ │ │ ├── bolt.svg │ │ │ ├── bomb.svg │ │ │ ├── bone-break.svg │ │ │ ├── bone.svg │ │ │ ├── bong.svg │ │ │ ├── book-alt.svg │ │ │ ├── book-dead.svg │ │ │ ├── book-heart.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open.svg │ │ │ ├── book-reader.svg │ │ │ ├── book-spells.svg │ │ │ ├── book-user.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── books-medical.svg │ │ │ ├── books.svg │ │ │ ├── boombox.svg │ │ │ ├── boot.svg │ │ │ ├── booth-curtain.svg │ │ │ ├── border-all.svg │ │ │ ├── border-bottom.svg │ │ │ ├── border-center-h.svg │ │ │ ├── border-center-v.svg │ │ │ ├── border-inner.svg │ │ │ ├── border-left.svg │ │ │ ├── border-none.svg │ │ │ ├── border-outer.svg │ │ │ ├── border-right.svg │ │ │ ├── border-style-alt.svg │ │ │ ├── border-style.svg │ │ │ ├── border-top.svg │ │ │ ├── bow-arrow.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── bowling-pins.svg │ │ │ ├── box-alt.svg │ │ │ ├── box-ballot.svg │ │ │ ├── box-check.svg │ │ │ ├── box-fragile.svg │ │ │ ├── box-full.svg │ │ │ ├── box-heart.svg │ │ │ ├── box-open.svg │ │ │ ├── box-tissue.svg │ │ │ ├── box-up.svg │ │ │ ├── box-usd.svg │ │ │ ├── box.svg │ │ │ ├── boxes-alt.svg │ │ │ ├── boxes.svg │ │ │ ├── boxing-glove.svg │ │ │ ├── brackets-curly.svg │ │ │ ├── brackets.svg │ │ │ ├── braille.svg │ │ │ ├── brain.svg │ │ │ ├── bread-loaf.svg │ │ │ ├── bread-slice.svg │ │ │ ├── briefcase-medical.svg │ │ │ ├── briefcase.svg │ │ │ ├── bring-forward.svg │ │ │ ├── bring-front.svg │ │ │ ├── broadcast-tower.svg │ │ │ ├── broom.svg │ │ │ ├── browser.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── bullseye-arrow.svg │ │ │ ├── bullseye-pointer.svg │ │ │ ├── bullseye.svg │ │ │ ├── burger-soda.svg │ │ │ ├── burn.svg │ │ │ ├── burrito.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus-school.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── cabinet-filing.svg │ │ │ ├── cactus.svg │ │ │ ├── calculator-alt.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-edit.svg │ │ │ ├── calendar-exclamation.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-star.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar.svg │ │ │ ├── camcorder.svg │ │ │ ├── camera-alt.svg │ │ │ ├── camera-home.svg │ │ │ ├── camera-movie.svg │ │ │ ├── camera-polaroid.svg │ │ │ ├── camera-retro.svg │ │ │ ├── camera.svg │ │ │ ├── campfire.svg │ │ │ ├── campground.svg │ │ │ ├── candle-holder.svg │ │ │ ├── candy-cane.svg │ │ │ ├── candy-corn.svg │ │ │ ├── cannabis.svg │ │ │ ├── capsules.svg │ │ │ ├── car-alt.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-building.svg │ │ │ ├── car-bump.svg │ │ │ ├── car-bus.svg │ │ │ ├── car-crash.svg │ │ │ ├── car-garage.svg │ │ │ ├── car-mechanic.svg │ │ │ ├── car-side.svg │ │ │ ├── car-tilt.svg │ │ │ ├── car-wash.svg │ │ │ ├── car.svg │ │ │ ├── caravan-alt.svg │ │ │ ├── caravan.svg │ │ │ ├── caret-circle-down.svg │ │ │ ├── caret-circle-left.svg │ │ │ ├── caret-circle-right.svg │ │ │ ├── caret-circle-up.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 │ │ │ ├── cars.svg │ │ │ ├── cart-arrow-down.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cash-register.svg │ │ │ ├── cassette-tape.svg │ │ │ ├── cat-space.svg │ │ │ ├── cat.svg │ │ │ ├── cauldron.svg │ │ │ ├── cctv.svg │ │ │ ├── certificate.svg │ │ │ ├── chair-office.svg │ │ │ ├── chair.svg │ │ │ ├── chalkboard-teacher.svg │ │ │ ├── chalkboard.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line-down.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-network.svg │ │ │ ├── chart-pie-alt.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chart-scatter.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── cheese-swiss.svg │ │ │ ├── cheese.svg │ │ │ ├── cheeseburger.svg │ │ │ ├── chess-bishop-alt.svg │ │ │ ├── chess-bishop.svg │ │ │ ├── chess-board.svg │ │ │ ├── chess-clock-alt.svg │ │ │ ├── chess-clock.svg │ │ │ ├── chess-king-alt.svg │ │ │ ├── chess-king.svg │ │ │ ├── chess-knight-alt.svg │ │ │ ├── chess-knight.svg │ │ │ ├── chess-pawn-alt.svg │ │ │ ├── chess-pawn.svg │ │ │ ├── chess-queen-alt.svg │ │ │ ├── chess-queen.svg │ │ │ ├── chess-rook-alt.svg │ │ │ ├── chess-rook.svg │ │ │ ├── chess.svg │ │ │ ├── chevron-circle-down.svg │ │ │ ├── chevron-circle-left.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── chevron-double-down.svg │ │ │ ├── chevron-double-left.svg │ │ │ ├── chevron-double-right.svg │ │ │ ├── chevron-double-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-square-down.svg │ │ │ ├── chevron-square-left.svg │ │ │ ├── chevron-square-right.svg │ │ │ ├── chevron-square-up.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child.svg │ │ │ ├── chimney.svg │ │ │ ├── church.svg │ │ │ ├── circle-notch.svg │ │ │ ├── circle.svg │ │ │ ├── city.svg │ │ │ ├── clarinet.svg │ │ │ ├── claw-marks.svg │ │ │ ├── clinic-medical.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-list-check.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard-prescription.svg │ │ │ ├── clipboard-user.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-download-alt.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-hail-mixed.svg │ │ │ ├── cloud-hail.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-music.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-rainbow.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-showers.svg │ │ │ ├── cloud-sleet.svg │ │ │ ├── cloud-snow.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-upload-alt.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── clouds-moon.svg │ │ │ ├── clouds-sun.svg │ │ │ ├── clouds.svg │ │ │ ├── club.svg │ │ │ ├── cocktail.svg │ │ │ ├── code-branch.svg │ │ │ ├── code-commit.svg │ │ │ ├── code-merge.svg │ │ │ ├── code.svg │ │ │ ├── coffee-pot.svg │ │ │ ├── coffee-togo.svg │ │ │ ├── coffee.svg │ │ │ ├── coffin-cross.svg │ │ │ ├── coffin.svg │ │ │ ├── cog.svg │ │ │ ├── cogs.svg │ │ │ ├── coin.svg │ │ │ ├── coins.svg │ │ │ ├── columns.svg │ │ │ ├── comet.svg │ │ │ ├── comment-alt-check.svg │ │ │ ├── comment-alt-dollar.svg │ │ │ ├── comment-alt-dots.svg │ │ │ ├── comment-alt-edit.svg │ │ │ ├── comment-alt-exclamation.svg │ │ │ ├── comment-alt-lines.svg │ │ │ ├── comment-alt-medical.svg │ │ │ ├── comment-alt-minus.svg │ │ │ ├── comment-alt-music.svg │ │ │ ├── comment-alt-plus.svg │ │ │ ├── comment-alt-slash.svg │ │ │ ├── comment-alt-smile.svg │ │ │ ├── comment-alt-times.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-check.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-edit.svg │ │ │ ├── comment-exclamation.svg │ │ │ ├── comment-lines.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-minus.svg │ │ │ ├── comment-music.svg │ │ │ ├── comment-plus.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment-smile.svg │ │ │ ├── comment-times.svg │ │ │ ├── comment.svg │ │ │ ├── comments-alt-dollar.svg │ │ │ ├── comments-alt.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass-slash.svg │ │ │ ├── compass.svg │ │ │ ├── compress-alt.svg │ │ │ ├── compress-arrows-alt.svg │ │ │ ├── compress-wide.svg │ │ │ ├── compress.svg │ │ │ ├── computer-classic.svg │ │ │ ├── computer-speaker.svg │ │ │ ├── concierge-bell.svg │ │ │ ├── construction.svg │ │ │ ├── container-storage.svg │ │ │ ├── conveyor-belt-alt.svg │ │ │ ├── conveyor-belt.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── corn.svg │ │ │ ├── couch.svg │ │ │ ├── cow.svg │ │ │ ├── cowbell-more.svg │ │ │ ├── cowbell.svg │ │ │ ├── credit-card-blank.svg │ │ │ ├── credit-card-front.svg │ │ │ ├── credit-card.svg │ │ │ ├── cricket.svg │ │ │ ├── croissant.svg │ │ │ ├── crop-alt.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshairs.svg │ │ │ ├── crow.svg │ │ │ ├── crown.svg │ │ │ ├── crutch.svg │ │ │ ├── crutches.svg │ │ │ ├── cube.svg │ │ │ ├── cubes.svg │ │ │ ├── curling.svg │ │ │ ├── cut.svg │ │ │ ├── dagger.svg │ │ │ ├── database.svg │ │ │ ├── deaf.svg │ │ │ ├── debug.svg │ │ │ ├── deer-rudolph.svg │ │ │ ├── deer.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop-alt.svg │ │ │ ├── desktop.svg │ │ │ ├── dewpoint.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagnoses.svg │ │ │ ├── diamond.svg │ │ │ ├── dice-d10.svg │ │ │ ├── dice-d12.svg │ │ │ ├── dice-d20.svg │ │ │ ├── dice-d4.svg │ │ │ ├── dice-d6.svg │ │ │ ├── dice-d8.svg │ │ │ ├── dice-five.svg │ │ │ ├── dice-four.svg │ │ │ ├── dice-one.svg │ │ │ ├── dice-six.svg │ │ │ ├── dice-three.svg │ │ │ ├── dice-two.svg │ │ │ ├── dice.svg │ │ │ ├── digging.svg │ │ │ ├── digital-tachograph.svg │ │ │ ├── diploma.svg │ │ │ ├── directions.svg │ │ │ ├── disc-drive.svg │ │ │ ├── disease.svg │ │ │ ├── divide.svg │ │ │ ├── dizzy.svg │ │ │ ├── dna.svg │ │ │ ├── do-not-enter.svg │ │ │ ├── dog-leashed.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly-empty.svg │ │ │ ├── dolly-flatbed-alt.svg │ │ │ ├── dolly-flatbed-empty.svg │ │ │ ├── dolly-flatbed.svg │ │ │ ├── dolly.svg │ │ │ ├── donate.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dot-circle.svg │ │ │ ├── dove.svg │ │ │ ├── download.svg │ │ │ ├── drafting-compass.svg │ │ │ ├── dragon.svg │ │ │ ├── draw-circle.svg │ │ │ ├── draw-polygon.svg │ │ │ ├── draw-square.svg │ │ │ ├── dreidel.svg │ │ │ ├── drone-alt.svg │ │ │ ├── drone.svg │ │ │ ├── drum-steelpan.svg │ │ │ ├── drum.svg │ │ │ ├── drumstick-bite.svg │ │ │ ├── drumstick.svg │ │ │ ├── dryer-alt.svg │ │ │ ├── dryer.svg │ │ │ ├── duck.svg │ │ │ ├── dumbbell.svg │ │ │ ├── dumpster-fire.svg │ │ │ ├── dumpster.svg │ │ │ ├── dungeon.svg │ │ │ ├── ear-muffs.svg │ │ │ ├── ear.svg │ │ │ ├── eclipse-alt.svg │ │ │ ├── eclipse.svg │ │ │ ├── edit.svg │ │ │ ├── egg-fried.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── elephant.svg │ │ │ ├── ellipsis-h-alt.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v-alt.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── empty-set.svg │ │ │ ├── engine-warning.svg │ │ │ ├── envelope-open-dollar.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-square.svg │ │ │ ├── envelope.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exchange.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-square.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand-alt.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand-arrows.svg │ │ │ ├── expand-wide.svg │ │ │ ├── expand.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── external-link-square-alt.svg │ │ │ ├── external-link-square.svg │ │ │ ├── external-link.svg │ │ │ ├── eye-dropper.svg │ │ │ ├── eye-evil.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── fan-table.svg │ │ │ ├── fan.svg │ │ │ ├── farm.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── faucet-drip.svg │ │ │ ├── faucet.svg │ │ │ ├── fax.svg │ │ │ ├── feather-alt.svg │ │ │ ├── feather.svg │ │ │ ├── female.svg │ │ │ ├── field-hockey.svg │ │ │ ├── fighter-jet.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-certificate.svg │ │ │ ├── file-chart-line.svg │ │ │ ├── file-chart-pie.svg │ │ │ ├── file-check.svg │ │ │ ├── file-code.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-csv.svg │ │ │ ├── file-download.svg │ │ │ ├── file-edit.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-exclamation.svg │ │ │ ├── file-export.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-minus.svg │ │ │ ├── file-music.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-plus.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-search.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-spreadsheet.svg │ │ │ ├── file-times.svg │ │ │ ├── file-upload.svg │ │ │ ├── file-user.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── files-medical.svg │ │ │ ├── fill-drip.svg │ │ │ ├── fill.svg │ │ │ ├── film-alt.svg │ │ │ ├── film-canister.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire-alt.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire-smoke.svg │ │ │ ├── fire.svg │ │ │ ├── fireplace.svg │ │ │ ├── first-aid.svg │ │ │ ├── fish-cooked.svg │ │ │ ├── fish.svg │ │ │ ├── fist-raised.svg │ │ │ ├── flag-alt.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flame.svg │ │ │ ├── flashlight.svg │ │ │ ├── flask-poison.svg │ │ │ ├── flask-potion.svg │ │ │ ├── flask.svg │ │ │ ├── flower-daffodil.svg │ │ │ ├── flower-tulip.svg │ │ │ ├── flower.svg │ │ │ ├── flushed.svg │ │ │ ├── flute.svg │ │ │ ├── flux-capacitor.svg │ │ │ ├── fog.svg │ │ │ ├── folder-download.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder-times.svg │ │ │ ├── folder-tree.svg │ │ │ ├── folder-upload.svg │ │ │ ├── folder.svg │ │ │ ├── folders.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-case.svg │ │ │ ├── font.svg │ │ │ ├── football-ball.svg │ │ │ ├── football-helmet.svg │ │ │ ├── forklift.svg │ │ │ ├── forward.svg │ │ │ ├── fragile.svg │ │ │ ├── french-fries.svg │ │ │ ├── frog.svg │ │ │ ├── frosty-head.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── function.svg │ │ │ ├── funnel-dollar.svg │ │ │ ├── futbol.svg │ │ │ ├── galaxy.svg │ │ │ ├── game-board-alt.svg │ │ │ ├── game-board.svg │ │ │ ├── game-console-handheld.svg │ │ │ ├── gamepad-alt.svg │ │ │ ├── gamepad.svg │ │ │ ├── garage-car.svg │ │ │ ├── garage-open.svg │ │ │ ├── garage.svg │ │ │ ├── gas-pump-slash.svg │ │ │ ├── gas-pump.svg │ │ │ ├── gavel.svg │ │ │ ├── gem.svg │ │ │ ├── genderless.svg │ │ │ ├── ghost.svg │ │ │ ├── gift-card.svg │ │ │ ├── gift.svg │ │ │ ├── gifts.svg │ │ │ ├── gingerbread-man.svg │ │ │ ├── glass-champagne.svg │ │ │ ├── glass-cheers.svg │ │ │ ├── glass-citrus.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-whiskey-rocks.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── glass.svg │ │ │ ├── glasses-alt.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-africa.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia.svg │ │ │ ├── globe-europe.svg │ │ │ ├── globe-snow.svg │ │ │ ├── globe-stand.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball.svg │ │ │ ├── golf-club.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── gramophone.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── grip-lines.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── guitar-electric.svg │ │ │ ├── guitar.svg │ │ │ ├── guitars.svg │ │ │ ├── h-square.svg │ │ │ ├── h1.svg │ │ │ ├── h2.svg │ │ │ ├── h3.svg │ │ │ ├── h4.svg │ │ │ ├── hamburger.svg │ │ │ ├── hammer-war.svg │ │ │ ├── hammer.svg │ │ │ ├── hamsa.svg │ │ │ ├── hand-heart.svg │ │ │ ├── hand-holding-box.svg │ │ │ ├── hand-holding-heart.svg │ │ │ ├── hand-holding-magic.svg │ │ │ ├── hand-holding-medical.svg │ │ │ ├── hand-holding-seedling.svg │ │ │ ├── hand-holding-usd.svg │ │ │ ├── hand-holding-water.svg │ │ │ ├── hand-holding.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-receiving.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-sparkles.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hands-heart.svg │ │ │ ├── hands-helping.svg │ │ │ ├── hands-usd.svg │ │ │ ├── hands-wash.svg │ │ │ ├── hands.svg │ │ │ ├── handshake-alt-slash.svg │ │ │ ├── handshake-alt.svg │ │ │ ├── handshake-slash.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-chef.svg │ │ │ ├── hat-cowboy-side.svg │ │ │ ├── hat-cowboy.svg │ │ │ ├── hat-santa.svg │ │ │ ├── hat-winter.svg │ │ │ ├── hat-witch.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── hdd.svg │ │ │ ├── head-side-brain.svg │ │ │ ├── head-side-cough-slash.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-headphones.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side-medical.svg │ │ │ ├── head-side-virus.svg │ │ │ ├── head-side.svg │ │ │ ├── head-vr.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart-circle.svg │ │ │ ├── heart-rate.svg │ │ │ ├── heart-square.svg │ │ │ ├── heart.svg │ │ │ ├── heartbeat.svg │ │ │ ├── heat.svg │ │ │ ├── helicopter.svg │ │ │ ├── helmet-battle.svg │ │ │ ├── hexagon.svg │ │ │ ├── highlighter.svg │ │ │ ├── hiking.svg │ │ │ ├── hippo.svg │ │ │ ├── history.svg │ │ │ ├── hockey-mask.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── hockey-sticks.svg │ │ │ ├── holly-berry.svg │ │ │ ├── home-alt.svg │ │ │ ├── home-heart.svg │ │ │ ├── home-lg-alt.svg │ │ │ ├── home-lg.svg │ │ │ ├── home.svg │ │ │ ├── hood-cloak.svg │ │ │ ├── horizontal-rule.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse-saddle.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-alt.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital-user.svg │ │ │ ├── hospital.svg │ │ │ ├── hospitals.svg │ │ │ ├── hot-tub.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-half.svg │ │ │ ├── hourglass-start.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-damage.svg │ │ │ ├── house-day.svg │ │ │ ├── house-flood.svg │ │ │ ├── house-leave.svg │ │ │ ├── house-night.svg │ │ │ ├── house-return.svg │ │ │ ├── house-signal.svg │ │ │ ├── house-user.svg │ │ │ ├── house.svg │ │ │ ├── hryvnia.svg │ │ │ ├── humidity.svg │ │ │ ├── hurricane.svg │ │ │ ├── i-cursor.svg │ │ │ ├── ice-cream.svg │ │ │ ├── ice-skate.svg │ │ │ ├── icicles.svg │ │ │ ├── icons-alt.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-alt.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image-polaroid.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox-in.svg │ │ │ ├── inbox-out.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── industry-alt.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle.svg │ │ │ ├── info-square.svg │ │ │ ├── info.svg │ │ │ ├── inhaler.svg │ │ │ ├── integral.svg │ │ │ ├── intersection.svg │ │ │ ├── inventory.svg │ │ │ ├── island-tropical.svg │ │ │ ├── italic.svg │ │ │ ├── jack-o-lantern.svg │ │ │ ├── jedi.svg │ │ │ ├── joint.svg │ │ │ ├── journal-whills.svg │ │ │ ├── joystick.svg │ │ │ ├── jug.svg │ │ │ ├── kaaba.svg │ │ │ ├── kazoo.svg │ │ │ ├── kerning.svg │ │ │ ├── key-skeleton.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── keynote.svg │ │ │ ├── khanda.svg │ │ │ ├── kidneys.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── kite.svg │ │ │ ├── kiwi-bird.svg │ │ │ ├── knife-kitchen.svg │ │ │ ├── lambda.svg │ │ │ ├── lamp-desk.svg │ │ │ ├── lamp-floor.svg │ │ │ ├── lamp.svg │ │ │ ├── landmark-alt.svg │ │ │ ├── landmark.svg │ │ │ ├── language.svg │ │ │ ├── laptop-code.svg │ │ │ ├── laptop-house.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── lasso.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── layer-group.svg │ │ │ ├── layer-minus.svg │ │ │ ├── layer-plus.svg │ │ │ ├── leaf-heart.svg │ │ │ ├── leaf-maple.svg │ │ │ ├── leaf-oak.svg │ │ │ ├── leaf.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── level-down-alt.svg │ │ │ ├── level-down.svg │ │ │ ├── level-up-alt.svg │ │ │ ├── level-up.svg │ │ │ ├── life-ring.svg │ │ │ ├── light-ceiling.svg │ │ │ ├── light-switch-off.svg │ │ │ ├── light-switch-on.svg │ │ │ ├── light-switch.svg │ │ │ ├── lightbulb-dollar.svg │ │ │ ├── lightbulb-exclamation.svg │ │ │ ├── lightbulb-on.svg │ │ │ ├── lightbulb-slash.svg │ │ │ ├── lightbulb.svg │ │ │ ├── lights-holiday.svg │ │ │ ├── line-columns.svg │ │ │ ├── line-height.svg │ │ │ ├── link.svg │ │ │ ├── lips.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-alt.svg │ │ │ ├── list-music.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── location-circle.svg │ │ │ ├── location-slash.svg │ │ │ ├── location.svg │ │ │ ├── lock-alt.svg │ │ │ ├── lock-open-alt.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── long-arrow-down.svg │ │ │ ├── long-arrow-left.svg │ │ │ ├── long-arrow-right.svg │ │ │ ├── long-arrow-up.svg │ │ │ ├── loveseat.svg │ │ │ ├── low-vision.svg │ │ │ ├── luchador.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── lungs-virus.svg │ │ │ ├── lungs.svg │ │ │ ├── mace.svg │ │ │ ├── magic.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-bulk.svg │ │ │ ├── mailbox.svg │ │ │ ├── male.svg │ │ │ ├── mandolin.svg │ │ │ ├── map-marked-alt.svg │ │ │ ├── map-marked.svg │ │ │ ├── map-marker-alt-slash.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker-check.svg │ │ │ ├── map-marker-edit.svg │ │ │ ├── map-marker-exclamation.svg │ │ │ ├── map-marker-minus.svg │ │ │ ├── map-marker-plus.svg │ │ │ ├── map-marker-question.svg │ │ │ ├── map-marker-slash.svg │ │ │ ├── map-marker-smile.svg │ │ │ ├── map-marker-times.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin.svg │ │ │ ├── map-signs.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-h.svg │ │ │ ├── mars-stroke-v.svg │ │ │ ├── mars-stroke.svg │ │ │ ├── mars.svg │ │ │ ├── mask.svg │ │ │ ├── meat.svg │ │ │ ├── medal.svg │ │ │ ├── medkit.svg │ │ │ ├── megaphone.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-alt-slash.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone-stand.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── microwave.svg │ │ │ ├── mind-share.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-hexagon.svg │ │ │ ├── minus-octagon.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mistletoe.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-alt.svg │ │ │ ├── mobile-android-alt.svg │ │ │ ├── mobile-android.svg │ │ │ ├── mobile.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── money-bill-wave-alt.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-check-alt.svg │ │ │ ├── money-check-edit-alt.svg │ │ │ ├── money-check-edit.svg │ │ │ ├── money-check.svg │ │ │ ├── monitor-heart-rate.svg │ │ │ ├── monkey.svg │ │ │ ├── monument.svg │ │ │ ├── moon-cloud.svg │ │ │ ├── moon-stars.svg │ │ │ ├── moon.svg │ │ │ ├── mortar-pestle.svg │ │ │ ├── mosque.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mountain.svg │ │ │ ├── mountains.svg │ │ │ ├── mouse-alt.svg │ │ │ ├── mouse-pointer.svg │ │ │ ├── mouse.svg │ │ │ ├── mp3-player.svg │ │ │ ├── mug-hot.svg │ │ │ ├── mug-marshmallows.svg │ │ │ ├── mug-tea.svg │ │ │ ├── mug.svg │ │ │ ├── music-alt-slash.svg │ │ │ ├── music-alt.svg │ │ │ ├── music-slash.svg │ │ │ ├── music.svg │ │ │ ├── narwhal.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── notes-medical.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── octagon.svg │ │ │ ├── oil-can.svg │ │ │ ├── oil-temp.svg │ │ │ ├── om.svg │ │ │ ├── omega.svg │ │ │ ├── ornament.svg │ │ │ ├── otter.svg │ │ │ ├── outdent.svg │ │ │ ├── outlet.svg │ │ │ ├── oven.svg │ │ │ ├── overline.svg │ │ │ ├── page-break.svg │ │ │ ├── pager.svg │ │ │ ├── paint-brush-alt.svg │ │ │ ├── paint-brush.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── pallet-alt.svg │ │ │ ├── pallet.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph-rtl.svg │ │ │ ├── paragraph.svg │ │ │ ├── parking-circle-slash.svg │ │ │ ├── parking-circle.svg │ │ │ ├── parking-slash.svg │ │ │ ├── parking.svg │ │ │ ├── passport.svg │ │ │ ├── pastafarianism.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paw-alt.svg │ │ │ ├── paw-claws.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pegasus.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-paintbrush.svg │ │ │ ├── pencil-ruler.svg │ │ │ ├── pencil.svg │ │ │ ├── pennant.svg │ │ │ ├── people-arrows.svg │ │ │ ├── people-carry.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── percentage.svg │ │ │ ├── person-booth.svg │ │ │ ├── person-carry.svg │ │ │ ├── person-dolly-empty.svg │ │ │ ├── person-dolly.svg │ │ │ ├── person-sign.svg │ │ │ ├── phone-alt.svg │ │ │ ├── phone-laptop.svg │ │ │ ├── phone-office.svg │ │ │ ├── phone-plus.svg │ │ │ ├── phone-rotary.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-square-alt.svg │ │ │ ├── phone-square.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-video.svg │ │ │ ├── pi.svg │ │ │ ├── piano-keyboard.svg │ │ │ ├── piano.svg │ │ │ ├── pie.svg │ │ │ ├── pig.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pills.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── pizza.svg │ │ │ ├── place-of-worship.svg │ │ │ ├── plane-alt.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane-slash.svg │ │ │ ├── plane.svg │ │ │ ├── planet-moon.svg │ │ │ ├── planet-ringed.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-hexagon.svg │ │ │ ├── plus-octagon.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── podium-star.svg │ │ │ ├── podium.svg │ │ │ ├── police-box.svg │ │ │ ├── poll-h.svg │ │ │ ├── poll-people.svg │ │ │ ├── poll.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── popcorn.svg │ │ │ ├── portal-enter.svg │ │ │ ├── portal-exit.svg │ │ │ ├── portrait.svg │ │ │ ├── pound-sign.svg │ │ │ ├── power-off.svg │ │ │ ├── pray.svg │ │ │ ├── praying-hands.svg │ │ │ ├── prescription-bottle-alt.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── presentation.svg │ │ │ ├── print-search.svg │ │ │ ├── print-slash.svg │ │ │ ├── print.svg │ │ │ ├── procedures.svg │ │ │ ├── project-diagram.svg │ │ │ ├── projector.svg │ │ │ ├── pump-medical.svg │ │ │ ├── pump-soap.svg │ │ │ ├── pumpkin.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-circle.svg │ │ │ ├── question-square.svg │ │ │ ├── question.svg │ │ │ ├── quidditch.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── quran.svg │ │ │ ├── rabbit-fast.svg │ │ │ ├── rabbit.svg │ │ │ ├── racquet.svg │ │ │ ├── radar.svg │ │ │ ├── radiation-alt.svg │ │ │ ├── radiation.svg │ │ │ ├── radio-alt.svg │ │ │ ├── radio.svg │ │ │ ├── rainbow.svg │ │ │ ├── raindrops.svg │ │ │ ├── ram.svg │ │ │ ├── ramp-loading.svg │ │ │ ├── random.svg │ │ │ ├── raygun.svg │ │ │ ├── receipt.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── rectangle-landscape.svg │ │ │ ├── rectangle-portrait.svg │ │ │ ├── rectangle-wide.svg │ │ │ ├── recycle.svg │ │ │ ├── redo-alt.svg │ │ │ ├── redo.svg │ │ │ ├── refrigerator.svg │ │ │ ├── registered.svg │ │ │ ├── remove-format.svg │ │ │ ├── repeat-1-alt.svg │ │ │ ├── repeat-1.svg │ │ │ ├── repeat-alt.svg │ │ │ ├── repeat.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── republican.svg │ │ │ ├── restroom.svg │ │ │ ├── retweet-alt.svg │ │ │ ├── retweet.svg │ │ │ ├── ribbon.svg │ │ │ ├── ring.svg │ │ │ ├── rings-wedding.svg │ │ │ ├── road.svg │ │ │ ├── robot.svg │ │ │ ├── rocket-launch.svg │ │ │ ├── rocket.svg │ │ │ ├── route-highway.svg │ │ │ ├── route-interstate.svg │ │ │ ├── route.svg │ │ │ ├── router.svg │ │ │ ├── rss-square.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-triangle.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── running.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── rv.svg │ │ │ ├── sack-dollar.svg │ │ │ ├── sack.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── salad.svg │ │ │ ├── sandwich.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── sausage.svg │ │ │ ├── save.svg │ │ │ ├── sax-hot.svg │ │ │ ├── saxophone.svg │ │ │ ├── scalpel-path.svg │ │ │ ├── scalpel.svg │ │ │ ├── scanner-image.svg │ │ │ ├── scanner-keyboard.svg │ │ │ ├── scanner-touchscreen.svg │ │ │ ├── scanner.svg │ │ │ ├── scarecrow.svg │ │ │ ├── scarf.svg │ │ │ ├── school.svg │ │ │ ├── screwdriver.svg │ │ │ ├── scroll-old.svg │ │ │ ├── scroll.svg │ │ │ ├── scrubber.svg │ │ │ ├── scythe.svg │ │ │ ├── sd-card.svg │ │ │ ├── search-dollar.svg │ │ │ ├── search-location.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── seedling.svg │ │ │ ├── send-back.svg │ │ │ ├── send-backward.svg │ │ │ ├── sensor-alert.svg │ │ │ ├── sensor-fire.svg │ │ │ ├── sensor-on.svg │ │ │ ├── sensor-smoke.svg │ │ │ ├── sensor.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-all.svg │ │ │ ├── share-alt-square.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-square.svg │ │ │ ├── share.svg │ │ │ ├── sheep.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-alt.svg │ │ │ ├── shield-check.svg │ │ │ ├── shield-cross.svg │ │ │ ├── shield-virus.svg │ │ │ ├── shield.svg │ │ │ ├── ship.svg │ │ │ ├── shipping-fast.svg │ │ │ ├── shipping-timed.svg │ │ │ ├── shish-kebab.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shovel-snow.svg │ │ │ ├── shovel.svg │ │ │ ├── shower.svg │ │ │ ├── shredder.svg │ │ │ ├── shuttle-van.svg │ │ │ ├── shuttlecock.svg │ │ │ ├── sickle.svg │ │ │ ├── sigma.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-in.svg │ │ │ ├── sign-language.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign-out.svg │ │ │ ├── sign.svg │ │ │ ├── signal-1.svg │ │ │ ├── signal-2.svg │ │ │ ├── signal-3.svg │ │ │ ├── signal-4.svg │ │ │ ├── signal-alt-1.svg │ │ │ ├── signal-alt-2.svg │ │ │ ├── signal-alt-3.svg │ │ │ ├── signal-alt-slash.svg │ │ │ ├── signal-alt.svg │ │ │ ├── signal-slash.svg │ │ │ ├── signal-stream.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── sim-card.svg │ │ │ ├── sink.svg │ │ │ ├── siren-on.svg │ │ │ ├── siren.svg │ │ │ ├── sitemap.svg │ │ │ ├── skating.svg │ │ │ ├── skeleton.svg │ │ │ ├── ski-jump.svg │ │ │ ├── ski-lift.svg │ │ │ ├── skiing-nordic.svg │ │ │ ├── skiing.svg │ │ │ ├── skull-cow.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sledding.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders-h-square.svg │ │ │ ├── sliders-h.svg │ │ │ ├── sliders-v-square.svg │ │ │ ├── sliders-v.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-plus.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── smog.svg │ │ │ ├── smoke.svg │ │ │ ├── smoking-ban.svg │ │ │ ├── smoking.svg │ │ │ ├── sms.svg │ │ │ ├── snake.svg │ │ │ ├── snooze.svg │ │ │ ├── snow-blowing.svg │ │ │ ├── snowboarding.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowflakes.svg │ │ │ ├── snowman.svg │ │ │ ├── snowmobile.svg │ │ │ ├── snowplow.svg │ │ │ ├── soap.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── solar-system.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-alt.svg │ │ │ ├── sort-amount-down-alt.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up-alt.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort-circle-down.svg │ │ │ ├── sort-circle-up.svg │ │ │ ├── sort-circle.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-shapes-down-alt.svg │ │ │ ├── sort-shapes-down.svg │ │ │ ├── sort-shapes-up-alt.svg │ │ │ ├── sort-shapes-up.svg │ │ │ ├── sort-size-down-alt.svg │ │ │ ├── sort-size-down.svg │ │ │ ├── sort-size-up-alt.svg │ │ │ ├── sort-size-up.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── soup.svg │ │ │ ├── spa.svg │ │ │ ├── space-shuttle.svg │ │ │ ├── space-station-moon-alt.svg │ │ │ ├── space-station-moon.svg │ │ │ ├── spade.svg │ │ │ ├── sparkles.svg │ │ │ ├── speaker.svg │ │ │ ├── speakers.svg │ │ │ ├── spell-check.svg │ │ │ ├── spider-black-widow.svg │ │ │ ├── spider-web.svg │ │ │ ├── spider.svg │ │ │ ├── spinner-third.svg │ │ │ ├── spinner.svg │ │ │ ├── splotch.svg │ │ │ ├── spray-can.svg │ │ │ ├── sprinkler.svg │ │ │ ├── square-full.svg │ │ │ ├── square-root-alt.svg │ │ │ ├── square-root.svg │ │ │ ├── square.svg │ │ │ ├── squirrel.svg │ │ │ ├── staff.svg │ │ │ ├── stamp.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-christmas.svg │ │ │ ├── star-exclamation.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star-shooting.svg │ │ │ ├── star.svg │ │ │ ├── starfighter-alt.svg │ │ │ ├── starfighter.svg │ │ │ ├── stars.svg │ │ │ ├── starship-freighter.svg │ │ │ ├── starship.svg │ │ │ ├── steak.svg │ │ │ ├── steering-wheel.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stocking.svg │ │ │ ├── stomach.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-20.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt-slash.svg │ │ │ ├── store-alt.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── stream.svg │ │ │ ├── street-view.svg │ │ │ ├── stretcher.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun-cloud.svg │ │ │ ├── sun-dust.svg │ │ │ ├── sun-haze.svg │ │ │ ├── sun.svg │ │ │ ├── sunglasses.svg │ │ │ ├── sunrise.svg │ │ │ ├── sunset.svg │ │ │ ├── superscript.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swimmer.svg │ │ │ ├── swimming-pool.svg │ │ │ ├── sword-laser-alt.svg │ │ │ ├── sword-laser.svg │ │ │ ├── sword.svg │ │ │ ├── swords-laser.svg │ │ │ ├── swords.svg │ │ │ ├── synagogue.svg │ │ │ ├── sync-alt.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet-alt.svg │ │ │ ├── tablet-android-alt.svg │ │ │ ├── tablet-android.svg │ │ │ ├── tablet-rugged.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachometer-alt-average.svg │ │ │ ├── tachometer-alt-fast.svg │ │ │ ├── tachometer-alt-fastest.svg │ │ │ ├── tachometer-alt-slow.svg │ │ │ ├── tachometer-alt-slowest.svg │ │ │ ├── tachometer-alt.svg │ │ │ ├── tachometer-average.svg │ │ │ ├── tachometer-fast.svg │ │ │ ├── tachometer-fastest.svg │ │ │ ├── tachometer-slow.svg │ │ │ ├── tachometer-slowest.svg │ │ │ ├── tachometer.svg │ │ │ ├── taco.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tally.svg │ │ │ ├── tanakh.svg │ │ │ ├── tape.svg │ │ │ ├── tasks-alt.svg │ │ │ ├── tasks.svg │ │ │ ├── taxi.svg │ │ │ ├── teeth-open.svg │ │ │ ├── teeth.svg │ │ │ ├── telescope.svg │ │ │ ├── temperature-down.svg │ │ │ ├── temperature-frigid.svg │ │ │ ├── temperature-high.svg │ │ │ ├── temperature-hot.svg │ │ │ ├── temperature-low.svg │ │ │ ├── temperature-up.svg │ │ │ ├── tenge.svg │ │ │ ├── tennis-ball.svg │ │ │ ├── terminal.svg │ │ │ ├── text-height.svg │ │ │ ├── text-size.svg │ │ │ ├── text-width.svg │ │ │ ├── text.svg │ │ │ ├── th-large.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── theater-masks.svg │ │ │ ├── thermometer-empty.svg │ │ │ ├── thermometer-full.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-quarter.svg │ │ │ ├── thermometer-three-quarters.svg │ │ │ ├── thermometer.svg │ │ │ ├── theta.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack.svg │ │ │ ├── thunderstorm-moon.svg │ │ │ ├── thunderstorm-sun.svg │ │ │ ├── thunderstorm.svg │ │ │ ├── ticket-alt.svg │ │ │ ├── ticket.svg │ │ │ ├── tilde.svg │ │ │ ├── times-circle.svg │ │ │ ├── times-hexagon.svg │ │ │ ├── times-octagon.svg │ │ │ ├── times-square.svg │ │ │ ├── times.svg │ │ │ ├── tint-slash.svg │ │ │ ├── tint.svg │ │ │ ├── tire-flat.svg │ │ │ ├── tire-pressure-warning.svg │ │ │ ├── tire-rugged.svg │ │ │ ├── tire.svg │ │ │ ├── tired.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper-alt.svg │ │ │ ├── toilet-paper-slash.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet.svg │ │ │ ├── tombstone-alt.svg │ │ │ ├── tombstone.svg │ │ │ ├── toolbox.svg │ │ │ ├── tools.svg │ │ │ ├── tooth.svg │ │ │ ├── toothbrush.svg │ │ │ ├── torah.svg │ │ │ ├── torii-gate.svg │ │ │ ├── tornado.svg │ │ │ ├── tractor.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-cone.svg │ │ │ ├── traffic-light-go.svg │ │ │ ├── traffic-light-slow.svg │ │ │ ├── traffic-light-stop.svg │ │ │ ├── traffic-light.svg │ │ │ ├── trailer.svg │ │ │ ├── train.svg │ │ │ ├── tram.svg │ │ │ ├── transgender-alt.svg │ │ │ ├── transgender.svg │ │ │ ├── transporter-1.svg │ │ │ ├── transporter-2.svg │ │ │ ├── transporter-3.svg │ │ │ ├── transporter-empty.svg │ │ │ ├── transporter.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-restore-alt.svg │ │ │ ├── trash-restore.svg │ │ │ ├── trash-undo-alt.svg │ │ │ ├── trash-undo.svg │ │ │ ├── trash.svg │ │ │ ├── treasure-chest.svg │ │ │ ├── tree-alt.svg │ │ │ ├── tree-christmas.svg │ │ │ ├── tree-decorated.svg │ │ │ ├── tree-large.svg │ │ │ ├── tree-palm.svg │ │ │ ├── tree.svg │ │ │ ├── trees.svg │ │ │ ├── triangle-music.svg │ │ │ ├── triangle.svg │ │ │ ├── trophy-alt.svg │ │ │ ├── trophy.svg │ │ │ ├── truck-container.svg │ │ │ ├── truck-couch.svg │ │ │ ├── truck-loading.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck-plow.svg │ │ │ ├── truck-ramp.svg │ │ │ ├── truck.svg │ │ │ ├── trumpet.svg │ │ │ ├── tshirt.svg │ │ │ ├── tty.svg │ │ │ ├── turkey.svg │ │ │ ├── turntable.svg │ │ │ ├── turtle.svg │ │ │ ├── tv-alt.svg │ │ │ ├── tv-music.svg │ │ │ ├── tv-retro.svg │ │ │ ├── tv.svg │ │ │ ├── typewriter.svg │ │ │ ├── ufo-beam.svg │ │ │ ├── ufo.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── undo-alt.svg │ │ │ ├── undo.svg │ │ │ ├── unicorn.svg │ │ │ ├── union.svg │ │ │ ├── universal-access.svg │ │ │ ├── university.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock-alt.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── usb-drive.svg │ │ │ ├── usd-circle.svg │ │ │ ├── usd-square.svg │ │ │ ├── user-alien.svg │ │ │ ├── user-alt-slash.svg │ │ │ ├── user-alt.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-chart.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-cowboy.svg │ │ │ ├── user-crown.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-friends.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-hard-hat.svg │ │ │ ├── user-headset.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-md-chat.svg │ │ │ ├── user-md.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-music.svg │ │ │ ├── user-ninja.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-robot.svg │ │ │ ├── user-secret.svg │ │ │ ├── user-shield.svg │ │ │ ├── user-slash.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tie.svg │ │ │ ├── user-times.svg │ │ │ ├── user-unlock.svg │ │ │ ├── user-visor.svg │ │ │ ├── user.svg │ │ │ ├── users-class.svg │ │ │ ├── users-cog.svg │ │ │ ├── users-crown.svg │ │ │ ├── users-medical.svg │ │ │ ├── users-slash.svg │ │ │ ├── users.svg │ │ │ ├── utensil-fork.svg │ │ │ ├── utensil-knife.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── utensils-alt.svg │ │ │ ├── utensils.svg │ │ │ ├── vacuum-robot.svg │ │ │ ├── vacuum.svg │ │ │ ├── value-absolute.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus-double.svg │ │ │ ├── venus-mars.svg │ │ │ ├── venus.svg │ │ │ ├── vhs.svg │ │ │ ├── vial.svg │ │ │ ├── vials.svg │ │ │ ├── video-plus.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── vihara.svg │ │ │ ├── violin.svg │ │ │ ├── virus-slash.svg │ │ │ ├── virus.svg │ │ │ ├── viruses.svg │ │ │ ├── voicemail.svg │ │ │ ├── volcano.svg │ │ │ ├── volleyball-ball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-slash.svg │ │ │ ├── volume-up.svg │ │ │ ├── volume.svg │ │ │ ├── vote-nay.svg │ │ │ ├── vote-yea.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── wagon-covered.svg │ │ │ ├── walker.svg │ │ │ ├── walkie-talkie.svg │ │ │ ├── walking.svg │ │ │ ├── wallet.svg │ │ │ ├── wand-magic.svg │ │ │ ├── wand.svg │ │ │ ├── warehouse-alt.svg │ │ │ ├── warehouse.svg │ │ │ ├── washer.svg │ │ │ ├── watch-calculator.svg │ │ │ ├── watch-fitness.svg │ │ │ ├── watch.svg │ │ │ ├── water-lower.svg │ │ │ ├── water-rise.svg │ │ │ ├── water.svg │ │ │ ├── wave-sine.svg │ │ │ ├── wave-square.svg │ │ │ ├── wave-triangle.svg │ │ │ ├── waveform-path.svg │ │ │ ├── waveform.svg │ │ │ ├── webcam-slash.svg │ │ │ ├── webcam.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight.svg │ │ │ ├── whale.svg │ │ │ ├── wheat.svg │ │ │ ├── wheelchair.svg │ │ │ ├── whistle.svg │ │ │ ├── wifi-1.svg │ │ │ ├── wifi-2.svg │ │ │ ├── wifi-slash.svg │ │ │ ├── wifi.svg │ │ │ ├── wind-turbine.svg │ │ │ ├── wind-warning.svg │ │ │ ├── wind.svg │ │ │ ├── window-alt.svg │ │ │ ├── window-close.svg │ │ │ ├── window-frame-open.svg │ │ │ ├── window-frame.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── window.svg │ │ │ ├── windsock.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-alt.svg │ │ │ ├── wine-glass.svg │ │ │ ├── won-sign.svg │ │ │ ├── wreath.svg │ │ │ ├── wrench.svg │ │ │ ├── x-ray.svg │ │ │ ├── yen-sign.svg │ │ │ └── yin-yang.svg │ │ └── solid │ │ │ ├── abacus.svg │ │ │ ├── acorn.svg │ │ │ ├── ad.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── adjust.svg │ │ │ ├── air-conditioner.svg │ │ │ ├── air-freshener.svg │ │ │ ├── alarm-clock.svg │ │ │ ├── alarm-exclamation.svg │ │ │ ├── alarm-plus.svg │ │ │ ├── alarm-snooze.svg │ │ │ ├── album-collection.svg │ │ │ ├── album.svg │ │ │ ├── alicorn.svg │ │ │ ├── alien-monster.svg │ │ │ ├── alien.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── align-slash.svg │ │ │ ├── allergies.svg │ │ │ ├── ambulance.svg │ │ │ ├── american-sign-language-interpreting.svg │ │ │ ├── amp-guitar.svg │ │ │ ├── analytics.svg │ │ │ ├── anchor.svg │ │ │ ├── angel.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 │ │ │ ├── ankh.svg │ │ │ ├── apple-alt.svg │ │ │ ├── apple-crate.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-alt-down.svg │ │ │ ├── arrow-alt-from-bottom.svg │ │ │ ├── arrow-alt-from-left.svg │ │ │ ├── arrow-alt-from-right.svg │ │ │ ├── arrow-alt-from-top.svg │ │ │ ├── arrow-alt-left.svg │ │ │ ├── arrow-alt-right.svg │ │ │ ├── arrow-alt-square-down.svg │ │ │ ├── arrow-alt-square-left.svg │ │ │ ├── arrow-alt-square-right.svg │ │ │ ├── arrow-alt-square-up.svg │ │ │ ├── arrow-alt-to-bottom.svg │ │ │ ├── arrow-alt-to-left.svg │ │ │ ├── arrow-alt-to-right.svg │ │ │ ├── arrow-alt-to-top.svg │ │ │ ├── arrow-alt-up.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-from-bottom.svg │ │ │ ├── arrow-from-left.svg │ │ │ ├── arrow-from-right.svg │ │ │ ├── arrow-from-top.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-square-down.svg │ │ │ ├── arrow-square-left.svg │ │ │ ├── arrow-square-right.svg │ │ │ ├── arrow-square-up.svg │ │ │ ├── arrow-to-bottom.svg │ │ │ ├── arrow-to-left.svg │ │ │ ├── arrow-to-right.svg │ │ │ ├── arrow-to-top.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-alt-h.svg │ │ │ ├── arrows-alt-v.svg │ │ │ ├── arrows-alt.svg │ │ │ ├── arrows-h.svg │ │ │ ├── arrows-v.svg │ │ │ ├── arrows.svg │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atlas.svg │ │ │ ├── atom-alt.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── award.svg │ │ │ ├── axe-battle.svg │ │ │ ├── axe.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backpack.svg │ │ │ ├── backspace.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── bacteria.svg │ │ │ ├── bacterium.svg │ │ │ ├── badge-check.svg │ │ │ ├── badge-dollar.svg │ │ │ ├── badge-percent.svg │ │ │ ├── badge-sheriff.svg │ │ │ ├── badge.svg │ │ │ ├── badger-honey.svg │ │ │ ├── bags-shopping.svg │ │ │ ├── bahai.svg │ │ │ ├── balance-scale-left.svg │ │ │ ├── balance-scale-right.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ball-pile.svg │ │ │ ├── ballot-check.svg │ │ │ ├── ballot.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── banjo.svg │ │ │ ├── barcode-alt.svg │ │ │ ├── barcode-read.svg │ │ │ ├── barcode-scan.svg │ │ │ ├── barcode.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── baseball.svg │ │ │ ├── basketball-ball.svg │ │ │ ├── basketball-hoop.svg │ │ │ ├── bat.svg │ │ │ ├── bath.svg │ │ │ ├── battery-bolt.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── battery-slash.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── bed-alt.svg │ │ │ ├── bed-bunk.svg │ │ │ ├── bed-empty.svg │ │ │ ├── bed.svg │ │ │ ├── beer.svg │ │ │ ├── bell-exclamation.svg │ │ │ ├── bell-on.svg │ │ │ ├── bell-plus.svg │ │ │ ├── bell-school-slash.svg │ │ │ ├── bell-school.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bells.svg │ │ │ ├── betamax.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bible.svg │ │ │ ├── bicycle.svg │ │ │ ├── biking-mountain.svg │ │ │ ├── biking.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── blanket.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blind.svg │ │ │ ├── blinds-open.svg │ │ │ ├── blinds-raised.svg │ │ │ ├── blinds.svg │ │ │ ├── blog.svg │ │ │ ├── bold.svg │ │ │ ├── bolt.svg │ │ │ ├── bomb.svg │ │ │ ├── bone-break.svg │ │ │ ├── bone.svg │ │ │ ├── bong.svg │ │ │ ├── book-alt.svg │ │ │ ├── book-dead.svg │ │ │ ├── book-heart.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open.svg │ │ │ ├── book-reader.svg │ │ │ ├── book-spells.svg │ │ │ ├── book-user.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── books-medical.svg │ │ │ ├── books.svg │ │ │ ├── boombox.svg │ │ │ ├── boot.svg │ │ │ ├── booth-curtain.svg │ │ │ ├── border-all.svg │ │ │ ├── border-bottom.svg │ │ │ ├── border-center-h.svg │ │ │ ├── border-center-v.svg │ │ │ ├── border-inner.svg │ │ │ ├── border-left.svg │ │ │ ├── border-none.svg │ │ │ ├── border-outer.svg │ │ │ ├── border-right.svg │ │ │ ├── border-style-alt.svg │ │ │ ├── border-style.svg │ │ │ ├── border-top.svg │ │ │ ├── bow-arrow.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── bowling-pins.svg │ │ │ ├── box-alt.svg │ │ │ ├── box-ballot.svg │ │ │ ├── box-check.svg │ │ │ ├── box-fragile.svg │ │ │ ├── box-full.svg │ │ │ ├── box-heart.svg │ │ │ ├── box-open.svg │ │ │ ├── box-tissue.svg │ │ │ ├── box-up.svg │ │ │ ├── box-usd.svg │ │ │ ├── box.svg │ │ │ ├── boxes-alt.svg │ │ │ ├── boxes.svg │ │ │ ├── boxing-glove.svg │ │ │ ├── brackets-curly.svg │ │ │ ├── brackets.svg │ │ │ ├── braille.svg │ │ │ ├── brain.svg │ │ │ ├── bread-loaf.svg │ │ │ ├── bread-slice.svg │ │ │ ├── briefcase-medical.svg │ │ │ ├── briefcase.svg │ │ │ ├── bring-forward.svg │ │ │ ├── bring-front.svg │ │ │ ├── broadcast-tower.svg │ │ │ ├── broom.svg │ │ │ ├── browser.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── bullseye-arrow.svg │ │ │ ├── bullseye-pointer.svg │ │ │ ├── bullseye.svg │ │ │ ├── burger-soda.svg │ │ │ ├── burn.svg │ │ │ ├── burrito.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus-school.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── cabinet-filing.svg │ │ │ ├── cactus.svg │ │ │ ├── calculator-alt.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-edit.svg │ │ │ ├── calendar-exclamation.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-star.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar.svg │ │ │ ├── camcorder.svg │ │ │ ├── camera-alt.svg │ │ │ ├── camera-home.svg │ │ │ ├── camera-movie.svg │ │ │ ├── camera-polaroid.svg │ │ │ ├── camera-retro.svg │ │ │ ├── camera.svg │ │ │ ├── campfire.svg │ │ │ ├── campground.svg │ │ │ ├── candle-holder.svg │ │ │ ├── candy-cane.svg │ │ │ ├── candy-corn.svg │ │ │ ├── cannabis.svg │ │ │ ├── capsules.svg │ │ │ ├── car-alt.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-building.svg │ │ │ ├── car-bump.svg │ │ │ ├── car-bus.svg │ │ │ ├── car-crash.svg │ │ │ ├── car-garage.svg │ │ │ ├── car-mechanic.svg │ │ │ ├── car-side.svg │ │ │ ├── car-tilt.svg │ │ │ ├── car-wash.svg │ │ │ ├── car.svg │ │ │ ├── caravan-alt.svg │ │ │ ├── caravan.svg │ │ │ ├── caret-circle-down.svg │ │ │ ├── caret-circle-left.svg │ │ │ ├── caret-circle-right.svg │ │ │ ├── caret-circle-up.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 │ │ │ ├── cars.svg │ │ │ ├── cart-arrow-down.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cash-register.svg │ │ │ ├── cassette-tape.svg │ │ │ ├── cat-space.svg │ │ │ ├── cat.svg │ │ │ ├── cauldron.svg │ │ │ ├── cctv.svg │ │ │ ├── certificate.svg │ │ │ ├── chair-office.svg │ │ │ ├── chair.svg │ │ │ ├── chalkboard-teacher.svg │ │ │ ├── chalkboard.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line-down.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-network.svg │ │ │ ├── chart-pie-alt.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chart-scatter.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── cheese-swiss.svg │ │ │ ├── cheese.svg │ │ │ ├── cheeseburger.svg │ │ │ ├── chess-bishop-alt.svg │ │ │ ├── chess-bishop.svg │ │ │ ├── chess-board.svg │ │ │ ├── chess-clock-alt.svg │ │ │ ├── chess-clock.svg │ │ │ ├── chess-king-alt.svg │ │ │ ├── chess-king.svg │ │ │ ├── chess-knight-alt.svg │ │ │ ├── chess-knight.svg │ │ │ ├── chess-pawn-alt.svg │ │ │ ├── chess-pawn.svg │ │ │ ├── chess-queen-alt.svg │ │ │ ├── chess-queen.svg │ │ │ ├── chess-rook-alt.svg │ │ │ ├── chess-rook.svg │ │ │ ├── chess.svg │ │ │ ├── chevron-circle-down.svg │ │ │ ├── chevron-circle-left.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── chevron-double-down.svg │ │ │ ├── chevron-double-left.svg │ │ │ ├── chevron-double-right.svg │ │ │ ├── chevron-double-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-square-down.svg │ │ │ ├── chevron-square-left.svg │ │ │ ├── chevron-square-right.svg │ │ │ ├── chevron-square-up.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child.svg │ │ │ ├── chimney.svg │ │ │ ├── church.svg │ │ │ ├── circle-notch.svg │ │ │ ├── circle.svg │ │ │ ├── city.svg │ │ │ ├── clarinet.svg │ │ │ ├── claw-marks.svg │ │ │ ├── clinic-medical.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-list-check.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard-prescription.svg │ │ │ ├── clipboard-user.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-download-alt.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-hail-mixed.svg │ │ │ ├── cloud-hail.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-music.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-rainbow.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-showers.svg │ │ │ ├── cloud-sleet.svg │ │ │ ├── cloud-snow.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-upload-alt.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── clouds-moon.svg │ │ │ ├── clouds-sun.svg │ │ │ ├── clouds.svg │ │ │ ├── club.svg │ │ │ ├── cocktail.svg │ │ │ ├── code-branch.svg │ │ │ ├── code-commit.svg │ │ │ ├── code-merge.svg │ │ │ ├── code.svg │ │ │ ├── coffee-pot.svg │ │ │ ├── coffee-togo.svg │ │ │ ├── coffee.svg │ │ │ ├── coffin-cross.svg │ │ │ ├── coffin.svg │ │ │ ├── cog.svg │ │ │ ├── cogs.svg │ │ │ ├── coin.svg │ │ │ ├── coins.svg │ │ │ ├── columns.svg │ │ │ ├── comet.svg │ │ │ ├── comment-alt-check.svg │ │ │ ├── comment-alt-dollar.svg │ │ │ ├── comment-alt-dots.svg │ │ │ ├── comment-alt-edit.svg │ │ │ ├── comment-alt-exclamation.svg │ │ │ ├── comment-alt-lines.svg │ │ │ ├── comment-alt-medical.svg │ │ │ ├── comment-alt-minus.svg │ │ │ ├── comment-alt-music.svg │ │ │ ├── comment-alt-plus.svg │ │ │ ├── comment-alt-slash.svg │ │ │ ├── comment-alt-smile.svg │ │ │ ├── comment-alt-times.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-check.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-edit.svg │ │ │ ├── comment-exclamation.svg │ │ │ ├── comment-lines.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-minus.svg │ │ │ ├── comment-music.svg │ │ │ ├── comment-plus.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment-smile.svg │ │ │ ├── comment-times.svg │ │ │ ├── comment.svg │ │ │ ├── comments-alt-dollar.svg │ │ │ ├── comments-alt.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass-slash.svg │ │ │ ├── compass.svg │ │ │ ├── compress-alt.svg │ │ │ ├── compress-arrows-alt.svg │ │ │ ├── compress-wide.svg │ │ │ ├── compress.svg │ │ │ ├── computer-classic.svg │ │ │ ├── computer-speaker.svg │ │ │ ├── concierge-bell.svg │ │ │ ├── construction.svg │ │ │ ├── container-storage.svg │ │ │ ├── conveyor-belt-alt.svg │ │ │ ├── conveyor-belt.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── corn.svg │ │ │ ├── couch.svg │ │ │ ├── cow.svg │ │ │ ├── cowbell-more.svg │ │ │ ├── cowbell.svg │ │ │ ├── credit-card-blank.svg │ │ │ ├── credit-card-front.svg │ │ │ ├── credit-card.svg │ │ │ ├── cricket.svg │ │ │ ├── croissant.svg │ │ │ ├── crop-alt.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshairs.svg │ │ │ ├── crow.svg │ │ │ ├── crown.svg │ │ │ ├── crutch.svg │ │ │ ├── crutches.svg │ │ │ ├── cube.svg │ │ │ ├── cubes.svg │ │ │ ├── curling.svg │ │ │ ├── cut.svg │ │ │ ├── dagger.svg │ │ │ ├── database.svg │ │ │ ├── deaf.svg │ │ │ ├── debug.svg │ │ │ ├── deer-rudolph.svg │ │ │ ├── deer.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop-alt.svg │ │ │ ├── desktop.svg │ │ │ ├── dewpoint.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagnoses.svg │ │ │ ├── diamond.svg │ │ │ ├── dice-d10.svg │ │ │ ├── dice-d12.svg │ │ │ ├── dice-d20.svg │ │ │ ├── dice-d4.svg │ │ │ ├── dice-d6.svg │ │ │ ├── dice-d8.svg │ │ │ ├── dice-five.svg │ │ │ ├── dice-four.svg │ │ │ ├── dice-one.svg │ │ │ ├── dice-six.svg │ │ │ ├── dice-three.svg │ │ │ ├── dice-two.svg │ │ │ ├── dice.svg │ │ │ ├── digging.svg │ │ │ ├── digital-tachograph.svg │ │ │ ├── diploma.svg │ │ │ ├── directions.svg │ │ │ ├── disc-drive.svg │ │ │ ├── disease.svg │ │ │ ├── divide.svg │ │ │ ├── dizzy.svg │ │ │ ├── dna.svg │ │ │ ├── do-not-enter.svg │ │ │ ├── dog-leashed.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly-empty.svg │ │ │ ├── dolly-flatbed-alt.svg │ │ │ ├── dolly-flatbed-empty.svg │ │ │ ├── dolly-flatbed.svg │ │ │ ├── dolly.svg │ │ │ ├── donate.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dot-circle.svg │ │ │ ├── dove.svg │ │ │ ├── download.svg │ │ │ ├── drafting-compass.svg │ │ │ ├── dragon.svg │ │ │ ├── draw-circle.svg │ │ │ ├── draw-polygon.svg │ │ │ ├── draw-square.svg │ │ │ ├── dreidel.svg │ │ │ ├── drone-alt.svg │ │ │ ├── drone.svg │ │ │ ├── drum-steelpan.svg │ │ │ ├── drum.svg │ │ │ ├── drumstick-bite.svg │ │ │ ├── drumstick.svg │ │ │ ├── dryer-alt.svg │ │ │ ├── dryer.svg │ │ │ ├── duck.svg │ │ │ ├── dumbbell.svg │ │ │ ├── dumpster-fire.svg │ │ │ ├── dumpster.svg │ │ │ ├── dungeon.svg │ │ │ ├── ear-muffs.svg │ │ │ ├── ear.svg │ │ │ ├── eclipse-alt.svg │ │ │ ├── eclipse.svg │ │ │ ├── edit.svg │ │ │ ├── egg-fried.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── elephant.svg │ │ │ ├── ellipsis-h-alt.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v-alt.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── empty-set.svg │ │ │ ├── engine-warning.svg │ │ │ ├── envelope-open-dollar.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-square.svg │ │ │ ├── envelope.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exchange.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-square.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand-alt.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand-arrows.svg │ │ │ ├── expand-wide.svg │ │ │ ├── expand.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── external-link-square-alt.svg │ │ │ ├── external-link-square.svg │ │ │ ├── external-link.svg │ │ │ ├── eye-dropper.svg │ │ │ ├── eye-evil.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── fan-table.svg │ │ │ ├── fan.svg │ │ │ ├── farm.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── faucet-drip.svg │ │ │ ├── faucet.svg │ │ │ ├── fax.svg │ │ │ ├── feather-alt.svg │ │ │ ├── feather.svg │ │ │ ├── female.svg │ │ │ ├── field-hockey.svg │ │ │ ├── fighter-jet.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-certificate.svg │ │ │ ├── file-chart-line.svg │ │ │ ├── file-chart-pie.svg │ │ │ ├── file-check.svg │ │ │ ├── file-code.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-csv.svg │ │ │ ├── file-download.svg │ │ │ ├── file-edit.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-exclamation.svg │ │ │ ├── file-export.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-minus.svg │ │ │ ├── file-music.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-plus.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-search.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-spreadsheet.svg │ │ │ ├── file-times.svg │ │ │ ├── file-upload.svg │ │ │ ├── file-user.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── files-medical.svg │ │ │ ├── fill-drip.svg │ │ │ ├── fill.svg │ │ │ ├── film-alt.svg │ │ │ ├── film-canister.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire-alt.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire-smoke.svg │ │ │ ├── fire.svg │ │ │ ├── fireplace.svg │ │ │ ├── first-aid.svg │ │ │ ├── fish-cooked.svg │ │ │ ├── fish.svg │ │ │ ├── fist-raised.svg │ │ │ ├── flag-alt.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flame.svg │ │ │ ├── flashlight.svg │ │ │ ├── flask-poison.svg │ │ │ ├── flask-potion.svg │ │ │ ├── flask.svg │ │ │ ├── flower-daffodil.svg │ │ │ ├── flower-tulip.svg │ │ │ ├── flower.svg │ │ │ ├── flushed.svg │ │ │ ├── flute.svg │ │ │ ├── flux-capacitor.svg │ │ │ ├── fog.svg │ │ │ ├── folder-download.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder-times.svg │ │ │ ├── folder-tree.svg │ │ │ ├── folder-upload.svg │ │ │ ├── folder.svg │ │ │ ├── folders.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-case.svg │ │ │ ├── font.svg │ │ │ ├── football-ball.svg │ │ │ ├── football-helmet.svg │ │ │ ├── forklift.svg │ │ │ ├── forward.svg │ │ │ ├── fragile.svg │ │ │ ├── french-fries.svg │ │ │ ├── frog.svg │ │ │ ├── frosty-head.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── function.svg │ │ │ ├── funnel-dollar.svg │ │ │ ├── futbol.svg │ │ │ ├── galaxy.svg │ │ │ ├── game-board-alt.svg │ │ │ ├── game-board.svg │ │ │ ├── game-console-handheld.svg │ │ │ ├── gamepad-alt.svg │ │ │ ├── gamepad.svg │ │ │ ├── garage-car.svg │ │ │ ├── garage-open.svg │ │ │ ├── garage.svg │ │ │ ├── gas-pump-slash.svg │ │ │ ├── gas-pump.svg │ │ │ ├── gavel.svg │ │ │ ├── gem.svg │ │ │ ├── genderless.svg │ │ │ ├── ghost.svg │ │ │ ├── gift-card.svg │ │ │ ├── gift.svg │ │ │ ├── gifts.svg │ │ │ ├── gingerbread-man.svg │ │ │ ├── glass-champagne.svg │ │ │ ├── glass-cheers.svg │ │ │ ├── glass-citrus.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-whiskey-rocks.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── glass.svg │ │ │ ├── glasses-alt.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-africa.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia.svg │ │ │ ├── globe-europe.svg │ │ │ ├── globe-snow.svg │ │ │ ├── globe-stand.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball.svg │ │ │ ├── golf-club.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── gramophone.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── grip-lines.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── guitar-electric.svg │ │ │ ├── guitar.svg │ │ │ ├── guitars.svg │ │ │ ├── h-square.svg │ │ │ ├── h1.svg │ │ │ ├── h2.svg │ │ │ ├── h3.svg │ │ │ ├── h4.svg │ │ │ ├── hamburger.svg │ │ │ ├── hammer-war.svg │ │ │ ├── hammer.svg │ │ │ ├── hamsa.svg │ │ │ ├── hand-heart.svg │ │ │ ├── hand-holding-box.svg │ │ │ ├── hand-holding-heart.svg │ │ │ ├── hand-holding-magic.svg │ │ │ ├── hand-holding-medical.svg │ │ │ ├── hand-holding-seedling.svg │ │ │ ├── hand-holding-usd.svg │ │ │ ├── hand-holding-water.svg │ │ │ ├── hand-holding.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-receiving.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-sparkles.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hands-heart.svg │ │ │ ├── hands-helping.svg │ │ │ ├── hands-usd.svg │ │ │ ├── hands-wash.svg │ │ │ ├── hands.svg │ │ │ ├── handshake-alt-slash.svg │ │ │ ├── handshake-alt.svg │ │ │ ├── handshake-slash.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-chef.svg │ │ │ ├── hat-cowboy-side.svg │ │ │ ├── hat-cowboy.svg │ │ │ ├── hat-santa.svg │ │ │ ├── hat-winter.svg │ │ │ ├── hat-witch.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── hdd.svg │ │ │ ├── head-side-brain.svg │ │ │ ├── head-side-cough-slash.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-headphones.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side-medical.svg │ │ │ ├── head-side-virus.svg │ │ │ ├── head-side.svg │ │ │ ├── head-vr.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart-circle.svg │ │ │ ├── heart-rate.svg │ │ │ ├── heart-square.svg │ │ │ ├── heart.svg │ │ │ ├── heartbeat.svg │ │ │ ├── heat.svg │ │ │ ├── helicopter.svg │ │ │ ├── helmet-battle.svg │ │ │ ├── hexagon.svg │ │ │ ├── highlighter.svg │ │ │ ├── hiking.svg │ │ │ ├── hippo.svg │ │ │ ├── history.svg │ │ │ ├── hockey-mask.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── hockey-sticks.svg │ │ │ ├── holly-berry.svg │ │ │ ├── home-alt.svg │ │ │ ├── home-heart.svg │ │ │ ├── home-lg-alt.svg │ │ │ ├── home-lg.svg │ │ │ ├── home.svg │ │ │ ├── hood-cloak.svg │ │ │ ├── horizontal-rule.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse-saddle.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-alt.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital-user.svg │ │ │ ├── hospital.svg │ │ │ ├── hospitals.svg │ │ │ ├── hot-tub.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-half.svg │ │ │ ├── hourglass-start.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-damage.svg │ │ │ ├── house-day.svg │ │ │ ├── house-flood.svg │ │ │ ├── house-leave.svg │ │ │ ├── house-night.svg │ │ │ ├── house-return.svg │ │ │ ├── house-signal.svg │ │ │ ├── house-user.svg │ │ │ ├── house.svg │ │ │ ├── hryvnia.svg │ │ │ ├── humidity.svg │ │ │ ├── hurricane.svg │ │ │ ├── i-cursor.svg │ │ │ ├── ice-cream.svg │ │ │ ├── ice-skate.svg │ │ │ ├── icicles.svg │ │ │ ├── icons-alt.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-alt.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image-polaroid.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox-in.svg │ │ │ ├── inbox-out.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── industry-alt.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle.svg │ │ │ ├── info-square.svg │ │ │ ├── info.svg │ │ │ ├── inhaler.svg │ │ │ ├── integral.svg │ │ │ ├── intersection.svg │ │ │ ├── inventory.svg │ │ │ ├── island-tropical.svg │ │ │ ├── italic.svg │ │ │ ├── jack-o-lantern.svg │ │ │ ├── jedi.svg │ │ │ ├── joint.svg │ │ │ ├── journal-whills.svg │ │ │ ├── joystick.svg │ │ │ ├── jug.svg │ │ │ ├── kaaba.svg │ │ │ ├── kazoo.svg │ │ │ ├── kerning.svg │ │ │ ├── key-skeleton.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── keynote.svg │ │ │ ├── khanda.svg │ │ │ ├── kidneys.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── kite.svg │ │ │ ├── kiwi-bird.svg │ │ │ ├── knife-kitchen.svg │ │ │ ├── lambda.svg │ │ │ ├── lamp-desk.svg │ │ │ ├── lamp-floor.svg │ │ │ ├── lamp.svg │ │ │ ├── landmark-alt.svg │ │ │ ├── landmark.svg │ │ │ ├── language.svg │ │ │ ├── laptop-code.svg │ │ │ ├── laptop-house.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── lasso.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── layer-group.svg │ │ │ ├── layer-minus.svg │ │ │ ├── layer-plus.svg │ │ │ ├── leaf-heart.svg │ │ │ ├── leaf-maple.svg │ │ │ ├── leaf-oak.svg │ │ │ ├── leaf.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── level-down-alt.svg │ │ │ ├── level-down.svg │ │ │ ├── level-up-alt.svg │ │ │ ├── level-up.svg │ │ │ ├── life-ring.svg │ │ │ ├── light-ceiling.svg │ │ │ ├── light-switch-off.svg │ │ │ ├── light-switch-on.svg │ │ │ ├── light-switch.svg │ │ │ ├── lightbulb-dollar.svg │ │ │ ├── lightbulb-exclamation.svg │ │ │ ├── lightbulb-on.svg │ │ │ ├── lightbulb-slash.svg │ │ │ ├── lightbulb.svg │ │ │ ├── lights-holiday.svg │ │ │ ├── line-columns.svg │ │ │ ├── line-height.svg │ │ │ ├── link.svg │ │ │ ├── lips.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-alt.svg │ │ │ ├── list-music.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── location-circle.svg │ │ │ ├── location-slash.svg │ │ │ ├── location.svg │ │ │ ├── lock-alt.svg │ │ │ ├── lock-open-alt.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── long-arrow-down.svg │ │ │ ├── long-arrow-left.svg │ │ │ ├── long-arrow-right.svg │ │ │ ├── long-arrow-up.svg │ │ │ ├── loveseat.svg │ │ │ ├── low-vision.svg │ │ │ ├── luchador.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── lungs-virus.svg │ │ │ ├── lungs.svg │ │ │ ├── mace.svg │ │ │ ├── magic.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-bulk.svg │ │ │ ├── mailbox.svg │ │ │ ├── male.svg │ │ │ ├── mandolin.svg │ │ │ ├── map-marked-alt.svg │ │ │ ├── map-marked.svg │ │ │ ├── map-marker-alt-slash.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker-check.svg │ │ │ ├── map-marker-edit.svg │ │ │ ├── map-marker-exclamation.svg │ │ │ ├── map-marker-minus.svg │ │ │ ├── map-marker-plus.svg │ │ │ ├── map-marker-question.svg │ │ │ ├── map-marker-slash.svg │ │ │ ├── map-marker-smile.svg │ │ │ ├── map-marker-times.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin.svg │ │ │ ├── map-signs.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-h.svg │ │ │ ├── mars-stroke-v.svg │ │ │ ├── mars-stroke.svg │ │ │ ├── mars.svg │ │ │ ├── mask.svg │ │ │ ├── meat.svg │ │ │ ├── medal.svg │ │ │ ├── medkit.svg │ │ │ ├── megaphone.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-alt-slash.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone-stand.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── microwave.svg │ │ │ ├── mind-share.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-hexagon.svg │ │ │ ├── minus-octagon.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mistletoe.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-alt.svg │ │ │ ├── mobile-android-alt.svg │ │ │ ├── mobile-android.svg │ │ │ ├── mobile.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── money-bill-wave-alt.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-check-alt.svg │ │ │ ├── money-check-edit-alt.svg │ │ │ ├── money-check-edit.svg │ │ │ ├── money-check.svg │ │ │ ├── monitor-heart-rate.svg │ │ │ ├── monkey.svg │ │ │ ├── monument.svg │ │ │ ├── moon-cloud.svg │ │ │ ├── moon-stars.svg │ │ │ ├── moon.svg │ │ │ ├── mortar-pestle.svg │ │ │ ├── mosque.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mountain.svg │ │ │ ├── mountains.svg │ │ │ ├── mouse-alt.svg │ │ │ ├── mouse-pointer.svg │ │ │ ├── mouse.svg │ │ │ ├── mp3-player.svg │ │ │ ├── mug-hot.svg │ │ │ ├── mug-marshmallows.svg │ │ │ ├── mug-tea.svg │ │ │ ├── mug.svg │ │ │ ├── music-alt-slash.svg │ │ │ ├── music-alt.svg │ │ │ ├── music-slash.svg │ │ │ ├── music.svg │ │ │ ├── narwhal.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── notes-medical.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── octagon.svg │ │ │ ├── oil-can.svg │ │ │ ├── oil-temp.svg │ │ │ ├── om.svg │ │ │ ├── omega.svg │ │ │ ├── ornament.svg │ │ │ ├── otter.svg │ │ │ ├── outdent.svg │ │ │ ├── outlet.svg │ │ │ ├── oven.svg │ │ │ ├── overline.svg │ │ │ ├── page-break.svg │ │ │ ├── pager.svg │ │ │ ├── paint-brush-alt.svg │ │ │ ├── paint-brush.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── pallet-alt.svg │ │ │ ├── pallet.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph-rtl.svg │ │ │ ├── paragraph.svg │ │ │ ├── parking-circle-slash.svg │ │ │ ├── parking-circle.svg │ │ │ ├── parking-slash.svg │ │ │ ├── parking.svg │ │ │ ├── passport.svg │ │ │ ├── pastafarianism.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paw-alt.svg │ │ │ ├── paw-claws.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pegasus.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-paintbrush.svg │ │ │ ├── pencil-ruler.svg │ │ │ ├── pencil.svg │ │ │ ├── pennant.svg │ │ │ ├── people-arrows.svg │ │ │ ├── people-carry.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── percentage.svg │ │ │ ├── person-booth.svg │ │ │ ├── person-carry.svg │ │ │ ├── person-dolly-empty.svg │ │ │ ├── person-dolly.svg │ │ │ ├── person-sign.svg │ │ │ ├── phone-alt.svg │ │ │ ├── phone-laptop.svg │ │ │ ├── phone-office.svg │ │ │ ├── phone-plus.svg │ │ │ ├── phone-rotary.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-square-alt.svg │ │ │ ├── phone-square.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-video.svg │ │ │ ├── pi.svg │ │ │ ├── piano-keyboard.svg │ │ │ ├── piano.svg │ │ │ ├── pie.svg │ │ │ ├── pig.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pills.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── pizza.svg │ │ │ ├── place-of-worship.svg │ │ │ ├── plane-alt.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane-slash.svg │ │ │ ├── plane.svg │ │ │ ├── planet-moon.svg │ │ │ ├── planet-ringed.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-hexagon.svg │ │ │ ├── plus-octagon.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── podium-star.svg │ │ │ ├── podium.svg │ │ │ ├── police-box.svg │ │ │ ├── poll-h.svg │ │ │ ├── poll-people.svg │ │ │ ├── poll.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── popcorn.svg │ │ │ ├── portal-enter.svg │ │ │ ├── portal-exit.svg │ │ │ ├── portrait.svg │ │ │ ├── pound-sign.svg │ │ │ ├── power-off.svg │ │ │ ├── pray.svg │ │ │ ├── praying-hands.svg │ │ │ ├── prescription-bottle-alt.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── presentation.svg │ │ │ ├── print-search.svg │ │ │ ├── print-slash.svg │ │ │ ├── print.svg │ │ │ ├── procedures.svg │ │ │ ├── project-diagram.svg │ │ │ ├── projector.svg │ │ │ ├── pump-medical.svg │ │ │ ├── pump-soap.svg │ │ │ ├── pumpkin.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-circle.svg │ │ │ ├── question-square.svg │ │ │ ├── question.svg │ │ │ ├── quidditch.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── quran.svg │ │ │ ├── rabbit-fast.svg │ │ │ ├── rabbit.svg │ │ │ ├── racquet.svg │ │ │ ├── radar.svg │ │ │ ├── radiation-alt.svg │ │ │ ├── radiation.svg │ │ │ ├── radio-alt.svg │ │ │ ├── radio.svg │ │ │ ├── rainbow.svg │ │ │ ├── raindrops.svg │ │ │ ├── ram.svg │ │ │ ├── ramp-loading.svg │ │ │ ├── random.svg │ │ │ ├── raygun.svg │ │ │ ├── receipt.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── rectangle-landscape.svg │ │ │ ├── rectangle-portrait.svg │ │ │ ├── rectangle-wide.svg │ │ │ ├── recycle.svg │ │ │ ├── redo-alt.svg │ │ │ ├── redo.svg │ │ │ ├── refrigerator.svg │ │ │ ├── registered.svg │ │ │ ├── remove-format.svg │ │ │ ├── repeat-1-alt.svg │ │ │ ├── repeat-1.svg │ │ │ ├── repeat-alt.svg │ │ │ ├── repeat.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── republican.svg │ │ │ ├── restroom.svg │ │ │ ├── retweet-alt.svg │ │ │ ├── retweet.svg │ │ │ ├── ribbon.svg │ │ │ ├── ring.svg │ │ │ ├── rings-wedding.svg │ │ │ ├── road.svg │ │ │ ├── robot.svg │ │ │ ├── rocket-launch.svg │ │ │ ├── rocket.svg │ │ │ ├── route-highway.svg │ │ │ ├── route-interstate.svg │ │ │ ├── route.svg │ │ │ ├── router.svg │ │ │ ├── rss-square.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-triangle.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── running.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── rv.svg │ │ │ ├── sack-dollar.svg │ │ │ ├── sack.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── salad.svg │ │ │ ├── sandwich.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── sausage.svg │ │ │ ├── save.svg │ │ │ ├── sax-hot.svg │ │ │ ├── saxophone.svg │ │ │ ├── scalpel-path.svg │ │ │ ├── scalpel.svg │ │ │ ├── scanner-image.svg │ │ │ ├── scanner-keyboard.svg │ │ │ ├── scanner-touchscreen.svg │ │ │ ├── scanner.svg │ │ │ ├── scarecrow.svg │ │ │ ├── scarf.svg │ │ │ ├── school.svg │ │ │ ├── screwdriver.svg │ │ │ ├── scroll-old.svg │ │ │ ├── scroll.svg │ │ │ ├── scrubber.svg │ │ │ ├── scythe.svg │ │ │ ├── sd-card.svg │ │ │ ├── search-dollar.svg │ │ │ ├── search-location.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── seedling.svg │ │ │ ├── send-back.svg │ │ │ ├── send-backward.svg │ │ │ ├── sensor-alert.svg │ │ │ ├── sensor-fire.svg │ │ │ ├── sensor-on.svg │ │ │ ├── sensor-smoke.svg │ │ │ ├── sensor.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-all.svg │ │ │ ├── share-alt-square.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-square.svg │ │ │ ├── share.svg │ │ │ ├── sheep.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-alt.svg │ │ │ ├── shield-check.svg │ │ │ ├── shield-cross.svg │ │ │ ├── shield-virus.svg │ │ │ ├── shield.svg │ │ │ ├── ship.svg │ │ │ ├── shipping-fast.svg │ │ │ ├── shipping-timed.svg │ │ │ ├── shish-kebab.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shovel-snow.svg │ │ │ ├── shovel.svg │ │ │ ├── shower.svg │ │ │ ├── shredder.svg │ │ │ ├── shuttle-van.svg │ │ │ ├── shuttlecock.svg │ │ │ ├── sickle.svg │ │ │ ├── sigma.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-in.svg │ │ │ ├── sign-language.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign-out.svg │ │ │ ├── sign.svg │ │ │ ├── signal-1.svg │ │ │ ├── signal-2.svg │ │ │ ├── signal-3.svg │ │ │ ├── signal-4.svg │ │ │ ├── signal-alt-1.svg │ │ │ ├── signal-alt-2.svg │ │ │ ├── signal-alt-3.svg │ │ │ ├── signal-alt-slash.svg │ │ │ ├── signal-alt.svg │ │ │ ├── signal-slash.svg │ │ │ ├── signal-stream.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── sim-card.svg │ │ │ ├── sink.svg │ │ │ ├── siren-on.svg │ │ │ ├── siren.svg │ │ │ ├── sitemap.svg │ │ │ ├── skating.svg │ │ │ ├── skeleton.svg │ │ │ ├── ski-jump.svg │ │ │ ├── ski-lift.svg │ │ │ ├── skiing-nordic.svg │ │ │ ├── skiing.svg │ │ │ ├── skull-cow.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sledding.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders-h-square.svg │ │ │ ├── sliders-h.svg │ │ │ ├── sliders-v-square.svg │ │ │ ├── sliders-v.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-plus.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── smog.svg │ │ │ ├── smoke.svg │ │ │ ├── smoking-ban.svg │ │ │ ├── smoking.svg │ │ │ ├── sms.svg │ │ │ ├── snake.svg │ │ │ ├── snooze.svg │ │ │ ├── snow-blowing.svg │ │ │ ├── snowboarding.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowflakes.svg │ │ │ ├── snowman.svg │ │ │ ├── snowmobile.svg │ │ │ ├── snowplow.svg │ │ │ ├── soap.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── solar-system.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-alt.svg │ │ │ ├── sort-amount-down-alt.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up-alt.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort-circle-down.svg │ │ │ ├── sort-circle-up.svg │ │ │ ├── sort-circle.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-shapes-down-alt.svg │ │ │ ├── sort-shapes-down.svg │ │ │ ├── sort-shapes-up-alt.svg │ │ │ ├── sort-shapes-up.svg │ │ │ ├── sort-size-down-alt.svg │ │ │ ├── sort-size-down.svg │ │ │ ├── sort-size-up-alt.svg │ │ │ ├── sort-size-up.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── soup.svg │ │ │ ├── spa.svg │ │ │ ├── space-shuttle.svg │ │ │ ├── space-station-moon-alt.svg │ │ │ ├── space-station-moon.svg │ │ │ ├── spade.svg │ │ │ ├── sparkles.svg │ │ │ ├── speaker.svg │ │ │ ├── speakers.svg │ │ │ ├── spell-check.svg │ │ │ ├── spider-black-widow.svg │ │ │ ├── spider-web.svg │ │ │ ├── spider.svg │ │ │ ├── spinner-third.svg │ │ │ ├── spinner.svg │ │ │ ├── splotch.svg │ │ │ ├── spray-can.svg │ │ │ ├── sprinkler.svg │ │ │ ├── square-full.svg │ │ │ ├── square-root-alt.svg │ │ │ ├── square-root.svg │ │ │ ├── square.svg │ │ │ ├── squirrel.svg │ │ │ ├── staff.svg │ │ │ ├── stamp.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-christmas.svg │ │ │ ├── star-exclamation.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star-shooting.svg │ │ │ ├── star.svg │ │ │ ├── starfighter-alt.svg │ │ │ ├── starfighter.svg │ │ │ ├── stars.svg │ │ │ ├── starship-freighter.svg │ │ │ ├── starship.svg │ │ │ ├── steak.svg │ │ │ ├── steering-wheel.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stocking.svg │ │ │ ├── stomach.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-20.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt-slash.svg │ │ │ ├── store-alt.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── stream.svg │ │ │ ├── street-view.svg │ │ │ ├── stretcher.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun-cloud.svg │ │ │ ├── sun-dust.svg │ │ │ ├── sun-haze.svg │ │ │ ├── sun.svg │ │ │ ├── sunglasses.svg │ │ │ ├── sunrise.svg │ │ │ ├── sunset.svg │ │ │ ├── superscript.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swimmer.svg │ │ │ ├── swimming-pool.svg │ │ │ ├── sword-laser-alt.svg │ │ │ ├── sword-laser.svg │ │ │ ├── sword.svg │ │ │ ├── swords-laser.svg │ │ │ ├── swords.svg │ │ │ ├── synagogue.svg │ │ │ ├── sync-alt.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet-alt.svg │ │ │ ├── tablet-android-alt.svg │ │ │ ├── tablet-android.svg │ │ │ ├── tablet-rugged.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachometer-alt-average.svg │ │ │ ├── tachometer-alt-fast.svg │ │ │ ├── tachometer-alt-fastest.svg │ │ │ ├── tachometer-alt-slow.svg │ │ │ ├── tachometer-alt-slowest.svg │ │ │ ├── tachometer-alt.svg │ │ │ ├── tachometer-average.svg │ │ │ ├── tachometer-fast.svg │ │ │ ├── tachometer-fastest.svg │ │ │ ├── tachometer-slow.svg │ │ │ ├── tachometer-slowest.svg │ │ │ ├── tachometer.svg │ │ │ ├── taco.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tally.svg │ │ │ ├── tanakh.svg │ │ │ ├── tape.svg │ │ │ ├── tasks-alt.svg │ │ │ ├── tasks.svg │ │ │ ├── taxi.svg │ │ │ ├── teeth-open.svg │ │ │ ├── teeth.svg │ │ │ ├── telescope.svg │ │ │ ├── temperature-down.svg │ │ │ ├── temperature-frigid.svg │ │ │ ├── temperature-high.svg │ │ │ ├── temperature-hot.svg │ │ │ ├── temperature-low.svg │ │ │ ├── temperature-up.svg │ │ │ ├── tenge.svg │ │ │ ├── tennis-ball.svg │ │ │ ├── terminal.svg │ │ │ ├── text-height.svg │ │ │ ├── text-size.svg │ │ │ ├── text-width.svg │ │ │ ├── text.svg │ │ │ ├── th-large.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── theater-masks.svg │ │ │ ├── thermometer-empty.svg │ │ │ ├── thermometer-full.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-quarter.svg │ │ │ ├── thermometer-three-quarters.svg │ │ │ ├── thermometer.svg │ │ │ ├── theta.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack.svg │ │ │ ├── thunderstorm-moon.svg │ │ │ ├── thunderstorm-sun.svg │ │ │ ├── thunderstorm.svg │ │ │ ├── ticket-alt.svg │ │ │ ├── ticket.svg │ │ │ ├── tilde.svg │ │ │ ├── times-circle.svg │ │ │ ├── times-hexagon.svg │ │ │ ├── times-octagon.svg │ │ │ ├── times-square.svg │ │ │ ├── times.svg │ │ │ ├── tint-slash.svg │ │ │ ├── tint.svg │ │ │ ├── tire-flat.svg │ │ │ ├── tire-pressure-warning.svg │ │ │ ├── tire-rugged.svg │ │ │ ├── tire.svg │ │ │ ├── tired.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper-alt.svg │ │ │ ├── toilet-paper-slash.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet.svg │ │ │ ├── tombstone-alt.svg │ │ │ ├── tombstone.svg │ │ │ ├── toolbox.svg │ │ │ ├── tools.svg │ │ │ ├── tooth.svg │ │ │ ├── toothbrush.svg │ │ │ ├── torah.svg │ │ │ ├── torii-gate.svg │ │ │ ├── tornado.svg │ │ │ ├── tractor.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-cone.svg │ │ │ ├── traffic-light-go.svg │ │ │ ├── traffic-light-slow.svg │ │ │ ├── traffic-light-stop.svg │ │ │ ├── traffic-light.svg │ │ │ ├── trailer.svg │ │ │ ├── train.svg │ │ │ ├── tram.svg │ │ │ ├── transgender-alt.svg │ │ │ ├── transgender.svg │ │ │ ├── transporter-1.svg │ │ │ ├── transporter-2.svg │ │ │ ├── transporter-3.svg │ │ │ ├── transporter-empty.svg │ │ │ ├── transporter.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-restore-alt.svg │ │ │ ├── trash-restore.svg │ │ │ ├── trash-undo-alt.svg │ │ │ ├── trash-undo.svg │ │ │ ├── trash.svg │ │ │ ├── treasure-chest.svg │ │ │ ├── tree-alt.svg │ │ │ ├── tree-christmas.svg │ │ │ ├── tree-decorated.svg │ │ │ ├── tree-large.svg │ │ │ ├── tree-palm.svg │ │ │ ├── tree.svg │ │ │ ├── trees.svg │ │ │ ├── triangle-music.svg │ │ │ ├── triangle.svg │ │ │ ├── trophy-alt.svg │ │ │ ├── trophy.svg │ │ │ ├── truck-container.svg │ │ │ ├── truck-couch.svg │ │ │ ├── truck-loading.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck-plow.svg │ │ │ ├── truck-ramp.svg │ │ │ ├── truck.svg │ │ │ ├── trumpet.svg │ │ │ ├── tshirt.svg │ │ │ ├── tty.svg │ │ │ ├── turkey.svg │ │ │ ├── turntable.svg │ │ │ ├── turtle.svg │ │ │ ├── tv-alt.svg │ │ │ ├── tv-music.svg │ │ │ ├── tv-retro.svg │ │ │ ├── tv.svg │ │ │ ├── typewriter.svg │ │ │ ├── ufo-beam.svg │ │ │ ├── ufo.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── undo-alt.svg │ │ │ ├── undo.svg │ │ │ ├── unicorn.svg │ │ │ ├── union.svg │ │ │ ├── universal-access.svg │ │ │ ├── university.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock-alt.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── usb-drive.svg │ │ │ ├── usd-circle.svg │ │ │ ├── usd-square.svg │ │ │ ├── user-alien.svg │ │ │ ├── user-alt-slash.svg │ │ │ ├── user-alt.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-chart.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-cowboy.svg │ │ │ ├── user-crown.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-friends.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-hard-hat.svg │ │ │ ├── user-headset.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-md-chat.svg │ │ │ ├── user-md.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-music.svg │ │ │ ├── user-ninja.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-robot.svg │ │ │ ├── user-secret.svg │ │ │ ├── user-shield.svg │ │ │ ├── user-slash.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tie.svg │ │ │ ├── user-times.svg │ │ │ ├── user-unlock.svg │ │ │ ├── user-visor.svg │ │ │ ├── user.svg │ │ │ ├── users-class.svg │ │ │ ├── users-cog.svg │ │ │ ├── users-crown.svg │ │ │ ├── users-medical.svg │ │ │ ├── users-slash.svg │ │ │ ├── users.svg │ │ │ ├── utensil-fork.svg │ │ │ ├── utensil-knife.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── utensils-alt.svg │ │ │ ├── utensils.svg │ │ │ ├── vacuum-robot.svg │ │ │ ├── vacuum.svg │ │ │ ├── value-absolute.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus-double.svg │ │ │ ├── venus-mars.svg │ │ │ ├── venus.svg │ │ │ ├── vhs.svg │ │ │ ├── vial.svg │ │ │ ├── vials.svg │ │ │ ├── video-plus.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── vihara.svg │ │ │ ├── violin.svg │ │ │ ├── virus-slash.svg │ │ │ ├── virus.svg │ │ │ ├── viruses.svg │ │ │ ├── voicemail.svg │ │ │ ├── volcano.svg │ │ │ ├── volleyball-ball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-slash.svg │ │ │ ├── volume-up.svg │ │ │ ├── volume.svg │ │ │ ├── vote-nay.svg │ │ │ ├── vote-yea.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── wagon-covered.svg │ │ │ ├── walker.svg │ │ │ ├── walkie-talkie.svg │ │ │ ├── walking.svg │ │ │ ├── wallet.svg │ │ │ ├── wand-magic.svg │ │ │ ├── wand.svg │ │ │ ├── warehouse-alt.svg │ │ │ ├── warehouse.svg │ │ │ ├── washer.svg │ │ │ ├── watch-calculator.svg │ │ │ ├── watch-fitness.svg │ │ │ ├── watch.svg │ │ │ ├── water-lower.svg │ │ │ ├── water-rise.svg │ │ │ ├── water.svg │ │ │ ├── wave-sine.svg │ │ │ ├── wave-square.svg │ │ │ ├── wave-triangle.svg │ │ │ ├── waveform-path.svg │ │ │ ├── waveform.svg │ │ │ ├── webcam-slash.svg │ │ │ ├── webcam.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight.svg │ │ │ ├── whale.svg │ │ │ ├── wheat.svg │ │ │ ├── wheelchair.svg │ │ │ ├── whistle.svg │ │ │ ├── wifi-1.svg │ │ │ ├── wifi-2.svg │ │ │ ├── wifi-slash.svg │ │ │ ├── wifi.svg │ │ │ ├── wind-turbine.svg │ │ │ ├── wind-warning.svg │ │ │ ├── wind.svg │ │ │ ├── window-alt.svg │ │ │ ├── window-close.svg │ │ │ ├── window-frame-open.svg │ │ │ ├── window-frame.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── window.svg │ │ │ ├── windsock.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-alt.svg │ │ │ ├── wine-glass.svg │ │ │ ├── won-sign.svg │ │ │ ├── wreath.svg │ │ │ ├── wrench.svg │ │ │ ├── x-ray.svg │ │ │ ├── yen-sign.svg │ │ │ └── yin-yang.svg │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-duotone-900.eot │ │ ├── fa-duotone-900.svg │ │ ├── fa-duotone-900.ttf │ │ ├── fa-duotone-900.woff │ │ ├── fa-duotone-900.woff2 │ │ ├── fa-light-300.eot │ │ ├── fa-light-300.svg │ │ ├── fa-light-300.ttf │ │ ├── fa-light-300.woff │ │ ├── fa-light-300.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── mstile-150x150.png ├── opensearch.xml ├── revert-logo.png ├── revert-logo.svg ├── robots.txt ├── safari-pinned-tab.svg ├── site.webmanifest ├── sitemap.xml └── swagger │ └── v1 │ └── swagger.yaml ├── scripts ├── documentation.sh ├── dump-data.sh └── restore-sql.sh ├── spec ├── controllers │ └── api │ │ └── v1 │ │ ├── families_controller_spec.rb │ │ ├── genus_controller_spec.rb │ │ ├── plants_controller_spec.rb │ │ ├── species_controller_spec.rb │ │ └── zones_controller_spec.rb ├── factories │ ├── division.rb │ ├── division_class.rb │ ├── division_order.rb │ ├── family.rb │ ├── genus.rb │ ├── kingdom.rb │ ├── plant.rb │ ├── record_correction.rb │ ├── species.rb │ ├── subkingdom.rb │ └── user.rb ├── features │ ├── account_spec.rb │ ├── home_spec.rb │ └── sign_in_spec.rb ├── helpers │ └── users │ │ └── omniauth_callbacks_helper_spec.rb ├── lib │ ├── ingester │ │ └── converter │ │ │ ├── common_name_spec.rb │ │ │ ├── flag_spec.rb │ │ │ ├── genus_spec.rb │ │ │ ├── image_spec.rb │ │ │ ├── measurement_spec.rb │ │ │ ├── source_spec.rb │ │ │ └── text_spec.rb │ ├── ingester_spec.rb │ └── utils │ │ └── scientific_name_spec.rb ├── models │ ├── common_name_spec.rb │ ├── species_distribution_spec.rb │ ├── species_spec.rb │ ├── species_trend_spec.rb │ ├── synonym_spec.rb │ ├── user_query_spec.rb │ └── zone_spec.rb ├── rails_helper.rb ├── requests │ ├── api │ │ └── v1 │ │ │ ├── 10_kingdoms_spec.rb │ │ │ ├── 11_subkingdoms_spec.rb │ │ │ ├── 12_division_spec.rb │ │ │ ├── 13_division_classes_spec.rb │ │ │ ├── 14_division_orders_spec.rb │ │ │ ├── 15_family_spec.rb │ │ │ ├── 16_genus_spec.rb │ │ │ ├── 2_plants_spec.rb │ │ │ ├── 3_species_spec.rb │ │ │ ├── 80_zones_spec.rb │ │ │ ├── 900_auth_spec.rb │ │ │ └── 9_corrections_spec.rb │ ├── common_names_request_spec.rb │ ├── species_distributions_request_spec.rb │ ├── user_queries_request_spec.rb │ ├── users │ │ └── omniauth_callbacks_spec.rb │ └── zones_request_spec.rb ├── spec_helper.rb ├── support │ ├── api_helper.rb │ ├── json_api_helper.rb │ ├── json_schema_matcher.rb │ ├── share_db_connexion.rb │ ├── shared_collection_examples.rb │ └── shared_examples │ │ └── collection_endpoints.rb ├── swagger_helper.rb └── workers │ ├── crawlers │ └── powo_worker_spec.rb │ ├── migrators │ └── synonyms_worker_spec.rb │ └── sitemap_worker_spec.rb ├── storage └── .keep ├── vendor └── .keep └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/.env -------------------------------------------------------------------------------- /.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/.env.local.example -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/.env.test -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/gallium 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.4.6 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /COLUMNS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/COLUMNS.md -------------------------------------------------------------------------------- /CORRECTION_SPECS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/CORRECTION_SPECS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- 1 | web: bin/rails server -p 3000 2 | js: yarn build --watch 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/logo-black.svg -------------------------------------------------------------------------------- /app/assets/images/logo-diff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/logo-diff.svg -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/logo.svg -------------------------------------------------------------------------------- /app/assets/images/logop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/logop.png -------------------------------------------------------------------------------- /app/assets/images/medias/ipni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/medias/ipni.png -------------------------------------------------------------------------------- /app/assets/images/medias/kew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/medias/kew.svg -------------------------------------------------------------------------------- /app/assets/images/medias/missouri.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/medias/missouri.gif -------------------------------------------------------------------------------- /app/assets/images/medias/muhitnat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/medias/muhitnat.png -------------------------------------------------------------------------------- /app/assets/images/medias/tropicos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/medias/tropicos.gif -------------------------------------------------------------------------------- /app/assets/images/medias/usda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/medias/usda.svg -------------------------------------------------------------------------------- /app/assets/images/medias/wikimedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/medias/wikimedia.png -------------------------------------------------------------------------------- /app/assets/images/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/phoenix.png -------------------------------------------------------------------------------- /app/assets/images/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/plug.svg -------------------------------------------------------------------------------- /app/assets/images/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/static/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/static/robots.txt -------------------------------------------------------------------------------- /app/assets/images/test-med.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/images/test-med.svg -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/javascripts/application.scss -------------------------------------------------------------------------------- /app/assets/javascripts/home/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/javascripts/home/admin.js -------------------------------------------------------------------------------- /app/assets/javascripts/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/javascripts/home/home.js -------------------------------------------------------------------------------- /app/assets/javascripts/lazy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/javascripts/lazy.js -------------------------------------------------------------------------------- /app/assets/javascripts/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/javascripts/manage.js -------------------------------------------------------------------------------- /app/assets/javascripts/manage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/javascripts/manage.scss -------------------------------------------------------------------------------- /app/assets/javascripts/manage/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/javascripts/manage/search.js -------------------------------------------------------------------------------- /app/assets/javascripts/manage/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/assets/javascripts/manage/stats.js -------------------------------------------------------------------------------- /app/assets/stylesheets/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/api/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/controllers/api/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/profile_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/controllers/profile_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/plants_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/helpers/plants_helper.rb -------------------------------------------------------------------------------- /app/helpers/record_correction_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/helpers/record_correction_helper.rb -------------------------------------------------------------------------------- /app/helpers/users/omniauth_callbacks_helper.rb: -------------------------------------------------------------------------------- 1 | module Users::OmniauthCallbacksHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/interactors/submit_correction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/interactors/submit_correction.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/common_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/common_name.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/filterable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/concerns/filterable.rb -------------------------------------------------------------------------------- /app/models/concerns/rangeable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/concerns/rangeable.rb -------------------------------------------------------------------------------- /app/models/concerns/scopes/families.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/concerns/scopes/families.rb -------------------------------------------------------------------------------- /app/models/concerns/scopes/genus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/concerns/scopes/genus.rb -------------------------------------------------------------------------------- /app/models/concerns/scopes/plants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/concerns/scopes/plants.rb -------------------------------------------------------------------------------- /app/models/concerns/scopes/species.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/concerns/scopes/species.rb -------------------------------------------------------------------------------- /app/models/concerns/scopes/zones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/concerns/scopes/zones.rb -------------------------------------------------------------------------------- /app/models/concerns/search/species.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/concerns/search/species.rb -------------------------------------------------------------------------------- /app/models/concerns/sortable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/concerns/sortable.rb -------------------------------------------------------------------------------- /app/models/division.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/division.rb -------------------------------------------------------------------------------- /app/models/division_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/division_class.rb -------------------------------------------------------------------------------- /app/models/division_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/division_order.rb -------------------------------------------------------------------------------- /app/models/family.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/family.rb -------------------------------------------------------------------------------- /app/models/foreign_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/foreign_source.rb -------------------------------------------------------------------------------- /app/models/foreign_sources_plant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/foreign_sources_plant.rb -------------------------------------------------------------------------------- /app/models/genus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/genus.rb -------------------------------------------------------------------------------- /app/models/kingdom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/kingdom.rb -------------------------------------------------------------------------------- /app/models/major_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/major_group.rb -------------------------------------------------------------------------------- /app/models/plant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/plant.rb -------------------------------------------------------------------------------- /app/models/record_correction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/record_correction.rb -------------------------------------------------------------------------------- /app/models/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/session.rb -------------------------------------------------------------------------------- /app/models/species.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/species.rb -------------------------------------------------------------------------------- /app/models/species_distribution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/species_distribution.rb -------------------------------------------------------------------------------- /app/models/species_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/species_image.rb -------------------------------------------------------------------------------- /app/models/species_proposal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/species_proposal.rb -------------------------------------------------------------------------------- /app/models/species_trend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/species_trend.rb -------------------------------------------------------------------------------- /app/models/subkingdom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/subkingdom.rb -------------------------------------------------------------------------------- /app/models/synonym.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/synonym.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/user_query.rb -------------------------------------------------------------------------------- /app/models/zone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/models/zone.rb -------------------------------------------------------------------------------- /app/serializers/base_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/serializers/base_serializer.rb -------------------------------------------------------------------------------- /app/serializers/division_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/serializers/division_serializer.rb -------------------------------------------------------------------------------- /app/serializers/family_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/serializers/family_serializer.rb -------------------------------------------------------------------------------- /app/serializers/genus_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/serializers/genus_serializer.rb -------------------------------------------------------------------------------- /app/serializers/kingdom_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/serializers/kingdom_serializer.rb -------------------------------------------------------------------------------- /app/serializers/plant_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/serializers/plant_serializer.rb -------------------------------------------------------------------------------- /app/serializers/species_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/serializers/species_serializer.rb -------------------------------------------------------------------------------- /app/serializers/synonym_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/serializers/synonym_serializer.rb -------------------------------------------------------------------------------- /app/serializers/zone_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/serializers/zone_serializer.rb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/explore/data/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/explore/data/index.html.erb -------------------------------------------------------------------------------- /app/views/explore/genus/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/explore/genus/index.html.erb -------------------------------------------------------------------------------- /app/views/explore/genus/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/explore/genus/show.html.erb -------------------------------------------------------------------------------- /app/views/explore/species/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/explore/species/show.html.erb -------------------------------------------------------------------------------- /app/views/home/about.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/home/about.html.erb -------------------------------------------------------------------------------- /app/views/home/donate.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/home/donate.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/home/licence.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/home/licence.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/layouts/_footer.erb -------------------------------------------------------------------------------- /app/views/layouts/_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/layouts/_navbar.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/management/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/management/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/management/users/new.html.erb -------------------------------------------------------------------------------- /app/views/profile/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/views/profile/index.html.erb -------------------------------------------------------------------------------- /app/workers/migrators/flags_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/workers/migrators/flags_worker.rb -------------------------------------------------------------------------------- /app/workers/migrators/slugs_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/workers/migrators/slugs_worker.rb -------------------------------------------------------------------------------- /app/workers/run_check_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/workers/run_check_worker.rb -------------------------------------------------------------------------------- /app/workers/search/index_all_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/workers/search/index_all_worker.rb -------------------------------------------------------------------------------- /app/workers/sitemap_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/workers/sitemap_worker.rb -------------------------------------------------------------------------------- /app/workers/species_refresh_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/workers/species_refresh_worker.rb -------------------------------------------------------------------------------- /app/workers/user_query_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/app/workers/user_query_worker.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/post-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/bin/post-start -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/cors.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/measured.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/measured.rb -------------------------------------------------------------------------------- /config/initializers/meta_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/meta_tags.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/pagy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/pagy.rb -------------------------------------------------------------------------------- /config/initializers/rack_attack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/rack_attack.rb -------------------------------------------------------------------------------- /config/initializers/rswag-ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/rswag-ui.rb -------------------------------------------------------------------------------- /config/initializers/rswag_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/rswag_api.rb -------------------------------------------------------------------------------- /config/initializers/searchkiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/searchkiq.rb -------------------------------------------------------------------------------- /config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/sentry.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/schedule.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/sitemap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/sitemap.rb -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/config/webpack/webpack.config.js -------------------------------------------------------------------------------- /db/botanic_seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/db/botanic_seeds.rb -------------------------------------------------------------------------------- /db/migrate/20200617121059_add_scores.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/db/migrate/20200617121059_add_scores.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/auth/json_web_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/auth/json_web_token.rb -------------------------------------------------------------------------------- /lib/checks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/checks.rb -------------------------------------------------------------------------------- /lib/checks/check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/checks/check.rb -------------------------------------------------------------------------------- /lib/checks/genus_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/checks/genus_name.rb -------------------------------------------------------------------------------- /lib/checks/genus_species.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/checks/genus_species.rb -------------------------------------------------------------------------------- /lib/checks/name_acceptance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/checks/name_acceptance.rb -------------------------------------------------------------------------------- /lib/checks/scientific_name_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/checks/scientific_name_format.rb -------------------------------------------------------------------------------- /lib/checks/species_duplicates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/checks/species_duplicates.rb -------------------------------------------------------------------------------- /lib/ingester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester.rb -------------------------------------------------------------------------------- /lib/ingester/converter/boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/converter/boolean.rb -------------------------------------------------------------------------------- /lib/ingester/converter/common_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/converter/common_name.rb -------------------------------------------------------------------------------- /lib/ingester/converter/enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/converter/enum.rb -------------------------------------------------------------------------------- /lib/ingester/converter/flag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/converter/flag.rb -------------------------------------------------------------------------------- /lib/ingester/converter/float.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/converter/float.rb -------------------------------------------------------------------------------- /lib/ingester/converter/genus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/converter/genus.rb -------------------------------------------------------------------------------- /lib/ingester/converter/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/converter/image.rb -------------------------------------------------------------------------------- /lib/ingester/converter/measurement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/converter/measurement.rb -------------------------------------------------------------------------------- /lib/ingester/converter/number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/converter/number.rb -------------------------------------------------------------------------------- /lib/ingester/converter/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/converter/source.rb -------------------------------------------------------------------------------- /lib/ingester/converter/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/converter/text.rb -------------------------------------------------------------------------------- /lib/ingester/species.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/ingester/species.rb -------------------------------------------------------------------------------- /lib/migrators/families.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/families.rb -------------------------------------------------------------------------------- /lib/migrators/flags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/flags.rb -------------------------------------------------------------------------------- /lib/migrators/images_fixer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/images_fixer.rb -------------------------------------------------------------------------------- /lib/migrators/main_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/main_images.rb -------------------------------------------------------------------------------- /lib/migrators/main_species.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/main_species.rb -------------------------------------------------------------------------------- /lib/migrators/metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/metrics.rb -------------------------------------------------------------------------------- /lib/migrators/plant_scientific_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/plant_scientific_names.rb -------------------------------------------------------------------------------- /lib/migrators/references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/references.rb -------------------------------------------------------------------------------- /lib/migrators/slugs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/slugs.rb -------------------------------------------------------------------------------- /lib/migrators/synonyms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/synonyms.rb -------------------------------------------------------------------------------- /lib/migrators/synonyms_duplicates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/synonyms_duplicates.rb -------------------------------------------------------------------------------- /lib/migrators/tokens_duplicates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/tokens_duplicates.rb -------------------------------------------------------------------------------- /lib/migrators/usda_references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/usda_references.rb -------------------------------------------------------------------------------- /lib/migrators/zones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/migrators/zones.rb -------------------------------------------------------------------------------- /lib/resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/resolver.rb -------------------------------------------------------------------------------- /lib/resolver/gbif.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/resolver/gbif.rb -------------------------------------------------------------------------------- /lib/resolver/powo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/resolver/powo.rb -------------------------------------------------------------------------------- /lib/schemas/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/helpers.rb -------------------------------------------------------------------------------- /lib/schemas/v1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1.rb -------------------------------------------------------------------------------- /lib/schemas/v1/division.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/division.rb -------------------------------------------------------------------------------- /lib/schemas/v1/division_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/division_class.rb -------------------------------------------------------------------------------- /lib/schemas/v1/division_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/division_order.rb -------------------------------------------------------------------------------- /lib/schemas/v1/family.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/family.rb -------------------------------------------------------------------------------- /lib/schemas/v1/genus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/genus.rb -------------------------------------------------------------------------------- /lib/schemas/v1/kingdom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/kingdom.rb -------------------------------------------------------------------------------- /lib/schemas/v1/plant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/plant.rb -------------------------------------------------------------------------------- /lib/schemas/v1/record_correction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/record_correction.rb -------------------------------------------------------------------------------- /lib/schemas/v1/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/source.rb -------------------------------------------------------------------------------- /lib/schemas/v1/species.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/species.rb -------------------------------------------------------------------------------- /lib/schemas/v1/subkingdom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/subkingdom.rb -------------------------------------------------------------------------------- /lib/schemas/v1/zone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/schemas/v1/zone.rb -------------------------------------------------------------------------------- /lib/sponsorship/github_sponsorship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/sponsorship/github_sponsorship.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/admin.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/tasks/admin.rake -------------------------------------------------------------------------------- /lib/tasks/auto_annotate_models.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/tasks/auto_annotate_models.rake -------------------------------------------------------------------------------- /lib/tasks/doc.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/tasks/doc.rake -------------------------------------------------------------------------------- /lib/tasks/dump.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/tasks/dump.rake -------------------------------------------------------------------------------- /lib/tasks/dump_data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/tasks/dump_data.rake -------------------------------------------------------------------------------- /lib/temperature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/temperature.rb -------------------------------------------------------------------------------- /lib/utils/csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/utils/csv.rb -------------------------------------------------------------------------------- /lib/utils/merger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/utils/merger.rb -------------------------------------------------------------------------------- /lib/utils/ranges.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/utils/ranges.rb -------------------------------------------------------------------------------- /lib/utils/scientific_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/lib/utils/scientific_name.rb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/500.html -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/android-chrome-384x384.png -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/LICENSE.txt -------------------------------------------------------------------------------- /public/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/all.css -------------------------------------------------------------------------------- /public/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /public/fontawesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/brands.css -------------------------------------------------------------------------------- /public/fontawesome/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/brands.min.css -------------------------------------------------------------------------------- /public/fontawesome/css/duotone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/duotone.css -------------------------------------------------------------------------------- /public/fontawesome/css/duotone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/duotone.min.css -------------------------------------------------------------------------------- /public/fontawesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/fontawesome.css -------------------------------------------------------------------------------- /public/fontawesome/css/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/light.css -------------------------------------------------------------------------------- /public/fontawesome/css/light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/light.min.css -------------------------------------------------------------------------------- /public/fontawesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/regular.css -------------------------------------------------------------------------------- /public/fontawesome/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/regular.min.css -------------------------------------------------------------------------------- /public/fontawesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/solid.css -------------------------------------------------------------------------------- /public/fontawesome/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/solid.min.css -------------------------------------------------------------------------------- /public/fontawesome/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/svg-with-js.css -------------------------------------------------------------------------------- /public/fontawesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/v4-shims.css -------------------------------------------------------------------------------- /public/fontawesome/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/css/v4-shims.min.css -------------------------------------------------------------------------------- /public/fontawesome/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/all.js -------------------------------------------------------------------------------- /public/fontawesome/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/all.min.js -------------------------------------------------------------------------------- /public/fontawesome/js/brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/brands.js -------------------------------------------------------------------------------- /public/fontawesome/js/brands.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/brands.min.js -------------------------------------------------------------------------------- /public/fontawesome/js/duotone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/duotone.js -------------------------------------------------------------------------------- /public/fontawesome/js/duotone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/duotone.min.js -------------------------------------------------------------------------------- /public/fontawesome/js/fontawesome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/fontawesome.js -------------------------------------------------------------------------------- /public/fontawesome/js/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/light.js -------------------------------------------------------------------------------- /public/fontawesome/js/light.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/light.min.js -------------------------------------------------------------------------------- /public/fontawesome/js/regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/regular.js -------------------------------------------------------------------------------- /public/fontawesome/js/regular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/regular.min.js -------------------------------------------------------------------------------- /public/fontawesome/js/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/solid.js -------------------------------------------------------------------------------- /public/fontawesome/js/solid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/solid.min.js -------------------------------------------------------------------------------- /public/fontawesome/js/v4-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/v4-shims.js -------------------------------------------------------------------------------- /public/fontawesome/js/v4-shims.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/js/v4-shims.min.js -------------------------------------------------------------------------------- /public/fontawesome/less/_animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/_animated.less -------------------------------------------------------------------------------- /public/fontawesome/less/_core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/_core.less -------------------------------------------------------------------------------- /public/fontawesome/less/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/_icons.less -------------------------------------------------------------------------------- /public/fontawesome/less/_larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/_larger.less -------------------------------------------------------------------------------- /public/fontawesome/less/_list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/_list.less -------------------------------------------------------------------------------- /public/fontawesome/less/_mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/_mixins.less -------------------------------------------------------------------------------- /public/fontawesome/less/_shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/_shims.less -------------------------------------------------------------------------------- /public/fontawesome/less/_stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/_stacked.less -------------------------------------------------------------------------------- /public/fontawesome/less/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/_variables.less -------------------------------------------------------------------------------- /public/fontawesome/less/brands.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/brands.less -------------------------------------------------------------------------------- /public/fontawesome/less/duotone.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/duotone.less -------------------------------------------------------------------------------- /public/fontawesome/less/light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/light.less -------------------------------------------------------------------------------- /public/fontawesome/less/regular.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/regular.less -------------------------------------------------------------------------------- /public/fontawesome/less/solid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/solid.less -------------------------------------------------------------------------------- /public/fontawesome/less/v4-shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/less/v4-shims.less -------------------------------------------------------------------------------- /public/fontawesome/metadata/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/metadata/icons.json -------------------------------------------------------------------------------- /public/fontawesome/metadata/icons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/metadata/icons.yml -------------------------------------------------------------------------------- /public/fontawesome/metadata/shims.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/metadata/shims.json -------------------------------------------------------------------------------- /public/fontawesome/metadata/shims.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/metadata/shims.yml -------------------------------------------------------------------------------- /public/fontawesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/_animated.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/_core.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/_icons.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/_larger.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/_list.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/_mixins.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/_shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/_shims.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/_stacked.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/_variables.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/brands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/brands.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/duotone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/duotone.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/light.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/regular.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/regular.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/solid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/solid.scss -------------------------------------------------------------------------------- /public/fontawesome/scss/v4-shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/scss/v4-shims.scss -------------------------------------------------------------------------------- /public/fontawesome/sprites/brands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/sprites/brands.svg -------------------------------------------------------------------------------- /public/fontawesome/sprites/duotone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/sprites/duotone.svg -------------------------------------------------------------------------------- /public/fontawesome/sprites/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/sprites/light.svg -------------------------------------------------------------------------------- /public/fontawesome/sprites/regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/sprites/regular.svg -------------------------------------------------------------------------------- /public/fontawesome/sprites/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/sprites/solid.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/adn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/adn.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/aws.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/bity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/bity.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/btc.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/css3.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/dev.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/dhl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/dhl.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/digg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/digg.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/ebay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/ebay.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/edge.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/ello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/ello.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/etsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/etsy.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/fly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/fly.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/gg.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/git.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/grav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/grav.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/gulp.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/hips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/hips.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/imdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/imdb.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/java.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/jira.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/js.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/less.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/line.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/lyft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/lyft.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/mdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/mdb.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/mix.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/modx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/modx.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/neos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/neos.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/node.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/npm.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/ns8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/ns8.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/osi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/osi.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/php.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/qq.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/rev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/rev.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/rust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/rust.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/sass.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/sith.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/sith.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/suse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/suse.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/uber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/uber.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/ups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/ups.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/usb.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/usps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/usps.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/vine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/vine.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/vk.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/vnv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/vnv.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/waze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/waze.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/wix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/wix.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/xbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/xbox.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/xing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/xing.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/yarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/yarn.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/brands/yelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/brands/yelp.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/ad.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/at.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/axe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/axe.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/ban.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/bat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/bat.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/bed.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/box.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/bug.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/bus.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/car.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/cat.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/cog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/cow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/cow.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/cut.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/dna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/dna.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/dog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/ear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/ear.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/egg.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/eye.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/fan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/fan.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/fax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/fax.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/fog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/gem.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/h1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/h1.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/h2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/h2.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/h3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/h3.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/h4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/h4.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/hdd.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/jug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/jug.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/key.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/map.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/meh.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/mug.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/om.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/paw.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/pen.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/pi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/pi.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/pie.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/pig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/pig.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/poo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/poo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/ram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/ram.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/rss.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/rv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/rv.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/sms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/sms.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/spa.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/sun.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/tag.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/th.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/tty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/tty.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/tv.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/ufo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/ufo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/duotone/vhs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/duotone/vhs.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/acorn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/acorn.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/ad.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/album.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/album.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/alien.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/alien.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/angel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/angel.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/angry.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/ankh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/ankh.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/at.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/atlas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/atlas.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/atom.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/award.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/award.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/axe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/axe.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/baby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/baby.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bacon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bacon.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/badge.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bahai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bahai.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/ban.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/banjo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/banjo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bars.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bat.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bath.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bed.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/beer.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bell.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bells.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bells.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bible.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/blind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/blind.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/blog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bold.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bolt.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bomb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bomb.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bone.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bong.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/book.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/books.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/books.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/boot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/boot.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/box.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/boxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/boxes.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/brain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/brain.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/broom.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/brush.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bug.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/burn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/burn.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/bus.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/car.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/cars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/cars.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/cat.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/cctv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/cctv.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/chair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/chair.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/check.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/chess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/chess.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/child.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/child.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/city.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/clock.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/clone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/clone.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/cloud.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/club.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/club.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/code.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/cog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/cogs.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/coin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/coin.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/coins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/coins.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/comet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/comet.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/copy.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/corn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/corn.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/couch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/couch.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/cow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/cow.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/crop.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/cross.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/crow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/crow.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/crown.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/cube.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/cubes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/cubes.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/cut.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/deaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/deaf.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/debug.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/deer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/deer.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/dice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/dice.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/dizzy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/dizzy.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/dna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/dna.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/dog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/dolly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/dolly.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/dove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/dove.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/drone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/drone.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/drum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/drum.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/dryer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/dryer.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/duck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/duck.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/ear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/ear.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/edit.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/egg.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/eject.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/eye.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/fan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/fan.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/farm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/farm.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/fax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/fax.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/file.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/fill.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/film.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/fire.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/fish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/fish.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/flag.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/flame.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/flask.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/flute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/flute.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/fog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/font.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/frog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/frog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/frown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/frown.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/gavel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/gavel.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/gem.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/ghost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/ghost.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/gift.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/gifts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/gifts.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/glass.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/globe.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/grin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/grin.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/h1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/h1.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/h2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/h2.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/h3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/h3.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/h4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/h4.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/hamsa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/hamsa.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/hands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/hands.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/hdd.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/heart.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/heat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/heat.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/hippo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/hippo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/home.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/horse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/horse.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/hotel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/hotel.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/house.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/icons.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/igloo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/igloo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/image.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/inbox.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/info.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/jedi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/jedi.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/joint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/joint.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/jug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/jug.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/kaaba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/kaaba.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/kazoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/kazoo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/key.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/kiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/kiss.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/kite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/kite.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/lamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/lamp.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/lasso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/lasso.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/laugh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/laugh.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/leaf.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/lemon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/lemon.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/link.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/lips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/lips.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/list.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/lock.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/lungs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/lungs.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/mace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/mace.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/magic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/magic.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/male.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/map.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/mars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/mars.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/mask.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/meat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/meat.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/medal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/medal.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/meh.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/minus.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/moon.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/mouse.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/mug.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/music.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/om.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/omega.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/omega.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/otter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/otter.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/oven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/oven.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/pager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/pager.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/paste.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/pause.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/paw.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/peace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/peace.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/pen.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/phone.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/pi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/pi.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/piano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/piano.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/pie.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/pig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/pig.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/pills.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/pills.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/pizza.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/pizza.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/plane.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/play.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/plug.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/plus.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/poll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/poll.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/poo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/poo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/poop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/poop.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/pray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/pray.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/print.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/quran.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/quran.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/radar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/radar.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/radio.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/ram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/ram.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/redo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/reply.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/ring.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/road.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/road.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/robot.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/route.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/route.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/rss.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/ruler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/ruler.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/rv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/rv.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/sack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/sack.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/salad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/salad.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/save.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/scarf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/scarf.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/share.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/sheep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/sheep.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/ship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/ship.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/sigma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/sigma.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/sign.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/sink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/sink.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/siren.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/siren.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/skull.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/slash.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/smile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/smile.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/smog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/smog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/smoke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/smoke.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/sms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/sms.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/snake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/snake.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/soap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/soap.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/socks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/socks.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/sort.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/soup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/soup.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/spa.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/spade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/spade.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/staff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/staff.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/stamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/stamp.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/star.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/stars.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/steak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/steak.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/stop.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/store.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/sun.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/sword.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/sword.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/sync.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/table.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/taco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/taco.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tag.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tags.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tally.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tally.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tape.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tasks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tasks.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/taxi.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/teeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/teeth.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tenge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tenge.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/text.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/th.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/theta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/theta.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tilde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tilde.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/times.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tint.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tire.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tired.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tools.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tooth.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/torah.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/torah.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/train.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tram.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/trash.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tree.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/trees.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/truck.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tty.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/tv.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/ufo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/ufo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/undo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/union.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/union.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/user.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/users.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/venus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/venus.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/vhs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/vhs.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/vial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/vial.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/vials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/vials.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/video.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/virus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/virus.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/wand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/wand.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/watch.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/water.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/whale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/whale.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/wheat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/wheat.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/wifi.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/wind.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/light/x-ray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/light/x-ray.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/ad.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/at.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/axe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/axe.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/ban.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/bat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/bat.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/bed.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/box.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/bug.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/bus.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/car.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/cat.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/cog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/cow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/cow.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/cut.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/dna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/dna.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/dog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/ear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/ear.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/egg.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/eye.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/fan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/fan.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/fax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/fax.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/fog.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/gem.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/h1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/h1.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/h2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/h2.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/h3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/h3.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/h4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/h4.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/hdd.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/jug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/jug.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/key.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/map.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/meh.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/mug.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/om.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/paw.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/pen.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/pi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/pi.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/pie.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/pig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/pig.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/poo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/poo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/ram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/ram.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/rss.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/rv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/rv.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/sms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/sms.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/spa.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/sun.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/tag.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/th.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/tty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/tty.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/tv.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/ufo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/ufo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/regular/vhs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/regular/vhs.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/acorn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/acorn.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/ad.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/album.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/album.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/alien.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/alien.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/angel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/angel.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/angry.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/ankh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/ankh.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/at.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/atlas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/atlas.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/atom.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/award.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/award.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/axe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/axe.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/baby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/baby.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/bacon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/bacon.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/badge.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/bahai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/bahai.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/ban.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/banjo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/banjo.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/bars.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/bat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/bat.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/h1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/h1.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/h2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/h2.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/h3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/h3.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/h4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/h4.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/om.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/pi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/pi.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/rv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/rv.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/th.svg -------------------------------------------------------------------------------- /public/fontawesome/svgs/solid/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/fontawesome/svgs/solid/tv.svg -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/opensearch.xml -------------------------------------------------------------------------------- /public/revert-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/revert-logo.png -------------------------------------------------------------------------------- /public/revert-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/revert-logo.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/swagger/v1/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/public/swagger/v1/swagger.yaml -------------------------------------------------------------------------------- /scripts/documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/scripts/documentation.sh -------------------------------------------------------------------------------- /scripts/dump-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/scripts/dump-data.sh -------------------------------------------------------------------------------- /scripts/restore-sql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/scripts/restore-sql.sh -------------------------------------------------------------------------------- /spec/factories/division.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/factories/division.rb -------------------------------------------------------------------------------- /spec/factories/division_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/factories/division_class.rb -------------------------------------------------------------------------------- /spec/factories/division_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/factories/division_order.rb -------------------------------------------------------------------------------- /spec/factories/family.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/factories/family.rb -------------------------------------------------------------------------------- /spec/factories/genus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/factories/genus.rb -------------------------------------------------------------------------------- /spec/factories/kingdom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/factories/kingdom.rb -------------------------------------------------------------------------------- /spec/factories/plant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/factories/plant.rb -------------------------------------------------------------------------------- /spec/factories/record_correction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/factories/record_correction.rb -------------------------------------------------------------------------------- /spec/factories/species.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/factories/species.rb -------------------------------------------------------------------------------- /spec/factories/subkingdom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/factories/subkingdom.rb -------------------------------------------------------------------------------- /spec/factories/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/factories/user.rb -------------------------------------------------------------------------------- /spec/features/account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/features/account_spec.rb -------------------------------------------------------------------------------- /spec/features/home_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/features/home_spec.rb -------------------------------------------------------------------------------- /spec/features/sign_in_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/features/sign_in_spec.rb -------------------------------------------------------------------------------- /spec/lib/ingester_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/lib/ingester_spec.rb -------------------------------------------------------------------------------- /spec/models/common_name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/models/common_name_spec.rb -------------------------------------------------------------------------------- /spec/models/species_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/models/species_spec.rb -------------------------------------------------------------------------------- /spec/models/species_trend_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/models/species_trend_spec.rb -------------------------------------------------------------------------------- /spec/models/synonym_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/models/synonym_spec.rb -------------------------------------------------------------------------------- /spec/models/user_query_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/models/user_query_spec.rb -------------------------------------------------------------------------------- /spec/models/zone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/models/zone_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/zones_request_spec.rb: -------------------------------------------------------------------------------- 1 | require 'rails_helper' 2 | 3 | RSpec.describe 'Zones', type: :request do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/api_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/support/api_helper.rb -------------------------------------------------------------------------------- /spec/support/json_api_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/support/json_api_helper.rb -------------------------------------------------------------------------------- /spec/support/json_schema_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/support/json_schema_matcher.rb -------------------------------------------------------------------------------- /spec/support/share_db_connexion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/support/share_db_connexion.rb -------------------------------------------------------------------------------- /spec/swagger_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/swagger_helper.rb -------------------------------------------------------------------------------- /spec/workers/sitemap_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/spec/workers/sitemap_worker_spec.rb -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treflehq/trefle-api/HEAD/yarn.lock --------------------------------------------------------------------------------